From 9765bbc0792657d793d4a33a0bc3f041e66e423e Mon Sep 17 00:00:00 2001 From: Justin Santa Barbara Date: Sat, 21 Nov 2020 13:26:14 -0500 Subject: [PATCH] Add arm64 runner to github actions. We require a runner with a label of linux-arm64; a separate tool will create these. --- .github/workflows/main.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index a7be2ad0c9548..c238b60af3b47 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -27,6 +27,23 @@ jobs: run: | make all examples test + build-linux-arm64: + runs-on: linux-arm64 + steps: + - name: Set up go + uses: actions/setup-go@v2 + with: + go-version: 1.15.2 + + - uses: actions/checkout@v2 + with: + path: ${{ env.GOPATH }}/src/k8s.io/kops + + - name: make all examples test + working-directory: ${{ env.GOPATH }}/src/k8s.io/kops + run: | + make all examples test + build-macos-amd64: runs-on: macos-10.15 steps: