Files
spring-cloud-sleuth/scripts/runJmeterBenchmarks.sh
Marcin Grzejszczak 2f7cf78614 Applied checkstyle
2019-02-07 16:41:59 +01:00

10 lines
394 B
Bash
Executable File

#!/bin/bash
echo "Killing the remaining apps - if something went wrong previously"
pkill -f SleuthBenchmarkingSpringApp || echo "No apps to kill"
echo "Running JMeter Benchmarks"
./mvnw clean verify --projects benchmarks --also-make -Pbenchmarks,jmeter
echo "Killing the remaining apps - if something went wrong after the tests"
pkill -f SleuthBenchmarkingSpringApp || echo "No apps to kill"