20 lines
473 B
Bash
Executable File
20 lines
473 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -o errexit
|
|
|
|
mkdir -p target
|
|
|
|
SCRIPT_URL="https://raw.githubusercontent.com/spring-cloud-samples/brewery/master/runAcceptanceTests.sh"
|
|
AT_WHAT_TO_TEST="SLEUTH_STREAM"
|
|
|
|
cd target
|
|
|
|
curl "${SCRIPT_URL}" --output runAcceptanceTests.sh
|
|
|
|
chmod +x runAcceptanceTests.sh
|
|
|
|
echo "Killing all running apps"
|
|
./runAcceptanceTests.sh -t "${AT_WHAT_TO_TEST}" -n
|
|
|
|
./runAcceptanceTests.sh --kafka --whattotest "${AT_WHAT_TO_TEST}" --killattheend -cli "1.3.0.BUILD-SNAPSHOT"
|