Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
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
6 changes: 6 additions & 0 deletions .github/workflows/build_all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,12 @@ on: [pull_request, workflow_dispatch, workflow_call]
permissions:
contents: read

# Group workflows together to cancel outdated runs, do not cancel manual runs
concurrency:
group: "${{ github.workflow }}-${{ github.event_name }}-\
${{ github.event_name == 'pull_request' && github.ref || github.run_id }}"
cancel-in-progress: true

jobs:

stub-build:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ on:
permissions:
contents: read

# Specifies group name that stops previous workflows if the name matches
# Group workflows together to cancel outdated runs
concurrency:
group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.head_ref || github.ref }}
group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.ref }}
cancel-in-progress: true

jobs:
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/codestyle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,12 @@ on: [pull_request, workflow_call, workflow_dispatch]
permissions:
contents: read

# Group workflows together to cancel outdated runs, do not cancel manual runs
concurrency:
group: "${{ github.workflow }}-${{ github.event_name }}-\
${{ github.event_name == 'pull_request' && github.ref || github.run_id }}"
cancel-in-progress: true

jobs:
yamllint:
runs-on: ubuntu-latest
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/ipc_fuzzer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,12 @@ on:
permissions:
contents: read

# Group workflows together to cancel outdated runs, do not cancel manual runs
concurrency:
group: "${{ github.workflow }}-${{ github.event_name }}-\
${{ github.event_name == 'pull_request' && github.ref || github.run_id }}"
cancel-in-progress: true

jobs:

simple-IPC-fuzz_sh:
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/llext.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,12 @@ defaults:
permissions:
contents: read

# Group workflows together to cancel outdated runs
concurrency:
group: "${{ github.workflow }}-${{ github.event_name }}-\
${{ github.event_name == 'pull_request' && github.ref || github.run_id }}"
cancel-in-progress: true

jobs:
build:
runs-on: ubuntu-24.04
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,12 @@ on:
permissions:
contents: read

# Group workflows together to cancel outdated runs, do not cancel manual runs
concurrency:
group: "${{ github.workflow }}-${{ github.event_name }}-\
${{ github.event_name == 'pull_request' && github.ref || github.run_id }}"
cancel-in-progress: true

jobs:

doxygen:
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/repro-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,12 @@ on: [pull_request, workflow_dispatch, workflow_call]
permissions:
contents: read

# Group workflows together to cancel outdated runs, do not cancel manual runs
concurrency:
group: "${{ github.workflow }}-${{ github.event_name }}-\
${{ github.event_name == 'pull_request' && github.ref || github.run_id }}"
cancel-in-progress: true

jobs:
main:
runs-on: ubuntu-24.04
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/rimage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,12 @@ on:
permissions:
contents: read

# Group workflows together to cancel outdated runs, do not cancel manual runs
concurrency:
group: "${{ github.workflow }}-${{ github.event_name }}-\
${{ github.event_name == 'pull_request' && github.ref || github.run_id }}"
cancel-in-progress: true

jobs:

# Basic build test
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/sof-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,12 @@ on:
permissions:
contents: read

# Group workflows together to cancel outdated runs, do not cancel manual runs
concurrency:
group: "${{ github.workflow }}-${{ github.event_name }}-\
${{ github.event_name == 'pull_request' && github.ref || github.run_id }}"
cancel-in-progress: true

jobs:

# This is unfortunately a mix of sof-docs/.github/ + pull-request.yml#doxygen
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/sparse-zephyr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,12 @@ defaults:
permissions:
contents: read

# Group workflows together to cancel outdated runs, do not cancel manual runs
concurrency:
group: "${{ github.workflow }}-${{ github.event_name }}-\
${{ github.event_name == 'pull_request' && github.ref || github.run_id }}"
cancel-in-progress: true

jobs:
# As of sparse commit ce1a6720f69e / Sept 2022, the exit status of
# sparse.c is an unusable mess and always zero in practice. Moreover
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/testbench.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,12 @@ on:
permissions:
contents: read

# Group workflows together to cancel outdated runs, do not cancel manual runs
concurrency:
group: "${{ github.workflow }}-${{ github.event_name }}-\
${{ github.event_name == 'pull_request' && github.ref || github.run_id }}"
cancel-in-progress: true

jobs:
build-and-test:
runs-on: ubuntu-24.04
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/tools.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,12 @@ on: [pull_request, workflow_dispatch, workflow_call]
permissions:
contents: read

# Group workflows together to cancel outdated runs, do not cancel manual runs
concurrency:
group: "${{ github.workflow }}-${{ github.event_name }}-\
${{ github.event_name == 'pull_request' && github.ref || github.run_id }}"
cancel-in-progress: true

jobs:
# This is not the same as building every ./build-tools.sh option.
top-level_default_CMake_target_ALL:
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,12 @@ on: [pull_request, workflow_dispatch, workflow_call]
permissions:
contents: read

# Group workflows together to cancel outdated runs, do not cancel manual runs
concurrency:
group: "${{ github.workflow }}-${{ github.event_name }}-\
${{ github.event_name == 'pull_request' && github.ref || github.run_id }}"
cancel-in-progress: true

jobs:
cmocka_utests:
runs-on: ubuntu-latest
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/zephyr-shell.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,12 @@ defaults:
permissions:
contents: read

# Group workflows together to cancel outdated runs, do not cancel manual runs
concurrency:
group: "${{ github.workflow }}-${{ github.event_name }}-\
${{ github.event_name == 'pull_request' && github.ref || github.run_id }}"
cancel-in-progress: true

jobs:
build:
runs-on: ubuntu-24.04
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/zephyr-unit-tests.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
name: "Unit tests"
name: "Zephyr Unit tests"
# yamllint disable-line rule:truthy
on:
pull_request:
Expand All @@ -9,9 +9,9 @@ on:
permissions:
contents: read

# Specifies group name that stops previous workflows if the name matches
# Group workflows together to cancel outdated runs
concurrency:
group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.head_ref || github.ref }}
group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.ref }}
cancel-in-progress: true

jobs:
Expand Down
9 changes: 5 additions & 4 deletions .github/workflows/zephyr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,12 @@ on:
required: false
default: 'mnfst'

# Specifies group name that stops previous wokrflows if the name matches
# Group workflows together to cancel outdated runs, do not cancel manual runs
concurrency:
# eg. "Zephyr-pull_request-my_fork_branch_to_merge"
# eg. "Zephyr-push-refs/heads/my_branch_merging"
group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.head_ref || github.ref }}
# eg. 'Zephyr-workflow_dispatch-62137'
# eg. 'Zephyr-pull_request-refs/pull/{pr_number}/merge'
group: "${{ github.workflow }}-${{ github.event_name }}-\
${{ github.event_name == 'pull_request' && github.ref || github.run_id }}"
cancel-in-progress: true

permissions:
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/zizmor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,10 @@ on:

permissions: {}

# Specifies group name that stops previous workflows if the name matches
# Group workflows together to cancel outdated runs, do not cancel manual runs
concurrency:
group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.head_ref || github.ref }}
group: "${{ github.workflow }}-${{ github.event_name }}-\
${{ github.event_name == 'pull_request' && github.ref || github.run_id }}"
cancel-in-progress: true

jobs:
Expand Down
Loading