mirror of
https://github.com/gradle/actions
synced 2024-11-23 18:02:13 +00:00
Prevent concurrent jobs in integ-test-full
This commit is contained in:
parent
f8ba43cf0a
commit
af1da67850
1 changed files with 6 additions and 0 deletions
6
.github/workflows/ci-integ-test-full.yml
vendored
6
.github/workflows/ci-integ-test-full.yml
vendored
|
@ -16,6 +16,9 @@ concurrency:
|
|||
jobs:
|
||||
caching-integ-tests:
|
||||
uses: ./.github/workflows/suite-integ-test-caching.yml
|
||||
concurrency:
|
||||
group: CI-integ-test-full
|
||||
cancel-in-progress: false
|
||||
with:
|
||||
runner-os: '["ubuntu-latest", "windows-latest", "macos-latest"]'
|
||||
skip-dist: true
|
||||
|
@ -23,6 +26,9 @@ jobs:
|
|||
|
||||
other-integ-tests:
|
||||
uses: ./.github/workflows/suite-integ-test-other.yml
|
||||
concurrency:
|
||||
group: CI-integ-test-full
|
||||
cancel-in-progress: false
|
||||
with:
|
||||
runner-os: '["ubuntu-latest", "windows-latest", "macos-latest"]'
|
||||
skip-dist: true
|
||||
|
|
Loading…
Reference in a new issue