Skip to content

Commit f86fd92

Browse files
committed
qa: don't compile nor use the coordinator, run the dummy one
1 parent dd08291 commit f86fd92

File tree

1 file changed

+2
-9
lines changed

1 file changed

+2
-9
lines changed

.cirrus.yml

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -33,17 +33,15 @@ task:
3333
set -xe
3434
3535
# Install the dependencies
36-
apt update && apt install -y postgresql python3 python3-venv
36+
apt update && apt install -y python3 python3-venv
3737
38-
# Compile the daemon and the servers
38+
# Compile the daemon and the servers (but the coordinator)
3939
cargo build --release
4040
export REVAULTD_PATH=$PWD/target/release/revaultd
4141
git submodule update --init
4242
cd tests/servers
4343
cd miradord && cargo build
4444
export MIRADORD_PATH=$PWD/target/debug/miradord
45-
cd ../coordinatord && cargo build
46-
export COORDINATORD_PATH=$PWD/target/debug/coordinatord
4745
cd ../cosignerd && cargo build
4846
export COSIGNERD_PATH=$PWD/target/debug/cosignerd
4947
cd ../../../
@@ -54,11 +52,6 @@ task:
5452
tar -xzf $ARCHIVE_NAME
5553
export BITCOIND_PATH=$BITCOIND_DIR_NAME/bin/bitcoind
5654
57-
# Setup the postgres instance for the servers
58-
pg_ctlcluster 13 main start
59-
su -c "psql -c \"CREATE ROLE test CREATEDB LOGIN PASSWORD 'test'\"" - postgres
60-
export POSTGRES_USER=test POSTGRES_PASS=test
61-
6255
# Run the functional tests
6356
python3 -m venv venv
6457
. venv/bin/activate

0 commit comments

Comments
 (0)