We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c1a5df2 commit ca3bbdfCopy full SHA for ca3bbdf
1 file changed
community-build/src/scala/dotty/communitybuild/projects.scala
@@ -84,7 +84,8 @@ final case class SbtCommunityProject(
84
extraSbtArgs: List[String] = Nil,
85
sbtPublishCommand: String = null,
86
sbtDocCommand: String = null,
87
- scalacOptions: List[String] = SbtCommunityProject.scalacOptions
+ scalacOptions: List[String] = SbtCommunityProject.scalacOptions,
88
+ override val environment: Map[String, String] = Map.empty,
89
) extends CommunityProject:
90
override val binaryName: String = "sbt"
91
@@ -637,6 +638,7 @@ object projects:
637
638
).mkString("; "),
639
sbtPublishCommand = "coreJVM/publishLocal; coreJS/publishLocal",
640
scalacOptions = SbtCommunityProject.scalacOptions.filter(_ != "-Wsafe-init"),
641
+ environment = Map("GITHUB_ACTIONS" -> "false"),
642
)
643
644
lazy val libretto = SbtCommunityProject(
0 commit comments