diff options
author | Martin Matuska <martin@matuska.org> | 2019-01-14 15:28:27 +0100 |
---|---|---|
committer | Martin Matuska <martin@matuska.org> | 2019-01-14 15:28:27 +0100 |
commit | 2d2770e58fece2937c42c1a27dd216989a9a7048 (patch) | |
tree | 647649d2e679153edb85120ce814de978a2c8335 /build | |
parent | 1d2028afff040b63f42e64932b2211a345d6d3ea (diff) | |
download | libarchive-2d2770e58fece2937c42c1a27dd216989a9a7048.tar.gz |
build/ci_build.sh: print failed test logs to stdout
Diffstat (limited to 'build')
-rwxr-xr-x | build/ci_build.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/build/ci_build.sh b/build/ci_build.sh index 65e5ceb5..5651c02d 100755 --- a/build/ci_build.sh +++ b/build/ci_build.sh @@ -99,6 +99,7 @@ for action in ${ACTIONS}; do ;; esac RET="$?" + find /tmp -path '*_test.*' -name '*.log' -print -exec cat {} \; ;; esac if [ "${RET}" != "0" ]; then |