File tree Expand file tree Collapse file tree 2 files changed +6
-16
lines changed Expand file tree Collapse file tree 2 files changed +6
-16
lines changed Original file line number Diff line number Diff line change 42
42
strategy :
43
43
matrix :
44
44
include :
45
- - toolchain : swift-DEVELOPMENT-SNAPSHOT-2024-07-08-a
46
- swift-sdk : swift-wasm-DEVELOPMENT-SNAPSHOT-2024-07-09-a
45
+ - toolchain : swift-DEVELOPMENT-SNAPSHOT-2024-09-12-a
46
+ swift-sdk : swift-wasm-DEVELOPMENT-SNAPSHOT-2024-09-12-a
47
+ checksum : 630ce23114580dfae029f832d8ccc8b1ba5136b7f915e82f8e405650e326b562
47
48
steps :
48
49
- uses : actions/checkout@v4
49
50
- uses : bytecodealliance/actions/wasmtime/setup@v1
55
56
set -ex
56
57
curl -f -o /tmp/swift.tar.gz "https://download.swift.org/development/ubuntu2204/$SWIFT_TOOLCHAIN_TAG/$SWIFT_TOOLCHAIN_TAG-ubuntu22.04.tar.gz"
57
58
sudo mkdir -p $PREFIX; sudo tar -xzf /tmp/swift.tar.gz -C $PREFIX --strip-component 1
58
- $PREFIX/usr/bin/swift experimental- sdk install "https://github.com/swiftwasm/swift/releases/download/$SWIFT_SDK_TAG/$SWIFT_SDK_TAG-wasm32-unknown-wasi.artifactbundle.zip"
59
+ $PREFIX/usr/bin/swift sdk install "https://github.com/swiftwasm/swift/releases/download/$SWIFT_SDK_TAG/$SWIFT_SDK_TAG-wasm32-unknown-wasi.artifactbundle.zip" --checksum ${{ matrix.checksum }}
59
60
echo "$PREFIX/usr/bin" >> $GITHUB_PATH
60
61
- name : Build tests
61
62
run : swift build --swift-sdk wasm32-unknown-wasi --build-tests -Xlinker -z -Xlinker stack-size=$((1024 * 1024))
Original file line number Diff line number Diff line change @@ -91,18 +91,7 @@ let package = Package(
91
91
" UIKitNavigation "
92
92
]
93
93
) ,
94
- ]
95
- //, swiftLanguageModes: [.v6]
94
+ ] ,
95
+ swiftLanguageModes: [ . v6]
96
96
)
97
97
98
- for target in package . targets {
99
- target. swiftSettings = target. swiftSettings ?? [ ]
100
- target. swiftSettings!. append ( contentsOf: [
101
- . enableExperimentalFeature( " StrictConcurrency " )
102
- ] )
103
- // target.swiftSettings?.append(
104
- // .unsafeFlags([
105
- // "-enable-library-evolution",
106
- // ])
107
- // )
108
- }
You can’t perform that action at this time.
0 commit comments