Fixing builds by explicitly disabling coverage. (#3)
All checks were successful
/ Build and Release Library (push) Successful in 1m1s
All checks were successful
/ Build and Release Library (push) Successful in 1m1s
Reviewed-on: #3
This commit is contained in:
parent
bbe1c4ad36
commit
bea436cfb3
4 changed files with 9 additions and 2 deletions
|
@ -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
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -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"
|
||||||
|
|
|
@ -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"
|
||||||
|
|
Loading…
Add table
Reference in a new issue