Skip to content

Commit

Permalink
Fix runs-on for arm64 robustness.
Browse files Browse the repository at this point in the history
Signed-off-by: James Blair <[email protected]>
  • Loading branch information
jmhbnz committed Oct 25, 2023
1 parent 3347568 commit 9c5f5e8
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/robustness-nightly.yaml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
---
name: Robustness Nightly
permissions: read-all
on:
on: pull_request
# schedules always run against the main branch, hence we have to create separate jobs

Check warning on line 5 in .github/workflows/robustness-nightly.yaml

View workflow job for this annotation

GitHub Actions / run

5:3 [comments-indentation] comment not indented like content
# with individual checkout actions for each of the active release branches
schedule:
- cron: '25 9 * * *' # runs every day at 09:25 UTC
#schedule:
# - cron: '25 9 * * *' # runs every day at 09:25 UTC

# workflow_dispatch enables manual testing of this job by maintainers
workflow_dispatch:
#workflow_dispatch:

jobs:
main:
Expand All @@ -27,7 +27,7 @@ jobs:
count: 80
testTimeout: 200m
artifactName: main-arm64
runs-on: actuated-arm64-8cpu-32gb
runs-on: "['actuated-arm64-8cpu-32gb']"
release-35:
uses: ./.github/workflows/robustness-template.yaml
with:
Expand All @@ -43,7 +43,7 @@ jobs:
count: 100
testTimeout: 200m
artifactName: release-35-arm64
runs-on: actuated-arm64-8cpu-32gb
runs-on: "['actuated-arm64-8cpu-32gb']"
release-34:
uses: ./.github/workflows/robustness-template.yaml
with:
Expand Down

0 comments on commit 9c5f5e8

Please sign in to comment.