mirror of
https://github.com/etcd-io/etcd.git
synced 2024-09-27 06:25:44 +00:00
Use a template to consolidate arm64 and amd64 test workflows. Enable running armd64 tests on every push and pull request. Signed-off-by: Ivan Valdes <ivan@vald.es>
24 lines
635 B
YAML
24 lines
635 B
YAML
name: Tests
|
|
on: [push, pull_request]
|
|
jobs:
|
|
amd64:
|
|
uses: ./.github/workflows/tests-template.yaml
|
|
with:
|
|
arch: amd64
|
|
runs-on: ubuntu-latest
|
|
targets: "['linux-integration-1-cpu',
|
|
'linux-integration-2-cpu',
|
|
'linux-integration-4-cpu',
|
|
'linux-unit-4-cpu-race',
|
|
'linux-386-unit-1-cpu',
|
|
'all-build']"
|
|
arm64:
|
|
uses: ./.github/workflows/tests-template.yaml
|
|
with:
|
|
arch: arm64
|
|
runs-on: actuated-arm64-8cpu-32gb
|
|
targets: "['linux-integration-1-cpu',
|
|
'linux-integration-2-cpu',
|
|
'linux-integration-4-cpu',
|
|
'linux-unit-4-cpu-race']"
|