Skip to content

Commit

Permalink
objc + objcpp
Browse files Browse the repository at this point in the history
  • Loading branch information
partouf committed Oct 14, 2023
1 parent ad18bfc commit 4149004
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions bin/lib/nightly_versions.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ class NightlyVersions:
javascript: Dict[str, Dict[str, Any]] = defaultdict(lambda: {})
mlir: Dict[str, Dict[str, Any]] = defaultdict(lambda: {})
nim: Dict[str, Dict[str, Any]] = defaultdict(lambda: {})
objc: Dict[str, Dict[str, Any]] = defaultdict(lambda: {})
objcpp: Dict[str, Dict[str, Any]] = defaultdict(lambda: {})
pony: Dict[str, Dict[str, Any]] = defaultdict(lambda: {})
rust: Dict[str, Dict[str, Any]] = defaultdict(lambda: {})
swift: Dict[str, Dict[str, Any]] = defaultdict(lambda: {})
Expand Down Expand Up @@ -59,6 +61,8 @@ def load_ce_properties(self):
[self.javascript, _] = get_properties_compilers_and_libraries("javascript", self.logger, False)
[self.mlir, _] = get_properties_compilers_and_libraries("mlir", self.logger, False)
[self.nim, _] = get_properties_compilers_and_libraries("nim", self.logger, False)
[self.objc, _] = get_properties_compilers_and_libraries("objc", self.logger, False)
[self.objcpp, _] = get_properties_compilers_and_libraries("objc++", self.logger, False)
[self.pony, _] = get_properties_compilers_and_libraries("pony", self.logger, False)
[self.rust, _] = get_properties_compilers_and_libraries("rust", self.logger, False)
[self.swift, _] = get_properties_compilers_and_libraries("swift", self.logger, False)
Expand Down Expand Up @@ -126,6 +130,8 @@ def get_compiler_ids(self, exe: str):
self.collect_compiler_ids_for(ids, exe, self.javascript)
self.collect_compiler_ids_for(ids, exe, self.mlir)
self.collect_compiler_ids_for(ids, exe, self.nim)
self.collect_compiler_ids_for(ids, c_exe, self.objc)
self.collect_compiler_ids_for(ids, exe, self.objcpp)
self.collect_compiler_ids_for(ids, exe, self.pony)
self.collect_compiler_ids_for(ids, exe, self.rust)
self.collect_compiler_ids_for(ids, exe, self.swift)
Expand Down

0 comments on commit 4149004

Please sign in to comment.