Update cached state conditions and docs (#4332)
This commit is contained in:
parent
89fe4d73fc
commit
da232ec224
|
@ -14,12 +14,12 @@ on:
|
||||||
regenerate-disks:
|
regenerate-disks:
|
||||||
type: boolean
|
type: boolean
|
||||||
default: false
|
default: false
|
||||||
description: 'Just update stateful disks'
|
description: 'Just update mandatory checkpoint disks'
|
||||||
required: true
|
required: true
|
||||||
run-full-sync:
|
run-full-sync:
|
||||||
type: boolean
|
type: boolean
|
||||||
default: false
|
default: false
|
||||||
description: 'Just trigger a full sync'
|
description: 'Just run a full sync and update tip disks'
|
||||||
required: true
|
required: true
|
||||||
|
|
||||||
pull_request:
|
pull_request:
|
||||||
|
@ -99,7 +99,8 @@ jobs:
|
||||||
zebra_skip_ipv6_tests: '1'
|
zebra_skip_ipv6_tests: '1'
|
||||||
rust_log: info
|
rust_log: info
|
||||||
|
|
||||||
# Run all the zebra tests, including tests that are ignored by default
|
# Run all the zebra tests, including tests that are ignored by default.
|
||||||
|
# Skips tests that need a cached state disk or a lightwalletd binary.
|
||||||
test-all:
|
test-all:
|
||||||
name: Test all
|
name: Test all
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
@ -175,6 +176,10 @@ jobs:
|
||||||
env:
|
env:
|
||||||
ZEBRA_TEST_LIGHTWALLETD: '1'
|
ZEBRA_TEST_LIGHTWALLETD: '1'
|
||||||
|
|
||||||
|
# Regenerate mandatory checkpoint disks.
|
||||||
|
# Runs:
|
||||||
|
# - on every PR update, but only if Zebra's state version changes in the PR
|
||||||
|
# - on request
|
||||||
regenerate-stateful-disks:
|
regenerate-stateful-disks:
|
||||||
needs: [ build, changed-files]
|
needs: [ build, changed-files]
|
||||||
uses: ./.github/workflows/gcp-test-deploy.yml
|
uses: ./.github/workflows/gcp-test-deploy.yml
|
||||||
|
@ -189,7 +194,7 @@ jobs:
|
||||||
disk_suffix: checkpoint
|
disk_suffix: checkpoint
|
||||||
height_grep_text: 'flushing database to disk height=Height'
|
height_grep_text: 'flushing database to disk height=Height'
|
||||||
|
|
||||||
# Test that Zebra syncs and fully validates a few thousand blocks from a cached post-checkpoint state
|
# Test that Zebra syncs and fully validates a few thousand blocks from a cached mandatory checkpoint disk
|
||||||
test-stateful-sync:
|
test-stateful-sync:
|
||||||
needs: build
|
needs: build
|
||||||
uses: ./.github/workflows/gcp-test-deploy.yml
|
uses: ./.github/workflows/gcp-test-deploy.yml
|
||||||
|
@ -202,14 +207,18 @@ jobs:
|
||||||
saves_to_disk: false
|
saves_to_disk: false
|
||||||
disk_suffix: checkpoint
|
disk_suffix: checkpoint
|
||||||
|
|
||||||
# Test that Zebra can run a full mainnet sync after a PR is approved
|
# Test that Zebra can run a full mainnet sync and regenerate tip disks.
|
||||||
|
# Runs:
|
||||||
|
# - after every PR is merged to `main`
|
||||||
|
# - on every PR update, but only if Zebra's state version changes in the PR
|
||||||
|
# - on request
|
||||||
test-full-sync:
|
test-full-sync:
|
||||||
needs: build
|
needs: build
|
||||||
uses: ./.github/workflows/gcp-test-deploy.yml
|
uses: ./.github/workflows/gcp-test-deploy.yml
|
||||||
# TODO change `github.ref_name == 'main'` to `startsWith(github.head_ref, 'mergify/merge-queue/')`
|
# TODO change `github.ref_name == 'main'` to `startsWith(github.head_ref, 'mergify/merge-queue/')`
|
||||||
# to only run on Mergify head branches, and on manual dispatch:
|
# to only run on Mergify head branches, and on manual dispatch:
|
||||||
# https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#running-your-workflow-based-on-the-head-or-base-branch-of-a-pull-request-1
|
# https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#running-your-workflow-based-on-the-head-or-base-branch-of-a-pull-request-1
|
||||||
if: ${{ github.event_name == 'push' || github.event.inputs.run-full-sync == 'true' || github.event.inputs.regenerate-disks != 'true'}}
|
if: ${{ (github.event_name == 'push' && github.ref_name == 'main') || (needs.changed-files.outputs.rebuild == 'true' && github.event_name == 'push') || github.event.inputs.run-full-sync == 'true' }}
|
||||||
with:
|
with:
|
||||||
test_id: full-sync-to-tip
|
test_id: full-sync-to-tip
|
||||||
test_description: Test a full sync up to the tip
|
test_description: Test a full sync up to the tip
|
||||||
|
|
Loading…
Reference in New Issue