Skip to content

Commit

Permalink
ci: Hardcode total shards and bump nf-test
Browse files Browse the repository at this point in the history
  • Loading branch information
edmundmiller committed Dec 19, 2024
1 parent 3c0ebae commit e68c76f
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ env:
NXF_ANSI_LOG: false
NXF_SINGULARITY_CACHEDIR: ${{ github.workspace }}/.singularity
NXF_SINGULARITY_LIBRARYDIR: ${{ github.workspace }}/.singularity
NFT_VER: "0.9.0"
NFT_VER: "0.9.2"
NFT_WORKDIR: "~"
NFT_DIFF: "pdiff"
NFT_DIFF_ARGS: "--line-numbers --expand-tabs=2"
Expand Down Expand Up @@ -101,13 +101,15 @@ jobs:
- name: Clean up Disk space
uses: jlumbroso/free-disk-space@54081f138730dfa15788a46383842cd2f914a1be # v1.3.1

- name: Run Tests (Shard ${{ matrix.shard }}/${{ strategy.job-total }})
- name: Run Tests (Shard ${{ matrix.shard }}/4
run: |
NFT_WORKDIR=~ \
nf-test test \
--ci \
--shard ${{ matrix.shard }}/${{ strategy.job-total }} \
--shard ${{ matrix.shard }}/4 \
--changed-since HEAD^ \
--profile "+${{ matrix.profile }}" \
--verbose \
--filter pipeline
- name: Publish Test Report
Expand Down

0 comments on commit e68c76f

Please sign in to comment.