Skip to content

Commit

Permalink
New workflow cancels old one (#665)
Browse files Browse the repository at this point in the history
  • Loading branch information
Joseph-Edwards authored Jun 26, 2024
1 parent 8d91be3 commit ec0efb0
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/config_options.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@ on:
env:
NO_COVERAGE: true

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
with-external-planarity-bliss:
name: ${{ matrix.bliss }} ${{ matrix.planarity }}
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ on:
# Every day at 3:30 AM UTC
- cron: 30 3 * * *

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
lint:
name: ${{ matrix.linter }}
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/manual.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ on:
# Every day at 3:20 AM UTC
- cron: "20 3 * * *"

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
manual:
name: compile and upload manual
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/os.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@ env:
DIGRAPHS_LIB: digraphs-lib-0.6
NO_COVERAGE: true

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
test-unix:
name: ${{ matrix.os }}${{ matrix.ABI }} / GAP stable-4.13
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@ env:
DIGRAPHS_LIB: digraphs-lib-0.6
NO_COVERAGE: true

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
test-unix:
name: GAP ${{ matrix.gap-branch }} / ${{ matrix.only-needed && 'only-needed' || 'needed+suggested' }}
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/valgrind.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@ env:
VALGRIND: valgrind --trace-children=yes --leak-check=full --error-exitcode=1
NO_COVERAGE: true

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
test-valgrind:
name: Ubuntu / GAP stable-4.13 / valgrind
Expand Down

0 comments on commit ec0efb0

Please sign in to comment.