Fixing builds by explicitly disabling coverage. (#3)
All checks were successful
/ Build and Release Library (push) Successful in 1m1s

Reviewed-on: #3
This commit is contained in:
Pat Garrity 2024-04-26 03:25:02 +00:00
parent bbe1c4ad36
commit bea436cfb3
4 changed files with 9 additions and 2 deletions

View file

@ -62,5 +62,6 @@ jobs:
echo "Skipping publish due to GS_RELEASE_TYPE=norelease" echo "Skipping publish due to GS_RELEASE_TYPE=norelease"
else else
sbtn clean sbtn clean
sbtn coverageOff
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 coverage sbtn 'set coverageEnabled := true'
sbtn test sbtn test
sbtn coverageReport sbtn coverageReport
fi fi
@ -69,6 +69,7 @@ jobs:
echo "Skipping publish for 'norelease' commit." echo "Skipping publish for 'norelease' commit."
else else
sbtn clean sbtn clean
sbtn coverageOff
sbtn semVerWriteVersionToFile sbtn semVerWriteVersionToFile
sbtn publish sbtn publish
fi fi

View file

@ -19,7 +19,7 @@ This artifact is available in the Garrity Software Maven repository.
```scala ```scala
externalResolvers += externalResolvers +=
"Garrity Software Releases" at "https://maven.garrity.co/releases" "Garrity Software Releases" at "https://maven.garrity.co/gs"
val GsHex: ModuleID = val GsHex: ModuleID =
"gs" %% "gs-hex-v0" % "$VERSION" "gs" %% "gs-hex-v0" % "$VERSION"

View file

@ -1,5 +1,10 @@
val scala3: String = "3.4.1" val scala3: String = "3.4.1"
externalResolvers := Seq(
"Garrity Software Mirror" at "https://maven.garrity.co/releases",
"Garrity Software Releases" at "https://maven.garrity.co/gs"
)
ThisBuild / scalaVersion := scala3 ThisBuild / scalaVersion := scala3
ThisBuild / versionScheme := Some("semver-spec") ThisBuild / versionScheme := Some("semver-spec")
ThisBuild / gsProjectName := "gs-hex" ThisBuild / gsProjectName := "gs-hex"