mirror of https://github.com/sbt/sbt.git
Address PR feedback & fix CI
This commit is contained in:
parent
d340ff916e
commit
60b451c3d1
|
|
@ -83,6 +83,7 @@ jobs:
|
|||
ref: 1.10.x
|
||||
path: zinc
|
||||
- uses: graalvm/setup-graalvm@v1
|
||||
if: ${{ matrix.jobtype >= 7 && matrix.jobtype <= 9 }}
|
||||
with:
|
||||
java-version: '23'
|
||||
native-image-musl: 'true'
|
||||
|
|
|
|||
|
|
@ -1198,7 +1198,7 @@ lazy val sbtClientProj = (project in file("client"))
|
|||
s"-H:Name=${target.value / "bin" / "sbtn"}",
|
||||
) ++ (if (isLinux && isArmArchitecture)
|
||||
Seq("-H:PageSize=65536") // Make sure binary runs on kernels with page size set to 4k, 16 and 64k
|
||||
else Nil) ++ (if (isLinux) Seq("--static", "--libc=musl") else Nil),
|
||||
else Nil) ++ (if (isLinux && !isArmArchitecture) Seq("--static", "--libc=musl") else Nil),
|
||||
buildThinClient := {
|
||||
val isFish = Def.spaceDelimited("").parsed.headOption.fold(false)(_ == "--fish")
|
||||
val ext = if (isWin) ".bat" else if (isFish) ".fish" else ".sh"
|
||||
|
|
|
|||
Loading…
Reference in New Issue