Skip to content

Commit 7caaff7

Browse files
authored
ci: Runner now uses Swift 6.1; update the Static SDK to match (#79)
Motivation ---------- End to end and integration tests are failing because the underlying Swift CI runner has been updated to use Swift 6.1 but these tests install the 6.0.2 release of the Static Linux SDK. Modifications ------------- Update end to end and integration workflows to install the the 6.1 release of the Static Linux SDK. Result ------ All tests will pass again. Test Plan --------- All existing tests pass again.
1 parent 9016863 commit 7caaff7

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/endtoend_tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ jobs:
3434
- name: Install the static SDK
3535
run: |
3636
swift sdk install \
37-
https://download.swift.org/swift-6.0.2-release/static-sdk/swift-6.0.2-RELEASE/swift-6.0.2-RELEASE_static-linux-0.0.1.artifactbundle.tar.gz \
38-
--checksum aa5515476a403797223fc2aad4ca0c3bf83995d5427fb297cab1d93c68cee075
37+
https://download.swift.org/swift-6.1-release/static-sdk/swift-6.1-RELEASE/swift-6.1-RELEASE_static-linux-0.0.1.artifactbundle.tar.gz \
38+
--checksum 111c6f7d280a651208b8c74c0521dd99365d785c1976a6e23162f55f65379ac6
3939
4040
- name: Build the example
4141
run: |

.github/workflows/interop_tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,8 @@ jobs:
6565
- name: Install the static SDK
6666
run: |
6767
swift sdk install \
68-
https://download.swift.org/swift-6.0.2-release/static-sdk/swift-6.0.2-RELEASE/swift-6.0.2-RELEASE_static-linux-0.0.1.artifactbundle.tar.gz \
69-
--checksum aa5515476a403797223fc2aad4ca0c3bf83995d5427fb297cab1d93c68cee075
68+
https://download.swift.org/swift-6.1-release/static-sdk/swift-6.1-RELEASE/swift-6.1-RELEASE_static-linux-0.0.1.artifactbundle.tar.gz \
69+
--checksum 111c6f7d280a651208b8c74c0521dd99365d785c1976a6e23162f55f65379ac6
7070
7171
# Run the test script
7272
- name: Test ELF detection

0 commit comments

Comments
 (0)