Fixing builds by explicitly disabling coverage.
All checks were successful
/ Build and Test Library Snapshot (pull_request) Successful in 1m19s

This commit is contained in:
Pat Garrity 2024-04-25 22:20:20 -05:00
parent bbe1c4ad36
commit 523be2ac39
Signed by: pfm
GPG key ID: 5CA5D21BAB7F3A76
3 changed files with 8 additions and 2 deletions

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 'set coverageEnabled := false'
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"