fix(ci): Update docker patch jobs for recent changes (#4460)

* Update continous-integration-docker.patch for recent changes

* Remove trailing whitespace
This commit is contained in:
teor 2022-05-23 20:04:07 +10:00 committed by GitHub
parent 9425cb3f1c
commit 878875cca1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 19 additions and 24 deletions

View File

@ -52,7 +52,6 @@ jobs:
steps: steps:
- run: 'echo "No build required"' - run: 'echo "No build required"'
# Run all the zebra tests, including tests that are ignored by default
test-all: test-all:
name: Test all name: Test all
runs-on: ubuntu-latest runs-on: ubuntu-latest
@ -63,15 +62,12 @@ jobs:
test-fake-activation-heights: test-fake-activation-heights:
name: Test with fake activation heights name: Test with fake activation heights
runs-on: ubuntu-latest runs-on: ubuntu-latest
needs: build
steps: steps:
- run: 'echo "No build required"' - run: 'echo "No build required"'
# Test that Zebra syncs and checkpoints a few thousand blocks from an empty state
test-empty-sync: test-empty-sync:
name: Test checkpoint sync from empty state name: Test checkpoint sync from empty state
runs-on: ubuntu-latest runs-on: ubuntu-latest
needs: build
steps: steps:
- run: 'echo "No build required"' - run: 'echo "No build required"'
@ -82,25 +78,24 @@ jobs:
steps: steps:
- run: 'echo "No build required"' - run: 'echo "No build required"'
regenerate-stateful-disks: # Create a patch job for each call to deploy-gcp-tests.yml
name: Regenerate stateful disks #
# GitHub's branch protection rules only match on the name (they ignore the job ID)
deploy-gcp-tests-patch:
name: Run ${{ matrix.test_id }} test
runs-on: ubuntu-latest runs-on: ubuntu-latest
needs: build strategy:
steps: matrix:
- run: 'echo "No build required"' # Keep this list in sync with the test_id inputs to each deploy-gcp-tests.yml call
# in continous-integration-docker.yml
# Test that Zebra syncs and fully validates a few thousand blocks from a cached post-checkpoint state test_id:
test-stateful-sync: - 'sync-to-checkpoint'
name: Test full validation sync from cached state - 'sync-past-checkpoint'
runs-on: ubuntu-latest - 'full-sync-to-tip'
needs: [build, regenerate-stateful-disks] - 'fully-synced-rpc'
steps: - 'lwd-full-sync'
- run: 'echo "No build required"' - 'lwd-update-sync'
- 'lwd-send-transactions'
# Test that Zebra can run a full mainnet sync after a PR is approved - 'lwd-grpc-wallet'
test-full-sync:
name: Test a full sync up to the tip
runs-on: ubuntu-latest
needs: [build, regenerate-stateful-disks]
steps: steps:
- run: 'echo "No build required"' - run: 'echo "No build required"'

View File

@ -95,7 +95,7 @@ jobs:
# restricting the result from any branch. # restricting the result from any branch.
# #
# This search is executed considering the actual version from constants.rs # This search is executed considering the actual version from constants.rs
# #
# Generate one of the following outputs with a boolean to pass to subsequent jobs: # Generate one of the following outputs with a boolean to pass to subsequent jobs:
# - lwd_tip_disk # - lwd_tip_disk
# - zebra_tip_disk # - zebra_tip_disk