Fixing builds by explicitly disabling coverage.
All checks were successful
/ Build and Test Library Snapshot (pull_request) Successful in 1m19s
All checks were successful
/ Build and Test Library Snapshot (pull_request) Successful in 1m19s
This commit is contained in:
parent
bbe1c4ad36
commit
523be2ac39
3 changed files with 8 additions and 2 deletions
|
@ -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 'set coverageEnabled := false'
|
||||
sbtn semVerWriteVersionToFile
|
||||
sbtn publish
|
||||
fi
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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"
|
||||
|
|
Loading…
Add table
Reference in a new issue