Skip to content

Commit

Permalink
Fix garbled jenkins output (#539)
Browse files Browse the repository at this point in the history
  • Loading branch information
rtburns-jpl authored and GitHub Enterprise committed Aug 18, 2020
1 parent 5151f15 commit f79785e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .ci/images/centos/run-isce-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,13 @@ if [ "$MEMCHECK" = "0" ]; then
docker run --name ${CONTAINERTAG} ${IMAGE}:${TAG} /bin/bash -ex -c \
'source /opt/docker/bin/entrypoint_source \
&& cd build \
&& ctest -j `nproc` --nocompress-output --output-on-failure -T Test || true \
&& ctest -j `nproc` --no-compress-output --output-on-failure -T Test || true \
&& cp Testing/$(head -1 Testing/TAG)/Test.xml .'
else
docker run --name ${CONTAINERTAG} ${IMAGE}:${TAG} /bin/bash -ex -c \
'source /opt/docker/bin/entrypoint_source \
&& cd build \
&& ctest --nocompress-output --output-on-failure -T Test || true \
&& ctest --no-compress-output --output-on-failure -T Test || true \
&& cp Testing/$(head -1 Testing/TAG)/Test.xml . \
&& ctest --no-compress-output --output-on-failure --timeout 10000 -T MemCheck \
-E "(iscecuda.core.stream|backproject|workflows)" \
Expand Down
2 changes: 1 addition & 1 deletion .ci/jenkins/develop-conda.sh
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ $DOCKER run --rm \
$DOCKER_RUN_ARGS \
--volumes-from $CONTAINER \
$IMAGE_ID/tester bash -ic \
"ctest -j`nproc` -T Test --verbose || true && \
"ctest --no-compress-output -j`nproc` -T Test --verbose || true && \
cp Testing/*/Test.xml ."


Expand Down
2 changes: 1 addition & 1 deletion .ci/jenkins/develop.sh
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ $DOCKER run --rm \
$DOCKER run --rm \
--volumes-from $CONTAINER \
isce-ci/tester bash -c \
"ctest -j`nproc` -T Test --verbose || true && \
"ctest --no-compress-output -j`nproc` -T Test --verbose || true && \
cp Testing/*/Test.xml ."


Expand Down

0 comments on commit f79785e

Please sign in to comment.