We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a4edbdb commit 22be610Copy full SHA for 22be610
.github/workflows/ci.yml
@@ -53,7 +53,14 @@ jobs:
53
name: Download Required Runtimes
54
run: |
55
sudo xcodes select ${{ matrix.xcode }}
56
- xcodebuild -downloadPlatform ${{ matrix.platform }}
+ if ! xcodebuild -downloadPlatform ${{ matrix.platform }}; then
57
+ code=$?
58
+ if [ $code -ne 70 ]; then
59
+ exit $code
60
+ else
61
+ echo "Ignoring exit code 70 from xcodebuild -downloadPlatform"
62
+ fi
63
64
65
- if: matrix.platform != 'mac-catalyst'
66
name: Create Simulator
0 commit comments