mirror of
https://github.com/ivabus/pantry
synced 2024-11-22 08:25:07 +03:00
anyone remember why we turned off concurrency for ci.yml?
This commit is contained in:
parent
7076663a24
commit
27043fa2d6
1 changed files with 9 additions and 5 deletions
14
.github/workflows/ci.yml
vendored
14
.github/workflows/ci.yml
vendored
|
@ -1,8 +1,12 @@
|
||||||
name: ci
|
name: ci
|
||||||
run-name: 'ci: ${{ github.event.pull_request.title }}'
|
run-name: "ci: ${{ github.event.pull_request.title }}"
|
||||||
|
|
||||||
on: pull_request
|
on: pull_request
|
||||||
|
|
||||||
|
concurrency:
|
||||||
|
group: ${{ github.event.pull_request.head.ref }}
|
||||||
|
cancel-in-progress: true
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
get-projects:
|
get-projects:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
@ -26,10 +30,10 @@ jobs:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
platform:
|
platform:
|
||||||
- darwin+x86-64
|
- darwin+x86-64
|
||||||
- linux+x86-64
|
- linux+x86-64
|
||||||
- darwin+aarch64
|
- darwin+aarch64
|
||||||
- linux+aarch64
|
- linux+aarch64
|
||||||
needs: [get-projects]
|
needs: [get-projects]
|
||||||
uses: ./.github/workflows/build.yml
|
uses: ./.github/workflows/build.yml
|
||||||
name: ${{ matrix.platform }}
|
name: ${{ matrix.platform }}
|
||||||
|
|
Loading…
Reference in a new issue