mirror of
https://github.com/enso-org/enso.git
synced 2024-11-27 16:16:21 +03:00
39 lines
1.0 KiB
Scala
39 lines
1.0 KiB
Scala
import sbt._
|
|
|
|
import scala.sys.process._
|
|
|
|
object BuildInfo {
|
|
def writeBuildInfoFile(
|
|
file: File,
|
|
ensoVersion: String,
|
|
scalacVersion: String,
|
|
graalVersion: String
|
|
): Seq[File] = {
|
|
val gitHash = ("git rev-parse HEAD" !!).trim
|
|
val gitBranch = ("git rev-parse --abbrev-ref HEAD" !!).trim
|
|
val isDirty = !("git status --porcelain" !!).trim.isEmpty
|
|
val latestCommitDate = ("git log HEAD -1 --format=%cd" !!).trim
|
|
|
|
val fileContents =
|
|
s"""
|
|
|package buildinfo
|
|
|
|
|
|object Info {
|
|
|
|
|
| // Versions
|
|
| val ensoVersion = "$ensoVersion"
|
|
| val scalacVersion = "$scalacVersion"
|
|
| val graalVersion = "$graalVersion"
|
|
|
|
|
| // Git Info
|
|
| val commit = "$gitHash"
|
|
| val branch = "$gitBranch"
|
|
| val isDirty = $isDirty
|
|
| val latestCommitDate = "$latestCommitDate"
|
|
|}
|
|
|""".stripMargin
|
|
IO.write(file, fileContents)
|
|
Seq(file)
|
|
}
|
|
}
|