File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change 47
47
needs : [fmt]
48
48
runs-on : ubuntu-latest
49
49
strategy :
50
- fail-fast : false # If one platform fails, allow the rest to keep testing.
50
+ # If one platform fails, allow the rest to keep testing if `CI-no-fail-fast` label is present
51
+ fail-fast : ${{ !contains(github.event.pull_request.labels.*.name, 'CI-no-fail-fast') }}
51
52
matrix :
52
53
target : [powerpc64le-unknown-linux-gnu, s390x-unknown-linux-gnu, wasm32-wasi]
53
54
name : check-${{ matrix.target }}
79
80
name : python${{ matrix.python-version }}-${{ matrix.platform.python-architecture }} ${{ matrix.platform.os }} rust-${{ matrix.rust }}
80
81
runs-on : ${{ matrix.platform.os }}
81
82
strategy :
82
- fail-fast : false # If one platform fails, allow the rest to keep testing.
83
+ # If one platform fails, allow the rest to keep testing if `CI-no-fail-fast` label is present
84
+ fail-fast : ${{ !contains(github.event.pull_request.labels.*.name, 'CI-no-fail-fast') }}
83
85
matrix :
84
86
rust : [stable]
85
87
python-version : [
You can’t perform that action at this time.
0 commit comments