Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Actions: keep conda and singularity jobs from running in parallel #95

Closed
wants to merge 5 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Move concurrnecy settings into job so we can access .profile
  • Loading branch information
matthuska committed May 22, 2024
commit 6d8d69e016e3a7da7601f7d77278f1c5d38e0f13
7 changes: 3 additions & 4 deletions .github/workflows/dryrun.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,6 @@ on:
- main
- dev

concurrency:
group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }} (${{ matrix.profile }})'
cancel-in-progress: true

env:
NXF_ANSI_LOG: false

Expand All @@ -31,6 +27,9 @@ jobs:
profile: ["docker", "conda"] # TODO "singularity"]
python-version:
- "3.9"
concurrency:
group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }} (${{ matrix.profile }})'
cancel-in-progress: true
steps:
- name: Print GitHub action concurrency group name (for debugging)
run: echo '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }} (${{ matrix.profile }})'
Expand Down
Loading