From 51eb29af360ef593fcd53488416473b7993c5c76 Mon Sep 17 00:00:00 2001 From: Ming Li Date: Wed, 15 Nov 2023 17:00:54 -0600 Subject: [PATCH] etcd-e2d-test:rename e2e-arm64 file and runs it on every pull request #16912 KubeconNA 2023 Contribfest issue #16893 . Recently in #16801 we introduced on demand github actions runners for the arm64 platform. Having on demand runner infrastructure in place means we should now have enough capacity to begin running arm64 tests for every pull request. Currently we have: .github/workflows/e2e-arm64-template.yaml - Shared template .github/workflows/e2e-arm64-nightly.yaml - Runs template against both release-3.5 and main branches nightly. Moving forward we can just rename .github/workflows/e2e-arm64-template.yaml to .github/workflows/e2e-arm64.yaml and delete the other file. We can then just make the template file a standard workflow that will run on pull request. Signed-off-by: Ming Li --- .github/workflows/e2e-arm64.yaml | 37 ++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 .github/workflows/e2e-arm64.yaml diff --git a/.github/workflows/e2e-arm64.yaml b/.github/workflows/e2e-arm64.yaml new file mode 100644 index 00000000000..a5731189a75 --- /dev/null +++ b/.github/workflows/e2e-arm64.yaml @@ -0,0 +1,37 @@ +--- +name: E2E-Arm64 +on: [push, pull_request] +permissions: read-all +jobs: + test: + # this is to prevent the job to run at forked projects + if: github.repository == 'etcd-io/etcd' + runs-on: actuated-arm64-8cpu-32gb + strategy: + fail-fast: false + matrix: + target: + - linux-arm64-e2e + steps: + - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 + - id: goversion + run: echo "goversion=$(cat .go-version)" >> "$GITHUB_OUTPUT" + - uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0 + with: + go-version: ${{ steps.goversion.outputs.goversion }} + - env: + TARGET: ${{ matrix.target }} + run: | + set -euo pipefail + go clean -testcache + + echo "${TARGET}" + case "${TARGET}" in + linux-arm64-e2e) + GOOS=linux GOARCH=arm64 CPU=4 EXPECT_DEBUG=true make test-e2e-release + ;; + *) + echo "Failed to find target" + exit 1 + ;; + esac