Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PM-2037 - Update Github Action Runner Types #18

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/sync-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ concurrency:
cancel-in-progress: true
jobs:
parse-mainnet-seed-list:
runs-on: minafoundation-default-runners
runs-on: minafoundation-default-interruptible-runners
outputs:
seeds: ${{ steps.parse-mainnet-seed-list.outputs.seeds }}
steps:
Expand All @@ -22,7 +22,7 @@ jobs:
echo "seeds=$seeds" >> $GITHUB_OUTPUT
test-peer:
needs: parse-mainnet-seed-list
runs-on: minafoundation-xlarge-runners
runs-on: minafoundation-xlarge-interruptible-runners
if: needs.parse-mainnet-seed-list.outputs.seeds != '[]' && needs.parse-mainnet-seed-list.outputs.seeds != ''
continue-on-error: true
strategy:
Expand Down Expand Up @@ -58,7 +58,7 @@ jobs:

print-failed-seeds:
needs: test-peer
runs-on: minafoundation-default-runners
runs-on: minafoundation-default-interruptible-runners
steps:
- name: Download all artifacts
uses: actions/download-artifact@v4
Expand Down