[testing] Add scheduled jobs to test bootstrap from mainnet and testnet #6
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 'Check Bootstrap (testnet,full-sync)' | |
on: | |
# TODO(marun) Add a schedule | |
workflow_dispatch: | |
# TODO(marun) For testing only - remove before merge | |
pull_request: | |
jobs: | |
check_bootstrap_testnet_full_sync: | |
name: Check Bootstrap (testnet,full-sync) | |
runs-on: avalanche-avalanchego | |
timeout-minutes: 7200 # 5 days, maximum allowed for jobs running on a self-hosted runner | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- name: Check bootstrap (testnet,full-sync) | |
uses: ./.github/actions/check-bootstrap | |
with: | |
network_id: 5 # testnet | |
state_sync_enabled: false | |
prometheus_id: ${{ secrets.PROMETHEUS_ID || '' }} | |
prometheus_password: ${{ secrets.PROMETHEUS_PASSWORD || '' }} | |
loki_id: ${{ secrets.LOKI_ID || '' }} | |
loki_password: ${{ secrets.LOKI_PASSWORD || '' }} |