mirror of
https://github.com/mpusz/mp-units.git
synced 2025-08-02 11:54:27 +02:00
don't test Clang 19 just yet; fix cancel-in-progres
This commit is contained in:
2
.github/generate-job-matrix.py
vendored
2
.github/generate-job-matrix.py
vendored
@@ -89,7 +89,7 @@ configs = {
|
|||||||
for c in [make_gcc_config(ver) for ver in [12, 13, 14]]
|
for c in [make_gcc_config(ver) for ver in [12, 13, 14]]
|
||||||
+ [
|
+ [
|
||||||
make_clang_config(ver, platform)
|
make_clang_config(ver, platform)
|
||||||
for ver in [16, 17, 18, 19]
|
for ver in [16, 17, 18]
|
||||||
for platform in ["x86-64", "arm64"]
|
for platform in ["x86-64", "arm64"]
|
||||||
]
|
]
|
||||||
+ [make_apple_clang_config(ver) for ver in [15]]
|
+ [make_apple_clang_config(ver) for ver in [15]]
|
||||||
|
13
.github/workflows/ci-clang-tidy.yml
vendored
13
.github/workflows/ci-clang-tidy.yml
vendored
@@ -34,20 +34,17 @@ on:
|
|||||||
paths-ignore:
|
paths-ignore:
|
||||||
- "docs/**"
|
- "docs/**"
|
||||||
|
|
||||||
|
|
||||||
|
concurrency:
|
||||||
|
group: ${{ github.workflow }}-${{ github.ref }}
|
||||||
|
cancel-in-progress: true
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
cancel-previous:
|
|
||||||
concurrency:
|
|
||||||
group: ${{ github.workflow }}-${{ github.ref }}
|
|
||||||
cancel-in-progress: true
|
|
||||||
runs-on: ubuntu-24.04
|
|
||||||
steps:
|
|
||||||
- run: echo "Cancelling all previous runs of ${{ github.workflow }}-${{ github.ref }}"
|
|
||||||
generate-matrix:
|
generate-matrix:
|
||||||
name: "Generate build matrix for ${{ github.workflow }}"
|
name: "Generate build matrix for ${{ github.workflow }}"
|
||||||
outputs:
|
outputs:
|
||||||
matrix: ${{ steps.set-matrix.outputs.matrix }}
|
matrix: ${{ steps.set-matrix.outputs.matrix }}
|
||||||
runs-on: ubuntu-24.04
|
runs-on: ubuntu-24.04
|
||||||
needs: cancel-previous
|
|
||||||
steps:
|
steps:
|
||||||
- name: Set up Python
|
- name: Set up Python
|
||||||
uses: actions/setup-python@v5
|
uses: actions/setup-python@v5
|
||||||
|
12
.github/workflows/ci-conan.yml
vendored
12
.github/workflows/ci-conan.yml
vendored
@@ -33,20 +33,16 @@ on:
|
|||||||
env:
|
env:
|
||||||
CHANNEL: ${{ fromJSON('["testing", "stable"]')[github.ref_type == 'tag' && startsWith(github.ref_name, 'v')] }}
|
CHANNEL: ${{ fromJSON('["testing", "stable"]')[github.ref_type == 'tag' && startsWith(github.ref_name, 'v')] }}
|
||||||
|
|
||||||
|
concurrency:
|
||||||
|
group: ${{ github.workflow }}-${{ github.ref }}
|
||||||
|
cancel-in-progress: true
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
cancel-previous:
|
|
||||||
concurrency:
|
|
||||||
group: ${{ github.workflow }}-${{ github.ref }}
|
|
||||||
cancel-in-progress: true
|
|
||||||
runs-on: ubuntu-24.04
|
|
||||||
steps:
|
|
||||||
- run: echo "Cancelling all previous runs of ${{ github.workflow }}-${{ github.ref }}"
|
|
||||||
generate-matrix:
|
generate-matrix:
|
||||||
name: "Generate build matrix for ${{ github.workflow }}"
|
name: "Generate build matrix for ${{ github.workflow }}"
|
||||||
outputs:
|
outputs:
|
||||||
matrix: ${{ steps.set-matrix.outputs.matrix }}
|
matrix: ${{ steps.set-matrix.outputs.matrix }}
|
||||||
runs-on: ubuntu-24.04
|
runs-on: ubuntu-24.04
|
||||||
needs: cancel-previous
|
|
||||||
steps:
|
steps:
|
||||||
- name: Set up Python
|
- name: Set up Python
|
||||||
uses: actions/setup-python@v5
|
uses: actions/setup-python@v5
|
||||||
|
12
.github/workflows/ci-freestanding.yml
vendored
12
.github/workflows/ci-freestanding.yml
vendored
@@ -34,20 +34,16 @@ on:
|
|||||||
paths-ignore:
|
paths-ignore:
|
||||||
- "docs/**"
|
- "docs/**"
|
||||||
|
|
||||||
|
concurrency:
|
||||||
|
group: ${{ github.workflow }}-${{ github.ref }}
|
||||||
|
cancel-in-progress: true
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
cancel-previous:
|
|
||||||
concurrency:
|
|
||||||
group: ${{ github.workflow }}-${{ github.ref }}
|
|
||||||
cancel-in-progress: true
|
|
||||||
runs-on: ubuntu-24.04
|
|
||||||
steps:
|
|
||||||
- run: echo "Cancelling all previous runs of ${{ github.workflow }}-${{ github.ref }}"
|
|
||||||
generate-matrix:
|
generate-matrix:
|
||||||
name: "Generate build matrix for ${{ github.workflow }}"
|
name: "Generate build matrix for ${{ github.workflow }}"
|
||||||
outputs:
|
outputs:
|
||||||
matrix: ${{ steps.set-matrix.outputs.matrix }}
|
matrix: ${{ steps.set-matrix.outputs.matrix }}
|
||||||
runs-on: ubuntu-24.04
|
runs-on: ubuntu-24.04
|
||||||
needs: cancel-previous
|
|
||||||
steps:
|
steps:
|
||||||
- name: Set up Python
|
- name: Set up Python
|
||||||
uses: actions/setup-python@v5
|
uses: actions/setup-python@v5
|
||||||
|
12
.github/workflows/ci-test-package-cmake.yml
vendored
12
.github/workflows/ci-test-package-cmake.yml
vendored
@@ -38,20 +38,16 @@ on:
|
|||||||
- "example/**"
|
- "example/**"
|
||||||
- "test/**"
|
- "test/**"
|
||||||
|
|
||||||
|
concurrency:
|
||||||
|
group: ${{ github.workflow }}-${{ github.ref }}
|
||||||
|
cancel-in-progress: true
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
cancel-previous:
|
|
||||||
concurrency:
|
|
||||||
group: ${{ github.workflow }}-${{ github.ref }}
|
|
||||||
cancel-in-progress: true
|
|
||||||
runs-on: ubuntu-24.04
|
|
||||||
steps:
|
|
||||||
- run: echo "Cancelling all previous runs of ${{ github.workflow }}-${{ github.ref }}"
|
|
||||||
generate-matrix:
|
generate-matrix:
|
||||||
name: "Generate build matrix for ${{ github.workflow }}"
|
name: "Generate build matrix for ${{ github.workflow }}"
|
||||||
outputs:
|
outputs:
|
||||||
matrix: ${{ steps.set-matrix.outputs.matrix }}
|
matrix: ${{ steps.set-matrix.outputs.matrix }}
|
||||||
runs-on: ubuntu-24.04
|
runs-on: ubuntu-24.04
|
||||||
needs: cancel-previous
|
|
||||||
steps:
|
steps:
|
||||||
- name: Set up Python
|
- name: Set up Python
|
||||||
uses: actions/setup-python@v5
|
uses: actions/setup-python@v5
|
||||||
|
Reference in New Issue
Block a user