Skip to content

Commit

Permalink
Merge pull request #662 from fuweid/fuweid/run-robustness-on-arm64
Browse files Browse the repository at this point in the history
.github: enable robustness on arm64
  • Loading branch information
ahrtr authored Jan 4, 2024
2 parents 2039cee + 32f6f66 commit 5725474
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 2 deletions.
9 changes: 8 additions & 1 deletion .github/workflows/robustness_nightly.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,17 @@ on:
workflow_dispatch:

jobs:
main:
amd64:
# GHA has a maximum amount of 6h execution time, we try to get done within 3h
uses: ./.github/workflows/robustness_template.yaml
with:
count: 100
testTimeout: 200m
runs-on: "['ubuntu-latest-8-cores']"
arm64:
# GHA has a maximum amount of 6h execution time, we try to get done within 3h
uses: ./.github/workflows/robustness_template.yaml
with:
count: 100
testTimeout: 200m
runs-on: "['actuated-arm64-4cpu-8gb']"
1 change: 1 addition & 0 deletions .github/workflows/robustness_template.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,6 @@ jobs:
- name: test-robustness
run: |
set -euo pipefail
sudo apt-get install -y dmsetup
ROBUSTNESS_TESTFLAGS="--count ${{ inputs.count }} --timeout ${{ inputs.testTimeout }} -failfast" make test-robustness
8 changes: 7 additions & 1 deletion .github/workflows/robustness_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,15 @@ name: Robustness Test
on: [push, pull_request]
permissions: read-all
jobs:
test:
amd64:
uses: ./.github/workflows/robustness_template.yaml
with:
count: 10
testTimeout: 30m
runs-on: "['ubuntu-latest-8-cores']"
arm64:
uses: ./.github/workflows/robustness_template.yaml
with:
count: 10
testTimeout: 30m
runs-on: "['actuated-arm64-4cpu-8gb']"

0 comments on commit 5725474

Please sign in to comment.