Skip to content

Commit bbd32bc

Browse files
authored
ci : fix clean-up of old logs (#16381)
1 parent 2be72c2 commit bbd32bc

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

ci/run.sh

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@ mkdir -p "$2"
3434
OUT=$(realpath "$1")
3535
MNT=$(realpath "$2")
3636

37-
rm -f "$OUT/*.log"
38-
rm -f "$OUT/*.exit"
39-
rm -f "$OUT/*.md"
37+
rm -f $OUT/*.log
38+
rm -f $OUT/*.exit
39+
rm -f $OUT/*.md
4040

4141
sd=`dirname $0`
4242
cd $sd/../
@@ -607,6 +607,7 @@ if [ -z ${GG_BUILD_LOW_PERF} ]; then
607607
fi
608608

609609
ret=0
610+
610611
test $ret -eq 0 && gg_run ctest_debug
611612
test $ret -eq 0 && gg_run ctest_release
612613

@@ -624,4 +625,6 @@ if [ -z ${GG_BUILD_LOW_PERF} ]; then
624625
test $ret -eq 0 && gg_run ctest_with_model_release
625626
fi
626627

628+
cat $OUT/README.md
629+
627630
exit $ret

0 commit comments

Comments
 (0)