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