2022-09-21 11:21:13 +02:00
|
|
|
#!/bin/bash
|
|
|
|
#
|
|
|
|
# cicd_integration_test_runner.sh
|
|
|
|
#
|
|
|
|
# simple script to kick off herald and call the integration testing
|
|
|
|
# script
|
|
|
|
#
|
2022-09-23 15:51:25 +02:00
|
|
|
# N.B. this currently just works locally until we figure a way to have
|
|
|
|
# the data in the cicd environment.
|
|
|
|
#
|
2022-09-21 11:21:13 +02:00
|
|
|
|
2022-09-23 15:51:25 +02:00
|
|
|
./herald serve --db-path /mnt/sdb1/wallet_server/_data/lbry-rocksdb &
|
2022-09-21 11:21:13 +02:00
|
|
|
|
2022-09-23 15:51:25 +02:00
|
|
|
./integration_tests.sh
|