-
Notifications
You must be signed in to change notification settings - Fork 9.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Templated arm64 e2e workflows for main and release-3.5.
Signed-off-by: James Blair <mail@jamesblair.net>
- Loading branch information
Showing
2 changed files
with
31 additions
and
4 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
--- | ||
name: E2E Arm64 Nightly | ||
permissions: read-all | ||
on: pull_request | ||
# schedules always run against the main branch, hence we have to create separate jobs | ||
# with individual checkout actions for each of the active release branches | ||
# schedule: | ||
# - cron: '30 1 * * *' # runs daily at 1:30 am. | ||
jobs: | ||
main-arm64: | ||
uses: ./.github/workflows/e2e-arm64-template.yaml | ||
with: | ||
etcdBranch: main | ||
e2eTestCmd: make test-e2e-release | ||
release-35-arm64: | ||
uses: ./.github/workflows/e2e-arm64-template.yaml | ||
with: | ||
etcdBranch: release-3.5 | ||
e2eTestCmd: PASSES='build e2e' COVER='false' ./test.sh |
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