Skip to content

Commit 22be610

Browse files
committed
WIP
1 parent a4edbdb commit 22be610

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,14 @@ jobs:
5353
name: Download Required Runtimes
5454
run: |
5555
sudo xcodes select ${{ matrix.xcode }}
56-
xcodebuild -downloadPlatform ${{ matrix.platform }}
56+
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+
fi
5764
5865
- if: matrix.platform != 'mac-catalyst'
5966
name: Create Simulator

0 commit comments

Comments
 (0)