Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
armanbilge committed Sep 14, 2024
1 parent 75f4ec7 commit 86f1841
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,16 @@ ThisBuild / organization := "com.armanbilge"
ThisBuild / organizationName := "Arman Bilge"
ThisBuild / developers += tlGitHubDev("armanbilge", "Arman Bilge")
ThisBuild / startYear := Some(2022)
ThisBuild / tlSonatypeUseLegacyHost := false

ThisBuild / crossScalaVersions := Seq("3.3.3", "2.13.12")

ThisBuild / githubWorkflowJavaVersions := Seq(JavaSpec.temurin("17"))

ThisBuild / githubWorkflowBuild ~= { steps =>
steps.flatMap {
case step @ WorkflowStep.Sbt(List("Test/nativeLink"), _, _, _, _, _, _, _) =>
case step: WorkflowStep.Sbt if step.commands == List("Test/nativeLink") =>
List(WorkflowStep.Sbt(List("compile"), name = Some("Compile")))
case step @ WorkflowStep.Sbt(List("test"), _, _, _, _, _, _, _) => Nil
case step: WorkflowStep.Sbt if step.commands == List("test") => Nil
case step => List(step)
}
}
Expand Down

0 comments on commit 86f1841

Please sign in to comment.