Skip to content

Commit

Permalink
ci: run functional tests both under Taproot and P2WSH
Browse files Browse the repository at this point in the history
  • Loading branch information
darosior committed Feb 27, 2024
1 parent 43e7c44 commit 35a8003
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion .cirrus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,19 @@ task:
matrix:
- USE_MIN_BITCOIN_VERSION: 'TRUE'
- USE_MIN_BITCOIN_VERSION: 'FALSE'
- USE_TAPROOT: 1
- name: 'RPC functional tests'
env:
TEST_GROUP: tests/test_rpc.py
matrix:
- USE_TAPROOT: 0
- USE_TAPROOT: 1
- name: 'Chain functional tests'
env:
TEST_GROUP: tests/test_chain.py
matrix:
- USE_TAPROOT: 0
- USE_TAPROOT: 1

cargo_registry_cache:
folders: $CARGO_HOME/registry
Expand All @@ -34,7 +41,12 @@ task:
fingerprint_script:
- rustc --version
- cat Cargo.lock
lianad_build_script: cargo build --release
tests_tools_cache:
folder: tests/tools/taproot_signer/target
fingerprint_script:
- rustc --version
- cat tests/tools/taproot_signer/Cargo.lock
lianad_build_script: cargo build --release && test "$USE_TAPROOT" -eq "1" && (cd tests/tools/taproot_signer && cargo build --release)

deps_script: apt update && apt install -y python3 python3-pip

Expand Down

0 comments on commit 35a8003

Please sign in to comment.