-
Notifications
You must be signed in to change notification settings - Fork 115
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use workflow_dispatch to avoid custom token
- Loading branch information
1 parent
fd2b06e
commit 1915d14
Showing
2 changed files
with
79 additions
and
80 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 |
---|---|---|
@@ -0,0 +1,48 @@ | ||
name: Trigger tests | ||
|
||
on: | ||
workflow_dispatch: | ||
pull_request: | ||
branches: [ 'main', 'release-*' ] | ||
|
||
jobs: | ||
run-integration-tests: | ||
name: Pull request integration tests | ||
uses: ./.github/workflows/pull_request_integration_tests.yml | ||
|
||
run-integration-tests-arm: | ||
name: Pull request integration tests ARM | ||
uses: ./.github/workflows/pull_request_integration_tests_arm.yml | ||
|
||
run-integration-tests-vm-5-15-x86-64: | ||
name: Pull request integration tests on VM 5.15 x86_64 | ||
uses: ./.github/workflows/pull_request_integration_tests_vm_5.15_x86_64.yml | ||
|
||
run-integration-tests-vm-6-10-x86-64: | ||
name: Pull request integration tests on VM 6.10 x86_64 | ||
uses: ./.github/workflows/pull_request_integration_tests_vm_6.10_x86_64.yml | ||
|
||
run-integration-tests-k8s: | ||
name: Pull request K8s integration tests | ||
uses: ./.github/workflows/pull_request_k8s_integration_tests.yml | ||
|
||
run-oats-tests: | ||
name: PR OATS test | ||
uses: ./.github/workflows/pull_request_oats_test.yml | ||
|
||
run-pr-checks: | ||
name: Pull request checks | ||
uses: ./.github/workflows/pull_request.yml | ||
|
||
clang-format-check: | ||
name: Clang Format Check | ||
uses: ./.github/workflows/clang-format-check.yml | ||
|
||
clang-tidy-check: | ||
name: Clang Tidy Check | ||
uses: ./.github/workflows/clang-tidy-check.yml | ||
|
||
git-lfs-check: | ||
name: Check git-lfs files | ||
uses: ./.github/workflows/git-lfs-check.yml | ||
|