(patch) Fixed coverageOff ordering. #5

Merged
pfm merged 1 commit from another-version-bump into main 2024-04-27 02:04:12 +00:00
2 changed files with 4 additions and 3 deletions

View file

@ -61,7 +61,8 @@ jobs:
if [ "${{ env.GS_RELEASE_TYPE }}" = "norelease" ]; then
echo "Skipping publish due to GS_RELEASE_TYPE=norelease"
else
sbtn clean
sbtn coverageOff
sbtn clean
sbtn compile
sbtn publish
fi

View file

@ -59,7 +59,7 @@ jobs:
echo "Skipping build/test for 'norelease' commit."
else
sbtn clean
sbtn 'set coverageEnabled := true'
sbtn coverage
sbtn test
sbtn coverageReport
fi
@ -68,8 +68,8 @@ jobs:
if [ "${{ env.GS_RELEASE_TYPE }}" = "norelease" ]; then
echo "Skipping publish for 'norelease' commit."
else
sbtn clean
sbtn coverageOff
sbtn clean
sbtn semVerWriteVersionToFile
sbtn publish
fi