Skip to content

Commit d434b92

Browse files
committed
modified how scheduled steps are run
1 parent 5f2ec5f commit d434b92

1 file changed

Lines changed: 6 additions & 4 deletions

File tree

.github/workflows/ci.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -108,13 +108,15 @@ jobs:
108108
run: |
109109
pixi run autotest-base
110110
111-
- name: Run scheduled tests on ${{ matrix.os }} with ${{ matrix.compiler }}
111+
- name: Run scheduled tests on MacOS and Linux with all compilers but intel-classic
112112
if: ${{ github.event_name == 'schedule' && (runner.os != 'Windows' || matrix.compiler != 'intel-classic') }}
113-
run: pixi run autotest-schedule
113+
run: |
114+
pixi run autotest-schedule
114115
115-
- name: Run scheduled tests on ${{ matrix.os }} with ${{ matrix.compiler }}
116+
- name: Run scheduled tests on Windows with intel-classic compiler
116117
if: ${{ github.event_name == 'schedule' && runner.os == 'Windows' && matrix.compiler == 'intel-classic' }}
117-
run: pixi run autotest-schedule --exclude gridgen
118+
run: |
119+
pixi run autotest-schedule --exclude gridgen
118120
119121
- name: Upload failed test output
120122
if: failure()

0 commit comments

Comments
 (0)