File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -303,7 +303,13 @@ jobs:
303
303
if : ${{ matrix.run_stdlib_test && matrix.container != null }}
304
304
run : |
305
305
docker exec swiftwasm-ci-buildbot /bin/bash -lc \
306
- "./swiftwasm-build/schemes/${{ matrix.scheme }}/build/run-test.sh && rm -rf build"
306
+ "./swiftwasm-build/schemes/${{ matrix.scheme }}/build/run-test.sh"
307
+
308
+ # We need this step to save disk space for the next steps when building toolchain
309
+ - name : Cleanup build directory
310
+ if : ${{ matrix.run_stdlib_test && matrix.container != null && !matrix.only_swift_sdk }}
311
+ run : docker exec swiftwasm-ci-buildbot /bin/bash -lc "rm -rf build"
312
+
307
313
- name : Run stdlib tests for wasi-wasm32
308
314
if : ${{ matrix.run_stdlib_test && matrix.container == null }}
309
315
run : ./swiftwasm-build/schemes/${{ matrix.scheme }}/build/run-test.sh
You can’t perform that action at this time.
0 commit comments