File tree Expand file tree Collapse file tree 1 file changed +2
-9
lines changed Expand file tree Collapse file tree 1 file changed +2
-9
lines changed Original file line number Diff line number Diff 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 ../../../
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
You can’t perform that action at this time.
0 commit comments