ci: run the backward compat functional test

This commit is contained in:
Antoine Poinsot 2023-03-29 17:56:50 +02:00
parent 96ff447fc9
commit 6cc4efd303
No known key found for this signature in database
GPG Key ID: E13FC145CD3F4304

View File

@ -1,7 +1,7 @@
task:
name: 'Functional tests'
container:
image: rust:latest
image: rust:1-bookworm
timeout_in: 90m # https://cirrus-ci.org/faq/#instance-timed-out
env:
@ -37,7 +37,7 @@ task:
pip_cache:
folder: ~/.cache/pip
python_deps_script: pip install -r tests/requirements.txt
python_deps_script: pip install --break-system-packages -r tests/requirements.txt
test_script: |
set -xe
@ -48,6 +48,15 @@ task:
tar -xzf bitcoin-24.0.1-x86_64-linux-gnu.tar.gz
export BITCOIND_PATH=bitcoin-24.0.1/bin/bitcoind
# The misc tests have a backward compat test that need the path to a previous version of Liana.
# For now it requires using 0.3.
if [ "$TEST_GROUP" = "tests/test_misc.py" ]; then
curl -LO https://github.com/wizardsardine/liana/releases/download/0.3.1/liana-0.3.1-x86_64-linux-gnu.tar.gz
echo "70c8595554b6f78ccc7b66ef5f5ebc5bac03a7b1ce28afe8a076f69adf59c583 liana-0.3.1-x86_64-linux-gnu.tar.gz" | sha256sum -c
tar -xzf liana-0.3.1-x86_64-linux-gnu.tar.gz
export OLD_LIANAD_PATH="$PWD/liana-0.3.1-x86_64-linux-gnu/lianad"
fi
# Run the functional tests
LIANAD_PATH=$PWD/target/release/lianad pytest $TEST_GROUP -vvv -n 2