@@ -53,7 +53,6 @@ function performance_to_summary() {
5353# This job type defines the following env variables
5454function performance_env() {
5555 env=(
56- RUNCOUNT
5756 EXITCODE
5857 )
5958 echo " ${env[@]} "
@@ -165,20 +164,21 @@ function performance_run() {
165164 runoutput=" ${SHAREDDIR} /output/logs/run.log"
166165
167166 # Ensure run log directory exists and is writable so 'tee' can create the file.
168- mkdir -p " $( dirname " ${runoutput} " ) "
169- chmod -R 2777 " ${SHAREDDIR} /output/logs" || true
167+ # mkdir -p "$(dirname "${runoutput}")"
168+ # chmod -R 2777 "${SHAREDDIR}/output/logs" || true
170169
171170 # Calculate the command to run. The function will return the command in the passed array.
172171 local jmeterruncmd=
173172 performance_main_command jmeterruncmd
174173
175- echo " Running performance command: ${jmeterruncmd[*]} "
176- echo " >>> Performance run at $( date) <<<"
174+ # echo "Running performance command: ${jmeterruncmd[*]}"
177175 local dockerrunargs=
178176 docker-jmeter_run_args dockerrunargs
179177
180- echo " ${dockerrunargs[@]} "
181- echo docker run ${dockerrunargs[@]} ${jmeterruncmd[@]}
178+ # echo "${dockerrunargs[@]}"
179+ # echo docker run ${dockerrunargs[@]} ${jmeterruncmd[@]}
180+
181+ echo " >>> Performance run at $( date) <<<"
182182 docker run " ${dockerrunargs[@]} " ${jmeterruncmd[@]} | tee " ${runoutput} "
183183 EXITCODE=$?
184184
@@ -213,6 +213,7 @@ function performance_teardown() {
213213 return 1
214214 fi
215215
216+ # Format the rundata.php into a more usable JSON format, using the provided PHP script.
216217 docker run \
217218 -v " ${DATADIR} :/shared" \
218219 -w /shared \
0 commit comments