Skip to content
Merged
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
8 changes: 5 additions & 3 deletions .dagger/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,12 @@ import (
)

// Pinned cross-compile toolchain. Bumped intentionally.
//
// cargo-zigbuild 0.23.0 needs rustc 1.88+, so rustImage can't stay at 1.85.
const (
rustImage = "rust:1.85-bookworm"
rustImage = "rust:1.88-bookworm"
zigVersion = "0.13.0"
cargoZigbuildVersion = "0.19.8"
cargoZigbuildVersion = "0.23.0"
Comment thread
greptile-apps[bot] marked this conversation as resolved.
)

// Tapesctl is the main module for the tapesctl CI/CD pipeline.
Expand Down Expand Up @@ -101,7 +103,7 @@ rm /tmp/zig.tar.xz`
WithMountedCache("/src/target", cargoTarget).
// Materialize the toolchain declared in rust-toolchain.toml (channel =
// stable) BEFORE adding targets — otherwise `rustup target add` targets
// the image's default 1.85 toolchain while cargo builds under stable,
// the image's default 1.88 toolchain while cargo builds under stable,
// and the cross-target std is missing ("can't find crate for std").
WithExec([]string{"rustup", "show"}).
WithExec([]string{"rustup", "target", "add",
Expand Down
Loading