File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 65
65
name : Build matrix
66
66
needs : [start-runner]
67
67
runs-on : ubuntu-latest
68
- if : ${{ always () }}
68
+ if : ${{ !cancelled () }}
69
69
outputs :
70
70
entries : ${{ steps.generate.outputs.entries }}
71
71
steps :
99
99
# https://github.com/actions/cache/blob/main/tips-and-workarounds.md#cache-segment-restore-timeout
100
100
SEGMENT_DOWNLOAD_TIMEOUT_MINS : 30
101
101
needs : [build-matrix]
102
- if : ${{ always () }}
102
+ if : ${{ !cancelled () }}
103
103
strategy :
104
104
fail-fast : false
105
105
matrix :
@@ -196,7 +196,7 @@ jobs:
196
196
docker cp swiftwasm-ci-buildbot:/home/build-user/swift-wasm-${{ matrix.toolchain_channel }}-SNAPSHOT-${{ matrix.target }}.tar.gz .
197
197
198
198
- name : Extract build-cache from Docker container
199
- if : ${{ matrix.container != null && always () }}
199
+ if : ${{ matrix.container != null && !cancelled () }}
200
200
run : |
201
201
rm -rf ${{ github.workspace }}/build-cache
202
202
docker cp swiftwasm-ci-buildbot:/home/build-user/build-cache ${{ github.workspace }}/build-cache
@@ -209,7 +209,7 @@ jobs:
209
209
run : ./swiftwasm-build/tools/build/ci.sh ${{ matrix.scheme }}
210
210
211
211
- uses : actions/cache/save@v3
212
- if : ${{ always () }}
212
+ if : ${{ !cancelled () }}
213
213
with :
214
214
path : build-cache
215
215
key : ${{ steps.cache_key.outputs.SCCACHE_KEY }}
You can’t perform that action at this time.
0 commit comments