We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 01d4de0 commit 19e3b8eCopy full SHA for 19e3b8e
Dockerfile
@@ -14,7 +14,7 @@ FROM maven:3.9.9-eclipse-temurin-21-alpine
14
WORKDIR /opt/test-runner
15
16
RUN apk update && \
17
- apk add --no-cache jq && \
+ apk add --no-cache --upgrade jq sed grep && \
18
rm -rf /var/cache/apk/*
19
20
# Copy resources
bin/run.sh
@@ -103,7 +103,7 @@ else
103
104
# Manually add colors to the output to help scanning the output for errors
105
colorized_test_output=$(echo "${sanitized_output}" | \
106
- GREP_COLOR='01;31' grep --color=always -E -e '^\[ERROR\].+$|$')
+ GREP_COLORS='mt=01;31' grep --color=always -E -e '^\[ERROR\].+$|$')
107
108
jq -n --arg output "${colorized_test_output}" '{version: 1, status: "fail", message: $output}' > ${results_file}
109
fi
0 commit comments