Sync from snapshot, Mainnet, ParityDB pruned #2
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
--- | |
# This workflow performs sync to Mainnet from a pruned ParityDB snapshot using the latest | |
# main version. | |
# | |
# For now, this test not quite correctly tests sync Mainnet from latest aleph-node binary, | |
# for which we don't guarantee it will always happen to work. | |
name: Weekly sync from snapshot, Mainnet, ParityDB pruned | |
on: | |
# At 03:00 on Wednesday and Saturday | |
schedule: | |
- cron: '0 3 * * 3,6' | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.ref }}-${{ github.workflow }} | |
cancel-in-progress: false | |
jobs: | |
main: | |
name: Test sync | |
uses: ./.github/workflows/_sync-from-snapshot.yml | |
secrets: inherit | |
with: | |
timeout: 60 | |
args: --mainnet --pruned |