Skip to content

Commit

Permalink
ci: drop previous workflow runs when new ones are pushed
Browse files Browse the repository at this point in the history
  • Loading branch information
jcelerier committed Dec 26, 2024
1 parent e6c6721 commit 26dfa6b
Show file tree
Hide file tree
Showing 12 changed files with 109 additions and 13 deletions.
11 changes: 10 additions & 1 deletion .github/workflows/benchmarks.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
name: Benchmarks

on: push
on:
pull_request:
push:
branches:
- master

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true


jobs:
build_benchmark_ubuntu:
Expand Down
10 changes: 9 additions & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
name: Coverage

on: push
on:
pull_request:
push:
branches:
- master

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true

jobs:
build:
Expand Down
10 changes: 9 additions & 1 deletion .github/workflows/doc.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
name: Documentation

on: push
on:
pull_request:
push:
branches:
- master

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true

jobs:
build:
Expand Down
10 changes: 9 additions & 1 deletion .github/workflows/libossia.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
name: libossia

on: push
on:
pull_request:
push:
branches:
- master

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true

jobs:
build-macos:
Expand Down
10 changes: 9 additions & 1 deletion .github/workflows/ossia-cpp.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
name: ossia-cpp

on: push
on:
pull_request:
push:
branches:
- master

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true

jobs:
cpp-linux:
Expand Down
10 changes: 9 additions & 1 deletion .github/workflows/ossia-max.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
name: ossia-max

on: push
on:
pull_request:
push:
branches:
- master

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true

jobs:
build-macos:
Expand Down
10 changes: 9 additions & 1 deletion .github/workflows/ossia-pd.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
name: ossia-pd

on: push
on:
pull_request:
push:
branches:
- master

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true

jobs:
build-macos:
Expand Down
10 changes: 9 additions & 1 deletion .github/workflows/ossia-purrdata.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
name: ossia-purrdata

on: push
on:
pull_request:
push:
branches:
- master

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true

jobs:
build-macos:
Expand Down
10 changes: 9 additions & 1 deletion .github/workflows/ossia-python.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
name: ossia-python

on: push
on:
pull_request:
push:
branches:
- master

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true

jobs:
build-macos:
Expand Down
10 changes: 9 additions & 1 deletion .github/workflows/ossia-qml.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
name: ossia-qml

on: push
on:
pull_request:
push:
branches:
- master

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true

jobs:
qml-linux:
Expand Down
10 changes: 9 additions & 1 deletion .github/workflows/ossia-unity.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
name: ossia-unity

on: push
on:
pull_request:
push:
branches:
- master

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true

jobs:
Unity3DLinux:
Expand Down
11 changes: 9 additions & 2 deletions .github/workflows/superlinter.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,14 @@
name: linter

# Run this workflow every time a new commit pushed to your repository
on: push
on:
pull_request:
push:
branches:
- master

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true

jobs:
# Set the job key. The key is displayed as the job name
Expand Down

0 comments on commit 26dfa6b

Please sign in to comment.