Skip to content

Commit dd9796a

Browse files
authored
Disable fail-fast in CI (#161)
* Disable fail-fast in CI A lot of our CI failures are because there's some missing missing flag/feature available in nightlies or because some cpu of cuda skip test wheras the behavior right now is if 1 CI job fails all the other jobs get canceled. The main benefit of the old behavior is shorter queue times so we can revisit flipping this back off when/if queue times become a problem * Update regression_test.yml * Update regression_test.yml * Trigger CI * Trigger CI
1 parent bb06647 commit dd9796a

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/regression_test.yml

+6
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,14 @@ on:
88
branches:
99
- main
1010

11+
concurrency:
12+
group: regression_test-${{ github.workflow }}-${{ github.ref == 'refs/heads/main' && github.run_number || github.ref }}
13+
cancel-in-progress: true
14+
1115
jobs:
1216
test:
1317
strategy:
18+
fail-fast: false
1419
matrix:
1520
include:
1621
- name: CUDA 2.2.2
@@ -31,6 +36,7 @@ jobs:
3136
- name: Nightly CPU
3237
runs-on: 32-core-ubuntu
3338
torch-spec: '--pre torch --index-url https://download.pytorch.org/whl/nightly/cpu'
39+
3440
runs-on: ${{ matrix.runs-on }}
3541
steps:
3642
- uses: actions/checkout@v2

0 commit comments

Comments
 (0)