nixbot

builds
unpackPhase
1unpacking source archive /nix/store/qdgpn1fj34jyibxm2by63j213vahs6hf-source2source root is source
patchPhase
3Executing configureCargoCommonVars4decompressing cargo artifacts from /nix/store/9jkw089y3gk2zsklq3xz6dag6ziz7nrw-tribuchet-deps-0.1.0/target.tar.zst to target
configurePhase
5will append /nix/var/nix/builds/nix-97535-1385092864/source/.cargo-home/config.toml with contents of /nix/store/gra8445471v6fgmviqah0mkwl12v9kn3-vendor-cargo-deps/config.toml6default configurePhase, nothing to do
buildPhase
7+++ command cargo --version8cargo 1.97.0 (c980f4866 2026-06-30)9+++ command cargo build --release --message-format json-render-diagnostics --locked10 Compiling sandbox-proto v0.1.0 (/nix/var/nix/builds/nix-97535-1385092864/source/crates/sandbox-proto)11 Compiling tribuchet v0.1.0 (/nix/var/nix/builds/nix-97535-1385092864/source/crates/tribuchet)12warning: field `agent_uid_base` is never read13 --> crates/tribuchet/src/config.rs:207:914 |15140 | pub struct WorkerConfig {16 | ------------ field in this struct17...18207 | pub agent_uid_base: Option<u32>,19 | ^^^^^^^^^^^^^^20 |21 = note: `WorkerConfig` has a derived impl for the trait `Debug`, but this is intentionally ignored during dead code analysis22 = note: `#[warn(dead_code)]` (part of `#[warn(unused)]`) on by default2324warning: fields `sandbox_bin_sh`, `fod_isolation`, and `fod_network` are never read25 --> crates/tribuchet/src/worker.rs:63:526 |2761 | struct WorkerCtx {28 | --------- fields in this struct2962 | state_dir: PathBuf,3063 | sandbox_bin_sh: Option<PathBuf>,31 | ^^^^^^^^^^^^^^32...3377 | fod_isolation: bool,34 | ^^^^^^^^^^^^^3578 | /// Flow policy for that network, from the fod-network setting.3679 | fod_network: crate::netpolicy::NetPolicy,37 | ^^^^^^^^^^^3839warning: field `uid_base` is never read40 --> crates/tribuchet/src/worker/agent.rs:116:941 |42106 | pub struct Options {43 | ------- field in this struct44...45116 | pub uid_base: Option<u32>,46 | ^^^^^^^^4748warning: variants `Step`, `SendSpec`, and `UnknownBinfmt` are never constructed49 --> crates/tribuchet/src/worker/sandbox.rs:147:550 |51143 | pub enum Error {52 | ----- variants in this enum53...54147 | Step {55 | ^^^^56...57153 | SendSpec(#[source] serde_json::Error),58 | ^^^^^^^^59154 | #[error("no binfmt magic known for system {0}")]60155 | UnknownBinfmt(String),61 | ^^^^^^^^^^^^^62 |63 = note: `Error` has a derived impl for the trait `Debug`, but this is intentionally ignored during dead code analysis6465warning: function `step` is never used66 --> crates/tribuchet/src/worker/sandbox.rs:158:467 |68158 | fn step<E: Into<std::io::Error>>(step: impl Into<String>) -> impl FnOnce(E) -> Error {69 | ^^^^7071warning: `tribuchet` (bin "tribuchet") generated 5 warnings72 Finished `release` profile [optimized] target(s) in 17.21s73searching for bins/libs to install from cargo build log at cargoBuildLogixmz.json74installing /nix/var/nix/builds/nix-97535-1385092864/source/target/release/tribuchet in postBuildInstallFromCargoBuildLogOutTempipz/bin75searching for bins/libs complete
checkPhase
76+++ command cargo test --release --locked -- --skip=worker::agents::tests::seatbelt_profile_confines_the_builder77 Compiling sandbox-proto v0.1.0 (/nix/var/nix/builds/nix-97535-1385092864/source/crates/sandbox-proto)78 Compiling tribuchet v0.1.0 (/nix/var/nix/builds/nix-97535-1385092864/source/crates/tribuchet)79error[E0061]: this function takes 4 arguments but 3 arguments were supplied80 --> crates/tribuchet/src/worker/agents.rs:399:2181 |82399 | let build = AgentBuild::start(&socket, &req, &fs::File::open(&pack_path)?)?;83 | ^^^^^^^^^^^^^^^^^--------------------------------------------- argument #4 of type `&std::fs::File` is missing84 |85note: associated function defined here86 --> crates/tribuchet/src/worker/agents.rs:152:1987 |88152 | pub(super) fn start(89 | ^^^^^90...91156 | log: &fs::File,92 | --------------93help: provide the argument94 |95399 | let build = AgentBuild::start(&socket, &req, &fs::File::open(&pack_path)?, /* &std::fs::File */)?;96 | ++++++++++++++++++++++9798For more information about this error, try `rustc --explain E0061`.99error: could not compile `tribuchet` (bin "tribuchet" test) due to 1 previous error