gecko/.ci/run_e2e_tests.sh

11 lines
499 B
Bash
Raw Normal View History

2020-05-31 10:09:29 -07:00
SCRIPTS_PATH=$(cd $(dirname "${BASH_SOURCE[0]}"); pwd)
SRC_PATH=$(dirname "${SCRIPTS_PATH}")
2020-06-20 06:22:55 -07:00
# Build the runnable Gecko docker image
2020-06-19 03:44:28 -07:00
bash "${SRC_PATH}"/scripts/build_image.sh
2020-05-31 10:09:29 -07:00
GECKO_IMAGE=$(docker image ls --format="{{.Repository}}" | head -n 1)
2020-06-20 06:24:02 -07:00
# Turn off GO111MODULE to pull e2e test source code in order to get run script.
2020-06-19 11:50:09 -07:00
GO111MODULE=off go get -t -v github.com/kurtosis-tech/ava-e2e-tests/...
2020-06-19 04:17:35 -07:00
cd "${GOPATH}"/src/github.com/kurtosis-tech/ava-e2e-tests/ || exit
2020-06-19 03:44:28 -07:00
./scripts/full_rebuild_and_run.sh