16 lines
383 B
Bash
Executable File
16 lines
383 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -o errexit
|
|
|
|
mkdir -p target
|
|
|
|
SCRIPT_URL="https://raw.githubusercontent.com/spring-cloud-samples/brewery/master/acceptance-tests/scripts/runDockerAcceptanceTests.sh"
|
|
AT_WHAT_TO_TEST="SLEUTH_STREAM"
|
|
|
|
curl "${SCRIPT_URL}" --output target/runDockerAcceptanceTests.sh
|
|
|
|
cd target
|
|
|
|
chmod +x runDockerAcceptanceTests.sh
|
|
|
|
./runDockerAcceptanceTests.sh -t "${AT_WHAT_TO_TEST}" |