537b8c7ddd
* integration testing scripts some scripts for integration testing and a docker file for an action. Still need to figure out how to properly run a more realistic version in ci. * update * changes * db shutdown racecondition fix * changes per pr * changes per code review * fix testing * add shutdowncalled bool to db
14 lines
333 B
Bash
14 lines
333 B
Bash
#!/bin/bash
|
|
#
|
|
# cicd_integration_test_runner.sh
|
|
#
|
|
# simple script to kick off herald and call the integration testing
|
|
# script
|
|
#
|
|
# N.B. this currently just works locally until we figure a way to have
|
|
# the data in the cicd environment.
|
|
#
|
|
|
|
./herald serve --db-path /mnt/sdb1/wallet_server/_data/lbry-rocksdb &
|
|
|
|
./integration_tests.sh
|