File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 1515 script :
1616 - export ARTIFACTS_DIR="$(pwd)/reports" && mkdir -p "${ARTIFACTS_DIR}"
1717 - git config --global url."https://gitlab-ci-token:${CI_JOB_TOKEN}@gitlab.ddbuild.io/DataDog/".insteadOf "https://github.com/DataDog/"
18- - git clone --branch dd-trace-java/tracer-benchmarks https://github.com/DataDog/benchmarking-platform.git /platform && cd /platform
18+ - git clone --branch dd-trace-java/tracer-benchmarks-parallel https://github.com/DataDog/benchmarking-platform.git /platform && cd /platform
1919 artifacts :
2020 name : " reports"
2121 paths :
Original file line number Diff line number Diff line change @@ -33,14 +33,16 @@ for app in *; do
3333 # Using profiler variants for healthcheck as they are the slowest
3434 if [ " ${app} " == " petclinic" ]; then
3535 HEALTHCHECK_URL=http://localhost:8082
36+ REPETITIONS_COUNT=5
3637 elif [ " ${app} " == " insecure-bank" ]; then
3738 HEALTHCHECK_URL=http://localhost:8082/login
39+ REPETITIONS_COUNT=2
3840 else
3941 echo " Unknown app ${app} "
4042 exit 1
4143 fi
4244
43- for i in $( seq 1 2 ) ; do
45+ for i in $( seq 1 $REPETITIONS_COUNT ) ; do
4446 bash -c " ${UTILS_DIR} /../${type} /${app} /start-servers.sh" &
4547 (
4648 cd ${app} &&
You can’t perform that action at this time.
0 commit comments