Skip to content

Revert "re-enable sbt plugins" #741

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 24, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ jobs:
- name: Setup sbt
uses: sbt/setup-sbt@v1

- name: Check that workflows are up to date
run: sbt -J-Xmx2G '++ ${{ matrix.scala }}' githubWorkflowCheck
#- name: Check that workflows are up to date
# run: sbt -J-Xmx2G '++ ${{ matrix.scala }}' githubWorkflowCheck

- name: Build project
run: sbt -J-Xmx2G '++ ${{ matrix.scala }}' test
Expand Down Expand Up @@ -137,4 +137,4 @@ jobs:
SONATYPE_PASSWORD: ${{ secrets.CENTRAL_DEPLOY_PASSWORD }}
SONATYPE_USERNAME: ${{ secrets.CENTRAL_DEPLOY_USERNAME }}
PGP_SECRET: ${{ secrets.PGP_SECRET }}
run: sbt -J-Xmx2G ci-release
run: sbt -J-Xmx2G +publish
4 changes: 3 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import sbtghactions.JavaSpec.Distribution.Zulu
// import sbtghactions.JavaSpec.Distribution.Zulu
import com.github.sbt.sbom._
import xerial.sbt.Sonatype.sonatypeCentralHost

Expand Down Expand Up @@ -123,6 +123,7 @@ Compile / resourceGenerators += Def.task {

Test / parallelExecution := false

/*
ThisBuild / githubWorkflowSbtCommand := "sbt -J-Xmx2G"
ThisBuild / githubWorkflowJavaVersions := Seq(JavaSpec(Zulu, "17"), JavaSpec(Zulu, "21"))
ThisBuild / githubWorkflowTargetBranches := Seq("3.x")
Expand All @@ -145,6 +146,7 @@ ThisBuild / githubWorkflowPublish := Seq(
)
)
)
*/

enablePlugins(ReproducibleBuildsPlugin)
// site
Expand Down
4 changes: 2 additions & 2 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ addSbtPlugin("com.typesafe.sbt" % "sbt-site" % "1.4.0")

addSbtPlugin("com.typesafe" % "sbt-mima-plugin" % "1.1.4")

addSbtPlugin("com.github.sbt" % "sbt-github-actions" % "0.25.0")
// addSbtPlugin("com.github.sbt" % "sbt-github-actions" % "0.25.0")

addSbtPlugin("com.github.sbt" % "sbt-pgp" % "2.3.1")
addSbtPlugin("com.github.sbt" % "sbt-git" % "2.1.0")
addSbtPlugin("com.github.sbt" % "sbt-dynver" % "5.1.0")
addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "3.12.2")
addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.11.0")
// addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.11.0-RC3")

addSbtPlugin("net.bzzt" % "sbt-reproducible-builds" % "0.32")

Expand Down