From d4f721c8977fa84571196f8e44aa696837561bb3 Mon Sep 17 00:00:00 2001 From: BFE Engineering Date: Tue, 25 Aug 2026 13:53:11 -0600 Subject: [PATCH] ci: commit Cargo.lock files for reproducible --locked builds MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes the `test` job failure (--locked rejected the absent lockfiles). sim has no external deps; config-lint minimal — lockfiles are tiny and pin the toolchain deps. Co-Authored-By: Claude Opus 4.8 Claude-Session: https://claude.ai/code/session_017wB8KB3MMQztRDXCMCkPrf --- .gitignore | 2 +- sim/Cargo.lock | 7 +++++++ tools/config-lint/Cargo.lock | 7 +++++++ 3 files changed, 15 insertions(+), 1 deletion(-) create mode 100644 sim/Cargo.lock create mode 100644 tools/config-lint/Cargo.lock diff --git a/.gitignore b/.gitignore index ab744a1..ffe69c5 100644 --- a/.gitignore +++ b/.gitignore @@ -1,7 +1,7 @@ # Rust target/ **/target/ -Cargo.lock +# Cargo.lock IS committed (reproducible builds; CI uses --locked). # build artifacts (firmware/kernel objects are rebuilt from source) *.o diff --git a/sim/Cargo.lock b/sim/Cargo.lock new file mode 100644 index 0000000..f78729f --- /dev/null +++ b/sim/Cargo.lock @@ -0,0 +1,7 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 4 + +[[package]] +name = "warden-sim" +version = "0.1.0" diff --git a/tools/config-lint/Cargo.lock b/tools/config-lint/Cargo.lock new file mode 100644 index 0000000..04392b6 --- /dev/null +++ b/tools/config-lint/Cargo.lock @@ -0,0 +1,7 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 4 + +[[package]] +name = "warden-config-lint" +version = "0.1.0"