Skip to content

Commit b62956c

Browse files
authored
Merge pull request #10 from gitx/FixCI
Fix CI
2 parents a1ccae1 + 4014ee7 commit b62956c

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/BuildPR.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,18 @@ jobs:
66
buildGitx:
77
name: Build MGScopeBar
88
runs-on: macOS-latest
9+
strategy:
10+
fail-fast: false
11+
matrix:
12+
xcode: [ Xcode_12.5, Xcode_13.1, Xcode_13.2, Xcode_13.0, Xcode_12.4 ]
913
steps:
1014
- name: Checkout
1115
uses: actions/checkout@v2.3.4
1216
with:
1317
fetch-depth: 0
1418
submodules: true
1519
- name: Set XCode Version
16-
run: sudo xcode-select -s /Applications/Xcode_12.2.app
20+
run: sudo xcode-select -s /Applications/${{ matrix.xcode }}.app
1721
- name: Build project
1822
run: set -o pipefail && xcodebuild -workspace MGScopeBar.xcodeproj/project.xcworkspace -scheme MGScopeBar archive | xcpretty
1923

0 commit comments

Comments
 (0)