mirror of
https://github.com/gradle/actions.git
synced 2026-03-22 12:05:48 +08:00
Run only one integ-test suite at a time
This commit is contained in:
8
.github/workflows/ci-integ-test-full.yml
vendored
8
.github/workflows/ci-integ-test-full.yml
vendored
@@ -10,10 +10,6 @@ on:
|
|||||||
- 'dist/**'
|
- 'dist/**'
|
||||||
- 'src/vendor/gradle-actions-caching/**'
|
- 'src/vendor/gradle-actions-caching/**'
|
||||||
|
|
||||||
concurrency:
|
|
||||||
group: integ-test
|
|
||||||
cancel-in-progress: false
|
|
||||||
|
|
||||||
permissions:
|
permissions:
|
||||||
contents: read
|
contents: read
|
||||||
|
|
||||||
@@ -21,7 +17,7 @@ jobs:
|
|||||||
caching-integ-tests:
|
caching-integ-tests:
|
||||||
uses: ./.github/workflows/suite-integ-test-caching.yml
|
uses: ./.github/workflows/suite-integ-test-caching.yml
|
||||||
concurrency:
|
concurrency:
|
||||||
group: CI-integ-test-full
|
group: CI-integ-test
|
||||||
cancel-in-progress: false
|
cancel-in-progress: false
|
||||||
with:
|
with:
|
||||||
runner-os: '["ubuntu-latest", "windows-latest", "macos-latest"]'
|
runner-os: '["ubuntu-latest", "windows-latest", "macos-latest"]'
|
||||||
@@ -33,7 +29,7 @@ jobs:
|
|||||||
contents: write
|
contents: write
|
||||||
uses: ./.github/workflows/suite-integ-test-other.yml
|
uses: ./.github/workflows/suite-integ-test-other.yml
|
||||||
concurrency:
|
concurrency:
|
||||||
group: CI-integ-test-full
|
group: CI-integ-test
|
||||||
cancel-in-progress: false
|
cancel-in-progress: false
|
||||||
with:
|
with:
|
||||||
runner-os: '["ubuntu-latest", "windows-latest", "macos-latest"]'
|
runner-os: '["ubuntu-latest", "windows-latest", "macos-latest"]'
|
||||||
|
|||||||
10
.github/workflows/ci-integ-test.yml
vendored
10
.github/workflows/ci-integ-test.yml
vendored
@@ -11,10 +11,6 @@ on:
|
|||||||
paths-ignore:
|
paths-ignore:
|
||||||
- 'dist/**'
|
- 'dist/**'
|
||||||
|
|
||||||
concurrency:
|
|
||||||
group: integ-test
|
|
||||||
cancel-in-progress: false
|
|
||||||
|
|
||||||
permissions:
|
permissions:
|
||||||
contents: read
|
contents: read
|
||||||
|
|
||||||
@@ -31,6 +27,9 @@ jobs:
|
|||||||
caching-integ-tests:
|
caching-integ-tests:
|
||||||
needs: build-distribution
|
needs: build-distribution
|
||||||
uses: ./.github/workflows/suite-integ-test-caching.yml
|
uses: ./.github/workflows/suite-integ-test-caching.yml
|
||||||
|
concurrency:
|
||||||
|
group: CI-integ-test
|
||||||
|
cancel-in-progress: false
|
||||||
with:
|
with:
|
||||||
skip-dist: false
|
skip-dist: false
|
||||||
secrets: inherit
|
secrets: inherit
|
||||||
@@ -40,6 +39,9 @@ jobs:
|
|||||||
contents: write
|
contents: write
|
||||||
needs: build-distribution
|
needs: build-distribution
|
||||||
uses: ./.github/workflows/suite-integ-test-other.yml
|
uses: ./.github/workflows/suite-integ-test-other.yml
|
||||||
|
concurrency:
|
||||||
|
group: CI-integ-test
|
||||||
|
cancel-in-progress: false
|
||||||
with:
|
with:
|
||||||
skip-dist: false
|
skip-dist: false
|
||||||
secrets: inherit
|
secrets: inherit
|
||||||
|
|||||||
Reference in New Issue
Block a user