Skip to content

Commit 5d738a4

Browse files
committed
ci: Runner now uses Swift 6.2; update the Static SDK to match
Motivation ---------- End to end and integration tests are failing because the underlying Swift CI runner has been updated to use Swift 6.2 but these tests install the 6.1 release of the Static Linux SDK. Modifications ------------- Update end to end and integration workflows to install the the 6.2 release of the Static Linux SDK. Result ------ All tests will pass again. Test Plan --------- All existing tests pass again.
1 parent b05db25 commit 5d738a4

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
@@ -35,8 +35,8 @@ jobs:
3535
- name: Install the static SDK
3636
run: |
3737
swift sdk install \
38-
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 \
39-
--checksum 111c6f7d280a651208b8c74c0521dd99365d785c1976a6e23162f55f65379ac6
38+
https://download.swift.org/swift-6.2-release/static-sdk/swift-6.2-RELEASE/swift-6.2-RELEASE_static-linux-0.0.1.artifactbundle.tar.gz \
39+
--checksum d2225840e592389ca517bbf71652f7003dbf45ac35d1e57d98b9250368769378
4040
4141
- name: Build the example
4242
run: |

.github/workflows/interop_tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,8 @@ jobs:
6161
- name: Install the static SDK
6262
run: |
6363
swift sdk install \
64-
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 \
65-
--checksum 111c6f7d280a651208b8c74c0521dd99365d785c1976a6e23162f55f65379ac6
64+
https://download.swift.org/swift-6.2-release/static-sdk/swift-6.2-RELEASE/swift-6.2-RELEASE_static-linux-0.0.1.artifactbundle.tar.gz \
65+
--checksum d2225840e592389ca517bbf71652f7003dbf45ac35d1e57d98b9250368769378
6666
6767
# Run the test script
6868
- name: Test ELF detection

0 commit comments

Comments
 (0)