Stop requiring testnet job for CI to pass (#7208)
This commit is contained in:
parent
cf1e07248e
commit
80b1b227f3
|
|
@ -120,8 +120,7 @@ jobs:
|
||||||
zebra_skip_ipv6_tests: '1'
|
zebra_skip_ipv6_tests: '1'
|
||||||
rust_log: info
|
rust_log: info
|
||||||
|
|
||||||
# Test that Zebra works using the default config with the latest Zebra version,
|
# Test that Zebra works using the default config with the latest Zebra version.
|
||||||
# and test reconfiguring the docker image for testnet.
|
|
||||||
test-configuration-file:
|
test-configuration-file:
|
||||||
name: Test Zebra CD Docker config file
|
name: Test Zebra CD Docker config file
|
||||||
timeout-minutes: 15
|
timeout-minutes: 15
|
||||||
|
|
@ -161,6 +160,20 @@ jobs:
|
||||||
fi
|
fi
|
||||||
exit "$EXIT_STATUS"
|
exit "$EXIT_STATUS"
|
||||||
|
|
||||||
|
# Test reconfiguring the docker image for testnet.
|
||||||
|
test-configuration-file-testnet:
|
||||||
|
name: Test testnet Zebra CD Docker config file
|
||||||
|
timeout-minutes: 15
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
needs: build
|
||||||
|
steps:
|
||||||
|
- uses: r7kamura/rust-problem-matchers@v1.3.0
|
||||||
|
|
||||||
|
- name: Inject slug/short variables
|
||||||
|
uses: rlespinasse/github-slug-action@v4
|
||||||
|
with:
|
||||||
|
short-length: 7
|
||||||
|
|
||||||
# Make sure Zebra can sync the genesis block on testnet
|
# Make sure Zebra can sync the genesis block on testnet
|
||||||
- name: Run tests using a testnet config
|
- name: Run tests using a testnet config
|
||||||
run: |
|
run: |
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue