File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -6,8 +6,10 @@ if [ "$RUN_E2E_TESTS" != "true" ]; then
66 echo " Skipping end to end tests."
77else
88 echo " Running end to end tests..."
9- wget https://github.com/segmentio/library-e2e-tester/releases/download/0.2.1/tester_linux_amd64
10- chmod +x tester_linux_amd64
11- ./tester_linux_amd64 -segment-write-key=" $SEGMENT_WRITE_KEY " -webhook-auth-username=" $WEBHOOK_AUTH_USERNAME " -webhook-bucket=" $WEBHOOK_BUCKET " -path=' .buildscript/cli.sh'
9+ exe=" tester_linux_amd64"
10+ rm -f ${exe}
11+ wget -O - https://raw.githubusercontent.com/segmentio/library-e2e-tester/master/.buildscript/get-latest-version.sh | bash -s ${exe}
12+ chmod +x ${exe}
13+ ./${exe} -segment-write-key=" $SEGMENT_WRITE_KEY " -webhook-auth-username=" $WEBHOOK_AUTH_USERNAME " -webhook-bucket=" $WEBHOOK_BUCKET " -path=' .buildscript/cli.sh'
1214 echo " End to end tests completed!"
1315fi
You can’t perform that action at this time.
0 commit comments