-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add test grouping to workflow inputs (#1029)
Add option to define test grouping as workflow input. For example, this will run tests in 4 group ``` docker-build: uses: ./.github/workflows/build-and-test.yml secrets: inherit with: test_mark: 'nightly' test_group_cnt: 4 test_group_ids: '[1,2,3,4]' ```
- Loading branch information
1 parent
45a03b8
commit 8aebefb
Showing
5 changed files
with
30 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,3 +11,5 @@ jobs: | |
secrets: inherit | ||
with: | ||
test_mark: 'nightly_sweeps' | ||
test_group_cnt: 4 | ||
test_group_ids: '[1,2,3,4]' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,3 +11,5 @@ jobs: | |
secrets: inherit | ||
with: | ||
test_mark: 'nightly' | ||
test_group_cnt: 4 | ||
test_group_ids: '[1,2,3,4]' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,3 +11,5 @@ jobs: | |
secrets: inherit | ||
with: | ||
test_mark: 'push' | ||
test_group_cnt: 2 | ||
test_group_ids: '[1,2]' |