2022-04-18 20:20:41 +00:00
#!/bin/bash
set -e
# Set up repo
start_dir = $( pwd )
temp_dir = $( mktemp -d)
cd $temp_dir
git clone -b $( cat /tmp/git_head_ref) " https://github.com/ $( cat /tmp/git_repository) .git "
cd ipld-eth-server
## Remove the branch and github related info. This way future runs wont be confused.
2022-06-17 16:49:39 +00:00
rm -f /tmp/git_head_ref /tmp/git_repository
2022-04-18 20:20:41 +00:00
2022-07-12 08:10:45 +00:00
# Spin up DB and run migrations
2022-09-20 15:52:06 +00:00
echo 'docker-compose up -d migrations ipld-eth-db'
2022-07-12 08:10:45 +00:00
docker-compose up -d migrations ipld-eth-db
trap " docker-compose down -v --remove-orphans; cd $start_dir ; rm -r $temp_dir " SIGINT SIGTERM ERR
sleep 30
2022-04-18 20:20:41 +00:00
# Remove old logs so there's no confusion, then run test
rm -f /tmp/test.log /tmp/return_test.txt
2022-06-17 16:48:50 +00:00
PGPASSWORD = password DATABASE_USER = vdbm DATABASE_PORT = 8077 DATABASE_PASSWORD = password DATABASE_HOSTNAME = localhost DATABASE_NAME = vulcanize_testing make test > /tmp/test.log
2022-04-18 20:20:41 +00:00
echo $? > /tmp/return_test.txt
# Clean up
2022-07-12 08:10:45 +00:00
docker-compose down -v --remove-orphans
2022-04-18 20:20:41 +00:00
cd $start_dir
rm -fr $temp_dir