(patch) Fixed coverageOff ordering.
All checks were successful
/ Build and Test Library Snapshot (pull_request) Successful in 1m19s

This commit is contained in:
Pat Garrity 2024-04-26 21:02:30 -05:00
parent b9ca2b5b11
commit e34e930c75
Signed by: pfm
GPG key ID: 5CA5D21BAB7F3A76
2 changed files with 4 additions and 3 deletions

View file

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

View file

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