Skip to content

Commit af1da67

Browse files
committed
Prevent concurrent jobs in integ-test-full
1 parent f8ba43c commit af1da67

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/ci-integ-test-full.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,19 @@ concurrency:
1616
jobs:
1717
caching-integ-tests:
1818
uses: ./.github/workflows/suite-integ-test-caching.yml
19+
concurrency:
20+
group: CI-integ-test-full
21+
cancel-in-progress: false
1922
with:
2023
runner-os: '["ubuntu-latest", "windows-latest", "macos-latest"]'
2124
skip-dist: true
2225
secrets: inherit
2326

2427
other-integ-tests:
2528
uses: ./.github/workflows/suite-integ-test-other.yml
29+
concurrency:
30+
group: CI-integ-test-full
31+
cancel-in-progress: false
2632
with:
2733
runner-os: '["ubuntu-latest", "windows-latest", "macos-latest"]'
2834
skip-dist: true

0 commit comments

Comments
 (0)