We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 67a743d commit 2093ae9Copy full SHA for 2093ae9
.github/workflows/BuildPR.yml
@@ -15,6 +15,7 @@ jobs:
15
matrix:
16
os : [ macOS-13 ]
17
xcode: [ Xcode_14.1, Xcode_14.2, Xcode_15.1, Xcode_15.2 ]
18
+ arch: [ x86_64 ]
19
steps:
20
- name: ls Xcode
21
run: ls -la /Applications/Xcode*
@@ -34,6 +35,6 @@ jobs:
34
35
run: |
36
openssl version
37
- name: Test project
- run: xcodebuild -workspace ObjectiveGitFramework.xcworkspace -scheme "ObjectiveGit Mac" test ARCHS="x86_64"
38
+ run: xcodebuild -workspace ObjectiveGitFramework.xcworkspace -scheme "ObjectiveGit Mac" test ARCHS="${{ matrix.arch }}"
39
- name: Archive project
- run: xcodebuild -workspace ObjectiveGitFramework.xcworkspace -scheme "ObjectiveGit Mac" archive ARCHS="x86_64"
40
+ run: xcodebuild -workspace ObjectiveGitFramework.xcworkspace -scheme "ObjectiveGit Mac" archive ARCHS="${{ matrix.arch }}"
0 commit comments