Skip to content

Commit

Permalink
Merge pull request #193 from AlexVCaron/fix/big-runner-easyreg
Browse files Browse the repository at this point in the history
matrix strategy to not run easyreg when absent
  • Loading branch information
AlexVCaron authored Aug 26, 2024
2 parents e1d4476 + 3f0d0ef commit 0b4e145
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -121,13 +121,15 @@ jobs:
fail-fast: false
matrix:
path: [ "${{ fromJson(needs.nf-test-changes.outputs.paths) }}" ]
profile: [ "docker" ]
exclude:
- path: subworkflows/nf-scil/load_test_data
include:
- profile: docker
- runner: scilus-nf-scil-runners
- path: modules/nf-scil/registration/easyreg
profile: do-not-run
- runner: scilus-nf-scil-bigmem-runners
path: modules/nf-scil/registration/easyreg
exclude:
- path: subworkflows/nf-scil/load_test_data
uses: ./.github/workflows/nf-test_module.yml
with:
profile: ${{ matrix.profile }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nf-test_module.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
nf-test:
runs-on: ${{ inputs.runner }}
name: nf-test-${{ inputs.paths }}
if: inputs.paths != ''
if: inputs.paths != '' && inputs.profile != 'do-not-run'
env:
NXF_ANSI_LOG: false
NFTEST_VER: "0.9.0-rc1"
Expand Down

0 comments on commit 0b4e145

Please sign in to comment.