attempt concur fix
This commit is contained in:
parent
85c0ceacb9
commit
4db6a64139
2 changed files with 8 additions and 6 deletions
|
@ -2,6 +2,10 @@ on:
|
||||||
pull_request:
|
pull_request:
|
||||||
types: [ assigned, opened, synchronize, reopened ]
|
types: [ assigned, opened, synchronize, reopened ]
|
||||||
|
|
||||||
|
concurrency:
|
||||||
|
group: ${{ github.head_ref || github.ref_name }}
|
||||||
|
cancel-in-progress: true
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build-aarch64:
|
build-aarch64:
|
||||||
runs-on: aarch64
|
runs-on: aarch64
|
||||||
|
@ -12,9 +16,6 @@ jobs:
|
||||||
CI_DEBUG_BUILD: ${{ runner.debug }}
|
CI_DEBUG_BUILD: ${{ runner.debug }}
|
||||||
CI_MERGE_REQUEST_PROJECT_URL: ${{ github.server_url }}/${{ github.repository }}
|
CI_MERGE_REQUEST_PROJECT_URL: ${{ github.server_url }}/${{ github.repository }}
|
||||||
CI_MERGE_REQUEST_TARGET_BRANCH_NAME: ${{ github.base_ref }}
|
CI_MERGE_REQUEST_TARGET_BRANCH_NAME: ${{ github.base_ref }}
|
||||||
concurrency:
|
|
||||||
group: ${{ github.head_ref || github.ref_name }}
|
|
||||||
cancel-in-progress: true
|
|
||||||
steps:
|
steps:
|
||||||
- name: Environment setup
|
- name: Environment setup
|
||||||
run: |
|
run: |
|
||||||
|
|
|
@ -2,6 +2,10 @@ on:
|
||||||
pull_request:
|
pull_request:
|
||||||
types: [ assigned, opened, synchronize, reopened ]
|
types: [ assigned, opened, synchronize, reopened ]
|
||||||
|
|
||||||
|
concurrency:
|
||||||
|
group: ${{ github.head_ref || github.ref_name }}
|
||||||
|
cancel-in-progress: true
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build-x86_64:
|
build-x86_64:
|
||||||
runs-on: x86_64
|
runs-on: x86_64
|
||||||
|
@ -12,9 +16,6 @@ jobs:
|
||||||
CI_DEBUG_BUILD: ${{ runner.debug }}
|
CI_DEBUG_BUILD: ${{ runner.debug }}
|
||||||
CI_MERGE_REQUEST_PROJECT_URL: ${{ github.server_url }}/${{ github.repository }}
|
CI_MERGE_REQUEST_PROJECT_URL: ${{ github.server_url }}/${{ github.repository }}
|
||||||
CI_MERGE_REQUEST_TARGET_BRANCH_NAME: ${{ github.base_ref }}
|
CI_MERGE_REQUEST_TARGET_BRANCH_NAME: ${{ github.base_ref }}
|
||||||
concurrency:
|
|
||||||
group: ${{ github.head_ref || github.ref_name }}
|
|
||||||
cancel-in-progress: true
|
|
||||||
steps:
|
steps:
|
||||||
- name: Environment setup
|
- name: Environment setup
|
||||||
run: |
|
run: |
|
||||||
|
|
Loading…
Reference in a new issue