Skip to content

Commit

Permalink
chore: Don't publish nightlies any longer since they are available in…
Browse files Browse the repository at this point in the history
… the compiler
  • Loading branch information
tgodzik committed Jul 11, 2023
1 parent de5c883 commit 55113be
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 30 deletions.
22 changes: 0 additions & 22 deletions .github/workflows/check_scala3_nightly.yml

This file was deleted.

6 changes: 0 additions & 6 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -147,12 +147,6 @@ commands ++= Seq(
Command.single("test-mtags-dyn") { (s, scalaV) =>
crossTestDyn(s, scalaV)
},
// this is one is needed for `.github/workflows/check_scala3_nightly`
Command.single("save-non-published-nightlies") { (s, path) =>
val versions = Scala3NightlyVersions.nonPublishedNightlyVersions
IO.write(file(path), versions.map(_.original).mkString("\n"))
s
},
)

// -Xlint is unusable because of
Expand Down
5 changes: 3 additions & 2 deletions project/V.scala
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,9 @@ object V {
val lsp4j = "org.eclipse.lsp4j" % "org.eclipse.lsp4j" % lsp4jV
val dap4j = "org.eclipse.lsp4j" % "org.eclipse.lsp4j.debug" % lsp4jV

def isNightliesEnabled: Boolean =
sys.env.get("CI").isDefined || sys.env.get("NIGHTLIES").isDefined
// https://github.com/scalameta/metals/issues/5427
def isNightliesEnabled: Boolean = false
// sys.env.get("CI").isDefined || sys.env.get("NIGHTLIES").isDefined

// List of supported Scala versions in SemanticDB. Needs to be manually updated
// for every SemanticDB upgrade.
Expand Down

0 comments on commit 55113be

Please sign in to comment.