We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 461e807 commit 8322cdbCopy full SHA for 8322cdb
1 file changed
src/ci/docker/scripts/cmake.sh
@@ -5,16 +5,16 @@ hide_output() {
5
set +x
6
on_err="
7
echo ERROR: An error was encountered with the build.
8
-cat /tmp/build.log
+cat /tmp/cmake_build.log
9
exit 1
10
"
11
trap "$on_err" ERR
12
bash -c "while true; do sleep 30; echo \$(date) - building ...; done" &
13
PING_LOOP_PID=$!
14
- "$@" &> /tmp/build.log
+ "$@" &> /tmp/cmake_build.log
15
trap - ERR
16
kill $PING_LOOP_PID
17
- rm /tmp/build.log
+ rm /tmp/cmake_build.log
18
set -x
19
}
20
0 commit comments