mirror of
https://github.com/etcd-io/etcd.git
synced 2024-09-27 06:25:44 +00:00
20 lines
539 B
YAML
20 lines
539 B
YAML
name: Linux ARM64 Graviton2
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: [self-hosted, linux, ARM64, graviton2]
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: install dependencies
|
|
run: |
|
|
sudo amazon-linux-extras install epel
|
|
sudo yum install -y git gcc ShellCheck
|
|
- uses: actions/setup-go@v2
|
|
with:
|
|
go-version: "^1.16"
|
|
- run: go version
|
|
- run: date
|
|
- name: Run tests
|
|
run: TEST_OPTS="PASSES='fmt bom dep build unit integration_e2e'" make test
|