diff --git a/scripts/travis/configure_dev.sh b/scripts/travis/configure_dev.sh index e8ea08439b..06282f992d 100755 --- a/scripts/travis/configure_dev.sh +++ b/scripts/travis/configure_dev.sh @@ -30,7 +30,7 @@ if [ "${OS}" = "linux" ]; then fi set -e sudo apt-get update -y - sudo apt-get -y install sqlite3 + sudo apt-get -y install sqlite3 python3-venv libffi-dev libssl-dev fi if [[ "${ARCH}" = "arm" ]]; then sudo sh -c 'echo "CONF_SWAPSIZE=1024" > /etc/dphys-swapfile; dphys-swapfile setup; dphys-swapfile swapon' diff --git a/scripts/travis/integration_test.sh b/scripts/travis/integration_test.sh index 462298dcf9..a26d14a53c 100755 --- a/scripts/travis/integration_test.sh +++ b/scripts/travis/integration_test.sh @@ -14,11 +14,15 @@ export BUILD_TYPE="integration" if [ "${USER}" = "travis" ]; then # we're running on a travis machine "${SCRIPTPATH}/build.sh" --make_debug + GOPATHBIN=$(go env GOPATH)/bin + export PATH=$PATH:$GOPATHBIN "${SCRIPTPATH}/travis_wait.sh" 90 "${SCRIPTPATH}/test.sh" else # we're running on an ephermal build machine "${SCRIPTPATH}/build.sh" --make_debug + GOPATHBIN=$(go env GOPATH)/bin + export PATH=$PATH:$GOPATHBIN "${SCRIPTPATH}/test.sh" fi -echo "Integration test completed successfully" \ No newline at end of file +echo "Integration test completed successfully"