Skip to content

Commit

Permalink
github action: add ARM64 test
Browse files Browse the repository at this point in the history
Signed-off-by: Gyuho Lee <leegyuho@amazon.com>
  • Loading branch information
gyuho committed May 8, 2021
1 parent aeb9b5f commit bd75857
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/self-hosted-linux-arm64-graviton2-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Linux ARM64 Graviton2

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
test:
runs-on: [self-hosted, linux, ARM64, graviton2]
steps:
- uses: actions/checkout@v2
- name: install git gcc
run: |
sudo yum install -y git gcc
- uses: actions/setup-go@v2
with:
go-version: '^1.16.4'
- run: go version
- run: date
- name: Run tests
run: TEST_OPTS="PASSES='fmt build unit integration_e2e'" make test

0 comments on commit bd75857

Please sign in to comment.