From 1be4ce5a874da31f2b1e5c9e6db428b65c79fea4 Mon Sep 17 00:00:00 2001 From: Juan Bustamante Date: Mon, 30 Aug 2021 12:57:34 -0400 Subject: [PATCH] Try to run tests on arm machine Signed-off-by: Natalie Arellano --- .github/workflows/build.yml | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 03344b358..5227e0878 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -11,7 +11,7 @@ on: - 'release/**' jobs: - test-linux: + test-linux-amd64: runs-on: ubuntu-18.04 steps: - uses: actions/checkout@v2 @@ -35,6 +35,18 @@ jobs: file: ./out/tests/coverage-unit.txt flags: unit,os_linux fail_ci_if_error: true + test-linux-arm64: + runs-on: linux-arm64 + steps: + - uses: actions/checkout@v2 + - name: Set up go + uses: actions/setup-go@v2 + with: + go-version: '1.16' + - name: Test + run: | + make format || true + make test test-windows: runs-on: windows-latest steps: @@ -84,7 +96,8 @@ jobs: codecov.exe -f .\out\tests\coverage-unit.txt -v --flag os_windows build-and-publish: needs: - - test-linux + - test-linux-amd64 + - test-linux-arm64 - test-windows runs-on: ubuntu-18.04 steps: