forked from etcd-io/etcd
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request etcd-io#16152 from jmhbnz/template-arm64-jobs
Templated arm64 integration and e2e workflows for main and release-3.5
- Loading branch information
Showing
4 changed files
with
79 additions
and
14 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: | ||
# 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
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,22 @@ | ||
--- | ||
name: Integration Arm64 Nightly | ||
permissions: read-all | ||
on: | ||
# 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 2 * * *' # runs daily at 2:30 am. | ||
jobs: | ||
main-arm64: | ||
uses: ./.github/workflows/tests-arm64-template.yaml | ||
with: | ||
etcdBranch: main | ||
integrationTestCmd: make test-integration | ||
unitTestCmd: GO_TEST_FLAGS='-p=2' make test-unit | ||
release-35-arm64: | ||
uses: ./.github/workflows/tests-arm64-template.yaml | ||
with: | ||
etcdBranch: release-3.5 | ||
integrationTestCmd: PASSES='integration' RACE='false' ./test.sh | ||
unitTestCmd: PASSES='unit' CPU='4' ./test.sh -p=2 | ||
gofailMake: "no" |
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