don't fail fast
Browse files- .github/workflows/base.yml +1 -0
- .github/workflows/main.yml +1 -0
- .github/workflows/tests.yml +1 -0
.github/workflows/base.yml
CHANGED
|
@@ -12,6 +12,7 @@ jobs:
|
|
| 12 |
# this job needs to be run on self-hosted GPU runners...
|
| 13 |
runs-on: self-hosted
|
| 14 |
strategy:
|
|
|
|
| 15 |
matrix:
|
| 16 |
include:
|
| 17 |
- cuda: "118"
|
|
|
|
| 12 |
# this job needs to be run on self-hosted GPU runners...
|
| 13 |
runs-on: self-hosted
|
| 14 |
strategy:
|
| 15 |
+
fail-fast: false
|
| 16 |
matrix:
|
| 17 |
include:
|
| 18 |
- cuda: "118"
|
.github/workflows/main.yml
CHANGED
|
@@ -11,6 +11,7 @@ jobs:
|
|
| 11 |
if: github.repository_owner == 'OpenAccess-AI-Collective'
|
| 12 |
# this job needs to be run on self-hosted GPU runners...
|
| 13 |
strategy:
|
|
|
|
| 14 |
matrix:
|
| 15 |
include:
|
| 16 |
- cuda: cu118
|
|
|
|
| 11 |
if: github.repository_owner == 'OpenAccess-AI-Collective'
|
| 12 |
# this job needs to be run on self-hosted GPU runners...
|
| 13 |
strategy:
|
| 14 |
+
fail-fast: false
|
| 15 |
matrix:
|
| 16 |
include:
|
| 17 |
- cuda: cu118
|
.github/workflows/tests.yml
CHANGED
|
@@ -7,6 +7,7 @@ jobs:
|
|
| 7 |
test:
|
| 8 |
runs-on: ubuntu-latest
|
| 9 |
strategy:
|
|
|
|
| 10 |
matrix:
|
| 11 |
python_version: ["3.9", "3.10"]
|
| 12 |
timeout-minutes: 10
|
|
|
|
| 7 |
test:
|
| 8 |
runs-on: ubuntu-latest
|
| 9 |
strategy:
|
| 10 |
+
fail-fast: false
|
| 11 |
matrix:
|
| 12 |
python_version: ["3.9", "3.10"]
|
| 13 |
timeout-minutes: 10
|