Skip to content

Commit

Permalink
ci: reduce concurrency to 1 globally for conda
Browse files Browse the repository at this point in the history
The builds are failing for `aarch64`, and one log message hints that concurrent builds are messing with the same cache.

Ref: apache#659
  • Loading branch information
Michael-J-Ward committed May 6, 2024
1 parent 88ce6e6 commit 6fbeea7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/conda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@ on:
# When this workflow is queued, automatically cancel any previous running
# or pending jobs from the same branch
concurrency:
group: conda-${{ github.head_ref }}
# temporarily making this a global lock to debug conda nightlies build
# group: conda-${{ github.head_ref }}
group: conda
cancel-in-progress: true

# Required shell entrypoint to have properly activated conda environments
Expand Down

0 comments on commit 6fbeea7

Please sign in to comment.