Skip to content

Commit

Permalink
Try to run tests on arm machine (#699)
Browse files Browse the repository at this point in the history
Signed-off-by: Natalie Arellano <[email protected]>

Co-authored-by: Juan Bustamante <[email protected]>
  • Loading branch information
natalieparellano and jjbustamante authored Aug 30, 2021
1 parent 7af70d2 commit aeabcc0
Showing 1 changed file with 15 additions and 2 deletions.
17 changes: 15 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:
- 'release/**'

jobs:
test-linux:
test-linux-amd64:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2
Expand All @@ -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:
Expand Down Expand Up @@ -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:
Expand Down

0 comments on commit aeabcc0

Please sign in to comment.