Spaces:
Sleeping
Sleeping
MilesCranmer
commited on
Commit
•
88fb0bf
1
Parent(s):
9dea8c4
Allow large nightly jobs to continue on error
Browse files
.github/workflows/CI_docker_large_nightly.yml
CHANGED
@@ -11,16 +11,22 @@ on:
|
|
11 |
jobs:
|
12 |
test:
|
13 |
runs-on: ${{ matrix.os }}
|
|
|
14 |
defaults:
|
15 |
run:
|
16 |
shell: bash
|
17 |
strategy:
|
18 |
fail-fast: false
|
19 |
matrix:
|
20 |
-
julia-version: ['1.8.2']
|
21 |
python-version: ['3.10.8']
|
22 |
os: [ubuntu-latest]
|
23 |
-
arch: ['linux/amd64'
|
|
|
|
|
|
|
|
|
|
|
24 |
|
25 |
steps:
|
26 |
- uses: actions/checkout@v3
|
|
|
11 |
jobs:
|
12 |
test:
|
13 |
runs-on: ${{ matrix.os }}
|
14 |
+
continue-on-error: ${{ matrix.experimental }}
|
15 |
defaults:
|
16 |
run:
|
17 |
shell: bash
|
18 |
strategy:
|
19 |
fail-fast: false
|
20 |
matrix:
|
21 |
+
julia-version: ['1.6.7', '1.8.2']
|
22 |
python-version: ['3.10.8']
|
23 |
os: [ubuntu-latest]
|
24 |
+
arch: ['linux/amd64']
|
25 |
+
experimental: [false]
|
26 |
+
include:
|
27 |
+
- arch: 'linux/arm64'
|
28 |
+
experimental: true
|
29 |
+
|
30 |
|
31 |
steps:
|
32 |
- uses: actions/checkout@v3
|
.github/workflows/CI_large_nightly.yml
CHANGED
@@ -15,6 +15,7 @@ jobs:
|
|
15 |
test:
|
16 |
runs-on: ${{ matrix.os }}
|
17 |
timeout-minutes: 60
|
|
|
18 |
defaults:
|
19 |
run:
|
20 |
shell: bash
|
@@ -23,7 +24,11 @@ jobs:
|
|
23 |
matrix:
|
24 |
julia-version: ['1.6.7', '1.7.3', '1.8.2']
|
25 |
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
|
26 |
-
os: [ubuntu-latest, macos-latest
|
|
|
|
|
|
|
|
|
27 |
|
28 |
steps:
|
29 |
- uses: actions/checkout@v3
|
|
|
15 |
test:
|
16 |
runs-on: ${{ matrix.os }}
|
17 |
timeout-minutes: 60
|
18 |
+
continue-on-error: ${{ matrix.experimental }}
|
19 |
defaults:
|
20 |
run:
|
21 |
shell: bash
|
|
|
24 |
matrix:
|
25 |
julia-version: ['1.6.7', '1.7.3', '1.8.2']
|
26 |
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
|
27 |
+
os: [ubuntu-latest, macos-latest]
|
28 |
+
experimental: [false]
|
29 |
+
include:
|
30 |
+
os: [windows-latest]
|
31 |
+
experimental: [true]
|
32 |
|
33 |
steps:
|
34 |
- uses: actions/checkout@v3
|