From 7c3fd6c5ac4fb2583ea121f89bc84a14431de0a1 Mon Sep 17 00:00:00 2001 From: andrussal Date: Sat, 6 Dec 2025 05:30:26 +0100 Subject: [PATCH] CI bundle: refresh lock before build to match local --- .github/workflows/build-binaries.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/build-binaries.yml b/.github/workflows/build-binaries.yml index 9693ae3..6fa288c 100644 --- a/.github/workflows/build-binaries.yml +++ b/.github/workflows/build-binaries.yml @@ -60,6 +60,10 @@ jobs: git checkout "${NOMOS_NODE_REV}" git reset --hard git clean -fdx + # Align CI with the host build path: refresh dependency lock to latest compatible + # crates (we still pin flate2 below). This mirrors the local script that drops + # Cargo.lock before building. + cargo +nightly-2025-09-14 update # Work around flate2 1.1.6 ambiguity issues by pinning to a fixed release. cargo +nightly-2025-09-14 update -p flate2 --precise 1.1.5 cargo +nightly-2025-09-14 build --all-features --bins