Skip to content

Commit 078ed9a

Browse files
committed
Use the simulator discovery process.
1 parent 1f71bac commit 078ed9a

2 files changed

Lines changed: 1 addition & 10 deletions

File tree

.github/workflows/build.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -367,11 +367,8 @@ jobs:
367367
with:
368368
persist-credentials: false
369369

370-
- name: List simulators
371-
run: xcrun simctl list
372-
373370
- name: Build and test
374-
run: python3 Platforms/Apple ci iOS --fast-ci --simulator 'iPhone 17e,OS=26.5'
371+
run: python3 Platforms/Apple ci iOS --fast-ci
375372

376373
build-emscripten:
377374
name: 'Emscripten'

Platforms/Apple/testbed/__main__.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -74,12 +74,6 @@ def xcode_test(location: Path, platform: str, simulator: str, verbose: bool):
7474
]
7575
verbosity_args = [] if verbose else ["-quiet"]
7676

77-
print("Diagnostic - show xcodebuild destinations...")
78-
subprocess.run(
79-
["xcodebuild", "-scheme", f"{platform}Testbed", "-showdestinations"],
80-
check=True,
81-
)
82-
8377
print("Building test project...")
8478
subprocess.run(
8579
["xcodebuild", "build-for-testing"] + args + verbosity_args,

0 commit comments

Comments
 (0)