Fix macos/amd64 image builds (#1322)

This commit is contained in:
Daniel Chao
2025-11-17 12:16:28 -08:00
committed by GitHub
parent a2cc70ae37
commit bc5d675b6e
8 changed files with 389 additions and 8 deletions

13
.github/index.pkl vendored
View File

@@ -53,14 +53,11 @@ local buildNativeJobs: Mapping<String, BuildNativeJob> = new {
for (_project in List("pkl-cli", "pkl-doc")) {
for (_arch in List("amd64", "aarch64")) {
for (_os in List("macOS", "linux")) {
// TODO re-enable macOS/amd64 builds
when (!(_os == "macOS" && _arch == "amd64")) {
["\(_project)-\(_os)-\(_arch)-\(_dist)"] {
arch = _arch
os = _os
isRelease = _dist == "release"
project = _project
}
["\(_project)-\(_os)-\(_arch)-\(_dist)"] {
arch = _arch
os = _os
isRelease = _dist == "release"
project = _project
}
}
}