enso/project/Editions.scala
Pavel Marek d0fdeca6df
Refactor Table_Tests to the builder API (#8622)
Refactor `test/Table_Test` to the builder API. The builder API is in a new library called `Test_New` that is alongside the old `Test` library. There will be follow-up PRs that will migrate the rest of the tests. Meanwhile, let's keep these two libraries, and merge them after the last PR.

# Important Notes
- For a brief introduction into the new API, see **Prototype 1** section in https://github.com/enso-org/enso/pull/8622#issuecomment-1889706168
- When executing all the tests, the behavior should be the same as with the old library. With the only exception that if `ENSO_TEST_ANSI_COLORS` env var is set, the output is more colorful than it used to be.
2024-01-26 12:08:24 +00:00

92 lines
2.7 KiB
Scala

import sbt._
object Editions {
/** List of libraries that are shipped with the engine and reside in the
* engine repository.
*
* They currently all share the version number.
*/
val standardLibraries: Seq[String] = Seq(
"Standard.Base",
"Standard.Test",
"Standard.Test_New",
"Standard.Table",
"Standard.Database",
"Standard.AWS",
"Standard.Image",
"Standard.Geo",
"Standard.Visualization",
"Standard.Examples",
"Standard.Searcher"
)
case class ContribLibrary(name: String, version: String)
/** A list of additional libraries from external sources that are published in
* the main repository and should be available in the default edition.
*/
val contribLibraries: Seq[ContribLibrary] = Seq()
/** The URL to the main library repository. */
val mainLibraryRepositoryUrl = "https://libraries.release.enso.org/libraries"
private val extension = ".yaml"
/** Generates a base edition file for the engine release that contains the
* Standard library and is associated with the current Enso version.
*/
def writeEditionConfig(
editionsRoot: File,
ensoVersion: String,
editionName: String,
libraryVersion: String,
log: Logger
): Unit = {
IO.createDirectory(editionsRoot)
val edition = editionsRoot / (editionName + extension)
for (file <- IO.listFiles(editionsRoot)) {
if (file.getName != edition.getName) {
IO.delete(file)
log.warn(s"Removed spurious file in editions directory: $file")
}
}
val editionConfigContent = {
val standardLibrariesConfigs = standardLibraries.map { libName =>
s""" - name: $libName
| repository: main
| version: $libraryVersion""".stripMargin
}
val contribLibrariesConfigs = contribLibraries.map {
case ContribLibrary(name, version) =>
s""" - name: $name
| repository: main
| version: $version""".stripMargin
}
val librariesConfigs = standardLibrariesConfigs ++ contribLibrariesConfigs
val editionConfig =
s"""engine-version: $ensoVersion
|repositories:
| - name: main
| url: $mainLibraryRepositoryUrl
|libraries:
|${librariesConfigs.mkString("\n")}
|""".stripMargin
editionConfig
}
val currentContent = if (edition.exists()) Some(IO.read(edition)) else None
if (currentContent.contains(editionConfigContent)) {
log.debug(s"Edition config [$edition] is already up-to-date.")
} else {
IO.write(edition, editionConfigContent)
log.info(s"Written edition config to [$edition].")
}
}
}