Skip to content

Commit 36196e4

Browse files
committed
Update to official Swift 5.2 release for CI
1 parent 9518e38 commit 36196e4

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

.github/workflows/tests.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,10 @@ jobs:
2323
steps:
2424
- uses: actions/checkout@v1
2525
- name: Check Swift version
26-
run: swift --version
26+
run: |
27+
sudo xcode-select -s /Applications/Xcode_11.3.app/
28+
export TOOLCHAINS=swift
29+
swift --version
2730
- name: Run tests
2831
run: swift test
2932

@@ -33,7 +36,7 @@ jobs:
3336
- uses: actions/checkout@v1
3437
- name: Check Swift version
3538
run: |
36-
sudo xcode-select -s /Applications/Xcode_11.4_beta.app/
39+
sudo xcode-select -s /Applications/Xcode_11.4.app/
3740
export TOOLCHAINS=swift
3841
swift --version
3942
- name: Run tests
@@ -59,7 +62,7 @@ jobs:
5962

6063
ubuntu-bionic-5_2:
6164
container:
62-
image: swiftlang/swift:nightly-5.2-bionic
65+
image: swift:5.2-bionic
6366
runs-on: ubuntu-latest
6467
steps:
6568
- uses: actions/checkout@v1
@@ -96,7 +99,7 @@ jobs:
9699

97100
ubuntu-xenial-5_2:
98101
container:
99-
image: swiftlang/swift:nightly-5.2-xenial
102+
image: swift:5.2-xenial
100103
runs-on: ubuntu-latest
101104
steps:
102105
- uses: actions/checkout@v1

0 commit comments

Comments
 (0)