Run robustness tests on arm64.

Signed-off-by: James Blair <mail@jamesblair.net>
This commit is contained in:
James Blair 2023-05-13 08:11:53 +12:00
parent 2a0c989662
commit 09ae3a641c
No known key found for this signature in database
3 changed files with 21 additions and 1 deletions

View File

@ -14,6 +14,14 @@ jobs:
count: 100 count: 100
testTimeout: 200m testTimeout: 200m
artifactName: main artifactName: main
main-arm64:
uses: ./.github/workflows/robustness-template.yaml
with:
etcdBranch: main
count: 100
testTimeout: 200m
artifactName: main-arm64
runs-on: "['self-hosted', 'Linux', 'ARM64']"
release-35: release-35:
uses: ./.github/workflows/robustness-template.yaml uses: ./.github/workflows/robustness-template.yaml
with: with:

View File

@ -15,13 +15,17 @@ on:
artifactName: artifactName:
required: true required: true
type: string type: string
runs-on:
required: false
type: string
default: "['ubuntu-latest']"
permissions: read-all permissions: read-all
jobs: jobs:
goversion: goversion:
uses: ./.github/workflows/go-version.yaml uses: ./.github/workflows/go-version.yaml
test: test:
timeout-minutes: 210 timeout-minutes: 210
runs-on: ubuntu-latest runs-on: ${{ fromJson(inputs.runs-on) }}
needs: goversion needs: goversion
steps: steps:
- uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2 - uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2

View File

@ -9,3 +9,11 @@ jobs:
count: 15 count: 15
testTimeout: 30m testTimeout: 30m
artifactName: main artifactName: main
main-arm64:
uses: ./.github/workflows/robustness-template.yaml
with:
etcdBranch: main
count: 15
testTimeout: 30m
artifactName: main-arm64
runs-on: "['self-hosted', 'Linux', 'ARM64']"