merge queue: embarking main (290ccf2) and [#7682 + #7731 + #7730] together #72
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: Docker Unit Tests | |
# These jobs *don't* depend on cached Google Cloud state disks, | |
# so they can be skipped when the modified files make the actual workflow run. | |
on: | |
pull_request: | |
paths-ignore: | |
# code and tests | |
- '**/*.rs' | |
# hard-coded checkpoints and proptest regressions | |
- '**/*.txt' | |
# test data snapshots | |
- '**/*.snap' | |
# dependencies | |
- '**/Cargo.toml' | |
- '**/Cargo.lock' | |
# configuration files | |
- '.cargo/config.toml' | |
- '**/clippy.toml' | |
# workflow definitions | |
- 'docker/**' | |
- '.dockerignore' | |
- '.github/workflows/ci-unit-tests-docker.yml' | |
- '.github/workflows/sub-deploy-integration-tests-gcp.yml' | |
- '.github/workflows/sub-find-cached-disks.yml' | |
- '.github/workflows/sub-build-docker-image.yml' | |
jobs: | |
# We don't patch the testnet job, because testnet isn't required to merge (it's too unstable) | |
get-available-disks: | |
name: Check if cached state disks exist for Mainnet / Check if cached state disks exist | |
runs-on: ubuntu-latest | |
steps: | |
- run: 'echo "No build required"' | |
build: | |
name: Build CI Docker / Build images | |
runs-on: ubuntu-latest | |
steps: | |
- run: 'echo "No build required"' | |
test-all: | |
name: Test all | |
runs-on: ubuntu-latest | |
steps: | |
- run: 'echo "No build required"' | |
test-all-getblocktemplate-rpcs: | |
name: Test all with getblocktemplate-rpcs feature | |
runs-on: ubuntu-latest | |
steps: | |
- run: 'echo "No build required"' | |
test-fake-activation-heights: | |
name: Test with fake activation heights | |
runs-on: ubuntu-latest | |
steps: | |
- run: 'echo "No build required"' | |
test-empty-sync: | |
name: Test checkpoint sync from empty state | |
runs-on: ubuntu-latest | |
steps: | |
- run: 'echo "No build required"' | |
test-lightwalletd-integration: | |
name: Test integration with lightwalletd | |
runs-on: ubuntu-latest | |
steps: | |
- run: 'echo "No build required"' | |
test-configuration-file: | |
name: Test CI default Docker config file / Test default-conf in Docker | |
runs-on: ubuntu-latest | |
steps: | |
- run: 'echo "No build required"' | |
test-zebra-conf-path: | |
name: Test CI custom Docker config file / Test custom-conf in Docker | |
runs-on: ubuntu-latest | |
steps: | |
- run: 'echo "No build required"' |