You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
585 B
24 lines
585 B
#!/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="EUREKA" |
|
|
|
cd target |
|
|
|
curl "${SCRIPT_URL}" --output runDockerAcceptanceTests.sh |
|
|
|
chmod +x runDockerAcceptanceTests.sh |
|
|
|
./runDockerAcceptanceTests.sh -t "${AT_WHAT_TO_TEST}" |
|
|
|
SCRIPT_URL="https://raw.githubusercontent.com/spring-cloud-samples/tests/master/scripts/runTests.sh" |
|
|
|
curl "${SCRIPT_URL}" --output runIntegrationTests.sh |
|
|
|
chmod +x runIntegrationTests.sh |
|
|
|
./runIntegrationTests.sh
|
|
|