Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions orka/templates/macos-test.pkr.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ variable "xcode_version" {

variable "rust_version" {
type = string
default = "1.82"
default = "1.88"
description = "Rust toolchain version to install via rustup. Matches RUSTC_VERSION in nodejs/node test-macos.yml."
}

Expand Down Expand Up @@ -242,12 +242,12 @@ build {
"${local.homebrew_path}/bin/pipx ensurepath"
]
}
// Install Java 17 for Jenkins.
// Install Java 25 for Jenkins.
provisioner "shell" {
inline = [
"echo 'Installing JRE...'",
"eval \"$(${local.homebrew_path}/bin/brew shellenv)\"",
"${local.homebrew_path}/bin/brew install --cask temurin@17",
"${local.homebrew_path}/bin/brew install --cask temurin@25",
]
}
// Install Rust via rustup (matches nodejs/node test-macos.yml RUSTC_VERSION).
Expand Down
Loading