File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ FROM maven:3.9.9-eclipse-temurin-21-alpine
14
14
WORKDIR /opt/test-runner
15
15
16
16
RUN apk update && \
17
- apk add --no-cache jq && \
17
+ apk add --no-cache --upgrade jq sed grep && \
18
18
rm -rf /var/cache/apk/*
19
19
20
20
# Copy resources
Original file line number Diff line number Diff line change 103
103
104
104
# Manually add colors to the output to help scanning the output for errors
105
105
colorized_test_output=$( echo " ${sanitized_output} " | \
106
- GREP_COLOR= ' 01;31' grep --color=always -E -e ' ^\[ERROR\].+$|$' )
106
+ GREP_COLORS= ' mt= 01;31' grep --color=always -E -e ' ^\[ERROR\].+$|$' )
107
107
108
108
jq -n --arg output " ${colorized_test_output} " ' {version: 1, status: "fail", message: $output}' > ${results_file}
109
109
fi
You can’t perform that action at this time.
0 commit comments