Fixing builds by explicitly disabling coverage. #3

Merged
pfm merged 3 commits from fix-builds into main 2024-04-26 03:25:02 +00:00
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"
else
sbtn clean
sbtn coverageOff
sbtn publish
fi

View file

@ -59,7 +59,7 @@ jobs:
echo "Skipping build/test for 'norelease' commit."
else
sbtn clean
sbtn coverage
sbtn 'set coverageEnabled := true'
sbtn test
sbtn coverageReport
fi
@ -69,6 +69,7 @@ jobs:
echo "Skipping publish for 'norelease' commit."
else
sbtn clean
sbtn coverageOff
sbtn semVerWriteVersionToFile
sbtn publish
fi

View file

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

View file

@ -1,5 +1,10 @@
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 / versionScheme := Some("semver-spec")
ThisBuild / gsProjectName := "gs-hex"