Skip to content

Commit

Permalink
fix: concurrency rules per os/arch + cancel in progress
Browse files Browse the repository at this point in the history
  • Loading branch information
mrcjkb committed Mar 1, 2024
1 parent 45a2660 commit e3d21db
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-linux-x86_64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ on: [push, workflow_dispatch]

# Prevent concurrent auto-commits
concurrency:
group: auto-commit
cancel-in-progress: false
group: auto-commit-linux-x86_64
cancel-in-progress: true

jobs:
build:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build-macosx-aarch64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ on:

# Prevent concurrent auto-commits
concurrency:
group: auto-commit
cancel-in-progress: false
group: auto-commit-macosx-aarch64
cancel-in-progress: true

jobs:
build:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build-macosx-x86_64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ on:

# Prevent concurrent auto-commits
concurrency:
group: auto-commit
cancel-in-progress: false
group: auto-commit-macosx-x86_64
cancel-in-progress: true

jobs:
build:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build-win32-x86_64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ on:

# Prevent concurrent auto-commits
concurrency:
group: auto-commit
cancel-in-progress: false
group: auto-commit-win32-x86_64
cancel-in-progress: true

jobs:
build:
Expand Down

0 comments on commit e3d21db

Please sign in to comment.