Skip to content

Commit

Permalink
attempt adding coverage builds
Browse files Browse the repository at this point in the history
  • Loading branch information
dothebart committed Feb 11, 2025
1 parent c428606 commit 417c947
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions jenkins/runRTAtest.fish
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ cleanPrepareLockUpdateClear2
TT_init
set -xg RTA_EDITION "C,Cr2"

and maintainerOn
and eval $EDITION
and eval $TEST_SUITE
and setAllLogsToWorkspace
Expand All @@ -15,6 +16,11 @@ if test "$ASAN" = "true"
sanOn
and buildSanFlags "$WORKDIR/work/ArangoDB"
end
if test "$COVERAGE" = "true"
echo "Coverage build"
coverageOn
and buildSanFlags "$WORKDIR/work/ArangoDB"
end
if test "$BUILD_MODE" = "debug"
echo "switching to debug build"
debugMode
Expand Down Expand Up @@ -46,6 +52,10 @@ for f in $matches
echo $f | grep -qv testreport ; and echo "mv $f $WORKSPACE" ; and mv $f $WORKSPACE; or echo "skipping $f"
end

if test "$COVERAGE" = "true"
collectCoverage
end

unlockDirectory

exit $s

0 comments on commit 417c947

Please sign in to comment.