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 84af21d commit 06fad4cCopy full SHA for 06fad4c
.github/workflows/swift.yml
@@ -16,6 +16,16 @@ jobs:
16
steps:
17
- uses: actions/checkout@v4
18
19
+ - name: Select Xcode 16
20
+ run: |
21
+ sudo xcode-select -s /Applications/Xcode_16.0.app/Contents/Developer
22
+ xcodebuild -version
23
+
24
+ - name: Clean Project
25
26
+ xcodebuild clean \
27
+ -scheme "SwiftUI-WorkoutApp"
28
29
- name: Build and Test
30
run: |
31
xcodebuild build \
@@ -28,4 +38,5 @@ jobs:
38
-scheme "SwiftUI-WorkoutApp" \
39
-testPlan "SwiftUI-WorkoutApp" \
40
-destination "platform=iOS Simulator,OS=latest" \
- CODE_SIGNING_ALLOWED=NO
41
+ CODE_SIGNING_ALLOWED=NO \
42
+ ARCHS=arm64 ONLY_ACTIVE_ARCH=NO
0 commit comments