Skip to content

Commit 5ae5dd4

Browse files
authored
Update CI to use Xcode 11.4.1 (#26)
Makes local development a bit friendlier, too.
1 parent 4016008 commit 5ae5dd4

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
matrix:
1616
xcode:
1717
- 11.3
18-
- 11.4
18+
- 11.4.1
1919
steps:
2020
- uses: actions/checkout@v2
2121
- name: Select Xcode ${{ matrix.xcode }}
@@ -27,7 +27,7 @@ jobs:
2727
runs-on: macOS-latest
2828
steps:
2929
- uses: actions/checkout@v2
30-
- name: Select Xcode 11.4
31-
run: sudo xcode-select -s /Applications/Xcode_11.4.app
30+
- name: Select Xcode 11.4.1
31+
run: sudo xcode-select -s /Applications/Xcode_11.4.1.app
3232
- name: Run tests
3333
run: make test-workspace

Makefile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
1-
PLATFORM_IOS = iOS Simulator,name=iPhone 11 Pro Max,OS=13.4
1+
PLATFORM_IOS = iOS Simulator,name=iPhone 11 Pro Max,OS=13.4.1
22
PLATFORM_MACOS = macOS
33
PLATFORM_TVOS = tvOS Simulator,name=Apple TV 4K (at 1080p),OS=13.4
4-
PLATFORM_WATCHOS = watchOS Simulator,name=Apple Watch Series 4 - 44mm,OS=6.2
54

65
default: test-all
76

0 commit comments

Comments
 (0)