File tree Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -185,8 +185,12 @@ jobs:
185
185
${{ matrix.container }}
186
186
docker exec swiftwasm-ci-buildbot /bin/bash -lc 'env; cp -r /source/* /home/build-user/; ./swiftwasm-build/tools/build/ci.sh ${{ matrix.scheme }}'
187
187
188
+ - name : Extract installable archive from Docker container (wasm32-unknown-wasip1)
189
+ if : ${{ matrix.container != null && matrix.scheme != 'release-6.0' && matrix.scheme != 'release-6.1' }}
190
+ run : |
191
+ docker cp swiftwasm-ci-buildbot:/home/build-user/swift-wasm-${{ matrix.toolchain_channel }}-SNAPSHOT-wasm32-unknown-wasip1.artifactbundle.zip .
188
192
- name : Extract installable archive from Docker container (wasm32-unknown-wasi)
189
- if : ${{ matrix.container != null }}
193
+ if : ${{ matrix.container != null && !(matrix.scheme != 'release-6.0' && matrix.scheme != 'release-6.1') }}
190
194
run : |
191
195
docker cp swiftwasm-ci-buildbot:/home/build-user/swift-wasm-${{ matrix.toolchain_channel }}-SNAPSHOT-wasm32-unknown-wasi.artifactbundle.zip .
192
196
# release-6.0 doesn't have wasm32-unknown-wasip1-threads SDK support yet
@@ -214,6 +218,11 @@ jobs:
214
218
path : build-cache
215
219
key : ${{ steps.cache_key.outputs.SCCACHE_KEY }}
216
220
221
+ - name : Upload Swift SDK artifact bundle (wasm32-unknown-wasip1)
222
+ uses : actions/upload-artifact@v4
223
+ with :
224
+ name : ${{ matrix.scheme }}-wasm32-unknown-wasip1-artifactbundle
225
+ path : swift-wasm-${{ matrix.toolchain_channel }}-SNAPSHOT-wasm32-unknown-wasip1.artifactbundle.zip
217
226
- name : Upload Swift SDK artifact bundle (wasm32-unknown-wasi)
218
227
uses : actions/upload-artifact@v4
219
228
with :
You can’t perform that action at this time.
0 commit comments