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 61ef22b commit 2b9a6feCopy full SHA for 2b9a6fe
.github/workflows/BuildPR.yml
@@ -9,11 +9,17 @@ on:
9
jobs:
10
build-objective-git:
11
name: Build objective-git
12
- runs-on: macOS-latest
+ runs-on: ${{ matrix.os }}
13
strategy:
14
fail-fast: false
15
matrix:
16
+ os: [ macos-11 ]
17
+ abi: [ x86_64 ]
18
xcode: [ Xcode_14.2, Xcode_13.4 ]
19
+ include:
20
+ - xcode: Xcode
21
+ os: ARM64
22
+ abi: arm64
23
steps:
24
- name: ls Xcode
25
run: ls -la /Applications/Xcode*
@@ -33,4 +39,4 @@ jobs:
33
39
run: |
34
40
openssl version
35
41
- name: Test and archive project
36
- run: xcodebuild -workspace ObjectiveGitFramework.xcworkspace -scheme "ObjectiveGit Mac" test archive ARCHS="x86_64"
42
+ run: xcodebuild -workspace ObjectiveGitFramework.xcworkspace -scheme "ObjectiveGit Mac" test archive ARCHS="${{ matrix.abi }}"
0 commit comments