Skip to content

Commit 762690a

Browse files
committed
Add dummy check-run so that a non-dependent run is present
1 parent 9df3a13 commit 762690a

4 files changed

Lines changed: 20 additions & 19 deletions

File tree

.github/workflows/build-and-test-linux.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,11 @@ concurrency:
1515
cancel-in-progress: true
1616

1717
jobs:
18+
check-run:
19+
runs-on: ubuntu-latest
20+
steps:
21+
- run: echo "Checking for relevant changes!"
22+
1823
build-and-test-linux:
1924
needs: path-filter
2025
if: |

.github/workflows/build-and-test-macos.yml

Lines changed: 5 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -15,30 +15,16 @@ concurrency:
1515
cancel-in-progress: true
1616

1717
jobs:
18+
check-run:
19+
runs-on: macos-latest
20+
steps:
21+
- run: echo "Checking for relevant changes!"
22+
1823
build-and-test-macos:
1924
needs: path-filter
2025
if: |
2126
${{ needs.path-filter.outputs.code_changed == 'true'
2227
|| needs.path-filter.outputs.macos_workflow_changed == 'true' }}
23-
strategy:
24-
matrix:
25-
config:
26-
# List of configuration that must be kept in sync with build-and-test-macos.yml
27-
- "clang, openmpi, armpl, static, int32, serial, arpack, strumpack"
28-
- "gcc, openmpi, openblas, static, int64, serial, slepc, mumps"
29-
- "gcc, openmpi, armpl, shared, int64, serial, arpack, superlu"
30-
- "clang, mpich, openblas, static, int32, openmp, slepc, strumpack"
31-
- "clang, mpich, openblas, static, int64, serial, arpack, superlu"
32-
name: build-and-test-macos (${{ matrix.config }})
33-
runs-on: macos-latest-xlarge
34-
steps:
35-
- run: echo "Skipping macos build (${{ matrix.config }}) as only Spack, Singularity or docs files changed"
36-
37-
build-and-test-macos:
38-
needs: path-filter
39-
if: ${{ needs.path-filter.outputs.spack_only != 'true'
40-
&& needs.path-filter.outputs.singularity_only != 'true'
41-
&& needs.path-filter.outputs.docs_only != 'true' }}
4228
strategy:
4329
fail-fast: false
4430
matrix:

.github/workflows/singularity.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,11 @@ env:
1919
CONTAINER_NAME: palace.sif
2020

2121
jobs:
22+
check-run:
23+
runs-on: ubuntu-latest
24+
steps:
25+
- run: echo "Checking for relevant changes!"
26+
2227
build-and-test-singularity:
2328
needs: path-filter
2429
if: |

.github/workflows/spack.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,11 @@ env:
2323
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2424

2525
jobs:
26+
check-run:
27+
runs-on: ubuntu-latest
28+
steps:
29+
- run: echo "Checking for relevant changes!"
30+
2631
build-and-test-spack:
2732
needs: path-filter
2833
if: |

0 commit comments

Comments
 (0)