CI run for radicle-ci-broker

Radicle repository id rad:zwTxygwuz5LDGBq255RA2CbNGrz8

Table of Contents

Run log

[2025-08-08T09:41:11Z INFO  ambient] ambient starts
[=3h[=3hBdsDxe: failed to load Boot0001 "UEFI QEMU DVD-ROM QM00005 " from PciRoot(0x0)/Pci(0x1F,0x2)/Sata(0x2,0xFFFF,0x0): Not Found
BdsDxe: loading Boot0002 "UEFI Misc Device" from PciRoot(0x0)/Pci(0x2,0x0)
BdsDxe: starting Boot0002 "UEFI Misc Device" from PciRoot(0x0)/Pci(0x2,0x0)
Welcome to GRUB!


INFO: Block devices
NAME   MAJ:MIN RM   SIZE RO TYPE MOUNTPOINTS
vda    254:0    0   100G  0 disk 
├─vda1 254:1    0   953M  0 part 
└─vda2 254:2    0  99.1G  0 part /
vdb    254:16   0   2.8M  1 disk 
vdc    254:32   0   4.7M  1 disk 
vdd    254:48   0   9.3G  0 disk 
vde    254:64   0  46.6G  0 disk 
vdf    254:80   0 631.5M  1 disk 
INFO: Extracting tar archive from /dev/vdb
drwxr-xr-x _rad/_rad         0 2025-08-08 09:34 ./
-rw-r--r-- _rad/_rad      2351 2025-08-08 09:34 ./plan.yaml
-rwxr-xr-x _rad/_rad   2949784 2025-08-08 09:34 ./run-ci
INFO: Extracted files:
  1477809      4 drwxr-xr-x   2 1001     1001         4096 Aug  8 09:34 .
  1477810      4 -rw-r--r--   1 1001     1001         2351 Aug  8 09:34 ./plan.yaml
  1477881   2884 -rwxr-xr-x   1 1001     1001      2949784 Aug  8 09:34 ./run-ci
INFO: Running run-ci from /dev/vdb
================================ BEGIN ================================
[2025-08-08T09:35:30Z TRACE ambient_execute_plan] ambient-execute-plan starts
[2025-08-08T09:35:30Z DEBUG ambient_execute_plan] ambient-execute-plan starts
[2025-08-08T09:35:30Z INFO  ambient_execute_plan] ambient-execute-plan starts
[2025-08-08T09:35:30Z WARN  ambient_execute_plan] ambient-execute-plan starts
[2025-08-08T09:35:30Z ERROR ambient_execute_plan] ambient-execute-plan starts
RunnablePlan::from_file: filename=plan.yaml
steps:
- action: mkdir
  pathname: /workspace
- action: mkdir
  pathname: /workspace/artifacts
- action: tar_extract
  archive: /dev/vdc
  directory: /workspace/src
- action: tar_extract
  archive: /dev/vdf
  directory: /workspace/deps
- action: tar_extract
  archive: /dev/vde
  directory: /workspace/cache
- action: spawn
  argv:
  - find
  - /workspace
  - '-maxdepth'
  - '2'
  - '-ls'
- action: shell
  shell: |
    echo plan execution starts
    date
- action: cargo_fmt
- action: cargo_clippy
- action: shell
  shell: |
    echo shell action about to start
    date
- action: shell
  shell: |
    export DEBEMAIL=liw@liw.fi
    export DEBFULLNAME="Lars Wirzenius"
    export CARGO_TARGET_DIR=/workspace/cache
    export CARGO_HOME=/workspace/deps
    export HOME=/root
    export PATH="/root/.cargo/bin:/root/.radicle/bin:$PATH"

    # Check that `rad` is there.
    rad --help >/dev/null || (echo rad is not there; exit 1)

    cargo doc --workspace --no-deps

    # FIXME: We can't run upgrade tests from older versions because
    # Ambient only fetches dependencies for the current version.
    # Thus, we can't build the old versions. This is an Ambient
    # problem that we can't fix here. So we skip the upgrade tests.
    cargo test --workspace --no-fail-fast -- --skip upgrade --test-threads 2

    subplot docgen ci-broker.subplot -o doc/ci-broker.html
    subplot docgen doc/userguide.subplot -o doc/userguide.html
    make -C doc
    cp doc/*.html /workspace/artifacts/.

    # Clean up after tests and documentation building.
    git reset --hard
    git clean -fdx
    git status --ignored

    V="$(dpkg-parsechangelog -SVersion | sed 's/-[^-]*$//')"
    T="$(date -u "+%Y%m%dT%H%M%S")"
    version="$V.ci$T-1"
    dch -v "$version" "CI build under Ambient."
    dch -r ''
- action: shell
  shell: |
    echo deb action about to start
    date
- action: deb
- action: shell
  shell: |
    echo plan execution ends
    date
- action: tar_create
  archive: /dev/vde
  directory: /workspace/cache
- action: tar_create
  archive: /dev/vdd
  directory: /workspace/artifacts
executor_drive: /dev/vdb
source_drive: /dev/vdc
artifact_drive: /dev/vdd
cache_drive: /dev/vde
deps_drive: /dev/vdf
workspace_dir: /workspace
source_dir: /workspace/src
deps_dir: /workspace/deps
cache_dir: /workspace/cache
artifacts_dir: /workspace/artifacts


RUN: Action Mkdir {
    pathname: "/workspace",
}
[2025-08-08T09:35:30Z DEBUG ambient_ci::action] Plan::execute: Mkdir {
        pathname: "/workspace",
    }
RUN: Action finished OK
RUN: Action Mkdir {
    pathname: "/workspace/artifacts",
}
[2025-08-08T09:35:30Z DEBUG ambient_ci::action] Plan::execute: Mkdir {
        pathname: "/workspace/artifacts",
    }
RUN: Action finished OK
RUN: Action TarExtract {
    archive: "/dev/vdc",
    directory: "/workspace/src",
}
[2025-08-08T09:35:30Z DEBUG ambient_ci::action] Plan::execute: TarExtract {
        archive: "/dev/vdc",
        directory: "/workspace/src",
    }
[2025-08-08T09:35:30Z TRACE ambient_ci::vdrive] extracting /dev/vdc to /workspace/src
[2025-08-08T09:35:30Z TRACE ambient_ci::vdrive] extraction OK
RUN: Action finished OK
RUN: Action TarExtract {
    archive: "/dev/vdf",
    directory: "/workspace/deps",
}
[2025-08-08T09:35:30Z DEBUG ambient_ci::action] Plan::execute: TarExtract {
        archive: "/dev/vdf",
        directory: "/workspace/deps",
    }
[2025-08-08T09:35:30Z TRACE ambient_ci::vdrive] extracting /dev/vdf to /workspace/deps
[2025-08-08T09:36:12Z TRACE ambient_ci::vdrive] extraction OK
RUN: Action finished OK
RUN: Action TarExtract {
    archive: "/dev/vde",
    directory: "/workspace/cache",
}
[2025-08-08T09:36:12Z DEBUG ambient_ci::action] Plan::execute: TarExtract {
        archive: "/dev/vde",
        directory: "/workspace/cache",
    }
[2025-08-08T09:36:12Z TRACE ambient_ci::vdrive] extracting /dev/vde to /workspace/cache
[2025-08-08T09:39:07Z TRACE ambient_ci::vdrive] extraction OK
RUN: Action finished OK
RUN: Action Spawn {
    argv: [
        "find",
        "/workspace",
        "-maxdepth",
        "2",
        "-ls",
    ],
}
[2025-08-08T09:39:07Z DEBUG ambient_ci::action] Plan::execute: Spawn {
        argv: [
            "find",
            "/workspace",
            "-maxdepth",
            "2",
            "-ls",
        ],
    }
SPAWN: argv=["find", "/workspace", "-maxdepth", "2", "-ls"]
       cwd=/workspace/src (exists? true)
       extra_env=[]
  3932161      4 drwxr-xr-x   6 root     root         4096 Aug  8 09:36 /workspace
  3932162      4 drwxr-xr-x   2 root     root         4096 Aug  8 09:35 /workspace/artifacts
  3932682      4 drwxr-xr-x   3 root     root         4096 Aug  8 09:34 /workspace/deps
  3932684    112 -rw-r--r--   1 root     root       114688 Aug  8 09:34 /workspace/deps/.global-cache
  3932683      0 -rw-r--r--   1 root     root            0 Aug  8 06:01 /workspace/deps/.package-cache-mutate
  3932685      0 -rw-r--r--   1 root     root            0 Aug  8 06:01 /workspace/deps/.package-cache
  3932686      4 drwxr-xr-x   5 root     root         4096 Aug  8 06:01 /workspace/deps/registry
  3932163      4 drwxr-xr-x   9 root     root         4096 Aug  8 09:34 /workspace/src
  3932165      4 drwxr-xr-x   2 root     root         4096 Aug  8 09:34 /workspace/src/.radicle
  3932218     36 -rw-r--r--   1 root     root        34789 Aug  8 09:34 /workspace/src/NEWS.md
  3932671     92 -rw-r--r--   1 root     root        90113 Aug  8 09:34 /workspace/src/Cargo.lock
  3932672      4 drwxr-xr-x   2 root     root         4096 Aug  8 09:34 /workspace/src/doc
  3932231      4 -rw-r--r--   1 root     root          732 Aug  8 09:34 /workspace/src/ci-broker.yaml
  3932236      4 -rw-r--r--   1 root     root         1696 Aug  8 09:34 /workspace/src/Cargo.toml
  3932239      8 -rw-r--r--   1 root     root         5418 Aug  8 09:34 /workspace/src/deny.toml
  3932234      8 -rw-r--r--   1 root     root         5951 Aug  8 09:34 /workspace/src/flake.nix
  3932669      8 -rw-r--r--   1 root     root         6528 Aug  8 09:34 /workspace/src/flake.lock
  3932667     12 -rw-r--r--   1 root     root         9723 Aug  8 09:34 /workspace/src/LICENSE-APACHE
  3932235      4 -rw-r--r--   1 root     root           44 Aug  8 09:34 /workspace/src/.gitignore
  3932167      4 -rw-r--r--   1 root     root         1079 Aug  8 09:34 /workspace/src/LICENSE-MIT
  3932212     92 -rw-r--r--   1 root     root        91474 Aug  8 09:34 /workspace/src/ci-broker.md
  3932216      4 -rw-r--r--   1 root     root          257 Aug  8 09:34 /workspace/src/ci-broker.subplot
  3932670      4 -rw-r--r--   1 root     root         1188 Aug  8 09:34 /workspace/src/CONTRIBUTING.md
  3932668      4 -rw-r--r--   1 root     root          311 Aug  8 09:34 /workspace/src/Makefile
  3932237      4 drwxr-xr-x   2 root     root         4096 Aug  8 09:34 /workspace/src/tests
  3932213      4 -rw-r--r--   1 root     root          386 Aug  8 09:34 /workspace/src/cibtool.1
  3932240      4 drwxr-xr-x   8 root     root         4096 Aug  8 09:34 /workspace/src/.git
  3932217      4 -rw-r--r--   1 root     root           10 Aug  8 09:34 /workspace/src/.envrc
  3932219      4 drwxr-xr-x   3 root     root         4096 Aug  8 09:34 /workspace/src/debian
  3932232      8 -rw-r--r--   1 root     root         4796 Aug  8 09:34 /workspace/src/README.md
  3932168      4 drwxr-xr-x   4 root     root         4096 Aug  8 09:34 /workspace/src/src
  3932233      4 -rw-r--r--   1 root     root          970 Aug  8 09:34 /workspace/src/build.rs
  3932164      4 -rw-r--r--   1 root     root          440 Aug  8 09:34 /workspace/src/cib.1
  3932214      4 drwxr-xr-x   2 root     root         4096 Aug  8 09:34 /workspace/src/.cargo
  3955694      4 drwxr-xr-x   6 root     root         4096 Aug  8 06:06 /workspace/cache
  3963791      4 drwxr-xr-x   7 root     root         4096 Aug  8 06:14 /workspace/cache/release
  3967753      4 drwxr-xr-x  12 root     root         4096 Aug  8 06:11 /workspace/cache/doc
  3955696      4 drwxr-xr-x   7 root     root         4096 Aug  8 06:14 /workspace/cache/debug
  3955695      4 drwxr-xr-x   2 root     root         4096 Aug  8 06:01 /workspace/cache/tmp
  3963790      4 -rw-r--r--   1 root     root          218 Aug  8 06:02 /workspace/cache/.rustdoc_fingerprint.json
  3967752      4 -rw-r--r--   1 root     root         1034 Aug  8 06:11 /workspace/cache/.rustc_info.json
RUN: Action finished OK
RUN: Action Shell {
    shell: "echo plan execution starts\ndate\n",
}
[2025-08-08T09:39:07Z DEBUG ambient_ci::action] Plan::execute: Shell {
        shell: "echo plan execution starts\ndate\n",
    }
SPAWN: argv=["/bin/bash", "-c", "set -xeuo pipefail\necho plan execution starts\ndate\n\n"]
       cwd=/workspace/src (exists? true)
       extra_env=[]
+ echo plan execution starts
plan execution starts
+ date
Fri Aug  8 09:39:07 UTC 2025
RUN: Action finished OK
RUN: Action CargoFmt
[2025-08-08T09:39:07Z DEBUG ambient_ci::action] Plan::execute: CargoFmt
SPAWN: argv=["cargo", "fmt", "--check"]
       cwd=/workspace/src (exists? true)
       extra_env=[("CARGO_TARGET_DIR", "/workspace/cache"), ("CARGO_HOME", "/workspace/deps"), ("PATH", "/root/.cargo/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin")]
RUN: Action finished OK
RUN: Action CargoClippy
[2025-08-08T09:39:08Z DEBUG ambient_ci::action] Plan::execute: CargoClippy
SPAWN: argv=["cargo", "clippy", "--offline", "--locked", "--workspace", "--all-targets", "--no-deps", "--", "--deny", "warnings"]
       cwd=/workspace/src (exists? true)
       extra_env=[("CARGO_TARGET_DIR", "/workspace/cache"), ("CARGO_HOME", "/workspace/deps"), ("PATH", "/root/.cargo/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin")]
   Compiling proc-macro2 v1.0.94
   Compiling unicode-ident v1.0.18
   Compiling version_check v0.9.5
   Compiling libc v0.2.171
    Checking cfg-if v1.0.0
   Compiling typenum v1.18.0
   Compiling generic-array v0.14.7
   Compiling quote v1.0.40
   Compiling jobserver v0.1.33
   Compiling syn v2.0.100
   Compiling shlex v1.3.0
   Compiling cc v1.2.18
    Checking crypto-common v0.1.6
   Compiling serde v1.0.219
   Compiling memchr v2.7.4
    Checking subtle v2.6.1
    Checking stable_deref_trait v1.2.0
   Compiling once_cell v1.21.3
   Compiling syn v1.0.109
   Compiling pkg-config v0.3.32
   Compiling bitflags v2.9.0
   Compiling crossbeam-utils v0.8.21
   Compiling anyhow v1.0.97
   Compiling thiserror v2.0.12
    Checking block-padding v0.3.3
    Checking block-buffer v0.10.4
   Compiling getrandom v0.3.2
   Compiling rustix v1.0.5
    Checking writeable v0.5.5
    Checking cpufeatures v0.2.17
   Compiling icu_locid_transform_data v1.5.1
    Checking litemap v0.7.4
    Checking digest v0.10.7
    Checking inout v0.1.4
   Compiling thiserror v1.0.69
   Compiling linux-raw-sys v0.9.3
   Compiling icu_properties_data v1.5.1
    Checking cipher v0.4.4
    Checking getrandom v0.2.15
   Compiling synstructure v0.13.1
   Compiling ahash v0.8.11
   Compiling serde_derive v1.0.219
   Compiling zerofrom-derive v0.1.6
   Compiling yoke-derive v0.7.5
   Compiling zerovec-derive v0.10.3
   Compiling displaydoc v0.2.5
    Checking zerofrom v0.1.5
    Checking yoke v0.7.5
   Compiling thiserror-impl v2.0.12
    Checking zerovec v0.10.4
   Compiling icu_provider_macros v1.5.0
    Checking tinystr v0.7.6
    Checking icu_locid v1.5.0
   Compiling thiserror-impl v1.0.69
    Checking icu_provider v1.5.0
   Compiling icu_normalizer_data v1.5.1
    Checking icu_locid_transform v1.5.0
    Checking icu_collections v1.5.0
   Compiling aho-corasick v1.1.3
   Compiling zerocopy v0.8.24
   Compiling same-file v1.0.6
   Compiling zerocopy v0.7.35
   Compiling vcpkg v0.2.15
    Checking smallvec v1.15.0
   Compiling regex-syntax v0.8.5
   Compiling libz-sys v1.1.22
   Compiling walkdir v2.5.0
    Checking icu_properties v1.5.1
   Compiling regex-automata v0.4.9
   Compiling proc-macro-error-attr v1.0.4
    Checking write16 v1.0.0
   Compiling itoa v1.0.15
   Compiling ucd-trie v0.1.7
    Checking utf16_iter v1.0.5
    Checking utf8_iter v1.0.4
    Checking icu_normalizer v1.5.0
   Compiling pest v2.8.0
   Compiling crossbeam-epoch v0.9.18
   Compiling hashbrown v0.14.5
   Compiling amplify_syn v2.0.1
   Compiling bstr v1.12.0
    Checking universal-hash v0.5.1
   Compiling proc-macro-error v1.0.4
    Checking opaque-debug v0.3.1
   Compiling doc-comment v0.3.3
    Checking log v0.4.27
   Compiling libm v0.2.11
   Compiling unic-common v0.9.0
    Checking signature v1.6.4
   Compiling unic-char-range v0.9.0
    Checking ed25519 v1.5.3
   Compiling unic-char-property v0.9.0
   Compiling globset v0.4.16
   Compiling unic-ucd-version v0.9.0
   Compiling amplify_derive v4.0.1
   Compiling rand_core v0.6.4
   Compiling ppv-lite86 v0.2.21
   Compiling hashlink v0.9.1
   Compiling pest_meta v2.8.0
   Compiling crossbeam-deque v0.8.6
    Checking idna_adapter v1.2.0
   Compiling tracing-attributes v0.1.28
   Compiling libgit2-sys v0.17.0+1.8.1
   Compiling encoding_rs v0.8.35
   Compiling autocfg v1.4.0
   Compiling serde_json v1.0.140
    Checking percent-encoding v2.3.1
    Checking amplify_num v0.5.3
    Checking ct-codecs v1.1.3
    Checking ascii v1.1.0
   Compiling arraydeque v0.5.1
    Checking ec25519 v0.1.0
   Compiling yaml-rust2 v0.9.0
    Checking form_urlencoded v1.2.1
   Compiling num-traits v0.2.19
    Checking amplify v4.8.0
   Compiling git-ref-format-core v0.3.1
    Checking idna v1.0.3
   Compiling pest_generator v2.8.0
   Compiling ignore v0.4.23
   Compiling rand_chacha v0.3.1
   Compiling unic-ucd-segment v0.9.0
    Checking polyval v0.6.2
   Compiling serde_path_to_error v0.1.17
    Checking sha2 v0.10.8
   Compiling pikchr v0.1.4
   Compiling sqlite3-src v0.5.1
   Compiling unicode-linebreak v0.1.5
   Compiling smawk v0.3.2
   Compiling unicode-width v0.1.14
    Checking base64ct v1.6.0
   Compiling unicode-width v0.2.0
   Compiling fnv v1.0.7
   Compiling strsim v0.11.1
   Compiling pulldown-cmark v0.12.2
   Compiling ryu v1.0.20
   Compiling deunicode v1.6.1
   Compiling ident_case v1.0.1
    Checking byteorder v1.5.0
    Checking keccak v0.1.5
   Compiling fastrand v2.3.0
   Compiling slug v0.1.6
    Checking sha3 v0.10.8
   Compiling tempfile v3.19.1
   Compiling darling_core v0.20.11
    Checking pem-rfc7468 v0.7.0
   Compiling textwrap v0.16.2
   Compiling getopts v0.2.21
   Compiling marked-yaml v0.7.2
   Compiling humansize v2.1.3
    Checking ghash v0.5.1
   Compiling unic-segment v0.9.0
   Compiling globwalk v0.9.1
   Compiling pest_derive v2.8.0
   Compiling rand v0.8.5
   Compiling git-ref-format-macro v0.3.1
    Checking url v2.5.4
    Checking cyphergraphy v0.3.0
   Compiling regex v1.11.1
   Compiling subplot v0.12.0
    Checking ctr v0.9.2
    Checking aes v0.8.4
   Compiling tracing-core v0.1.33
    Checking aead v0.5.2
   Compiling utf8-width v0.1.7
    Checking equivalent v1.0.2
   Compiling data-encoding v2.8.0
   Compiling lazy_static v1.5.0
   Compiling unicase v2.8.1
    Checking base32 v0.4.0
   Compiling pulldown-cmark-escape v0.11.0
    Checking hashbrown v0.15.2
   Compiling pin-project-lite v0.2.16
   Compiling tracing v0.1.41
   Compiling data-encoding-macro-internal v0.1.15
    Checking indexmap v2.9.0
    Checking cypheraddr v0.4.0
   Compiling tera v1.20.0
   Compiling html-escape v0.2.13
    Checking aes-gcm v0.10.3
    Checking git-ref-format v0.3.1
   Compiling roadmap v0.7.0
   Compiling darling_macro v0.20.11
    Checking ssh-encoding v0.2.0
    Checking blowfish v0.9.1
    Checking poly1305 v0.8.0
    Checking cbc v0.1.2
    Checking chacha20 v0.9.1
    Checking pbkdf2 v0.12.2
    Checking zeroize v1.8.1
   Compiling base64 v0.22.1
   Compiling descape v2.0.3
   Compiling line-col v0.2.1
    Checking radicle-std-ext v0.1.1
   Compiling typeid v1.0.3
   Compiling cfg_aliases v0.2.1
    Checking data-encoding-macro v0.1.17
   Compiling nix v0.29.0
    Checking ssh-cipher v0.2.0
    Checking bcrypt-pbkdf v0.10.0
   Compiling darling v0.20.11
    Checking socks5-client v0.4.1
    Checking utf8parse v0.2.2
    Checking signature v2.2.0
   Compiling adler2 v2.0.0
    Checking base-x v0.2.11
    Checking multibase v0.9.1
   Compiling miniz_oxide v0.8.8
    Checking ssh-key v0.6.7
    Checking anstyle-parse v0.2.6
    Checking qcheck v1.0.0
    Checking cyphernet v0.5.2
   Compiling derive_builder_core v0.20.2
    Checking radicle-ssh v0.9.0
    Checking chrono v0.4.40
    Checking sqlite3-sys v0.15.2
    Checking nonempty v0.9.0
    Checking sqlite v0.32.0
   Compiling xattr v1.5.0
   Compiling culpa-macros v1.0.2
   Compiling crc32fast v1.4.2
   Compiling filetime v0.2.25
    Checking anstyle v1.0.10
   Compiling time-core v0.1.4
    Checking is_terminal_polyfill v1.70.1
    Checking tinyvec_macros v0.1.1
   Compiling num-conv v0.1.0
    Checking colorchoice v1.0.3
    Checking powerfmt v0.2.0
    Checking anstyle-query v1.1.2
    Checking anstream v0.6.18
    Checking deranged v0.4.0
   Compiling time-macros v0.2.22
    Checking tinyvec v1.9.0
   Compiling tar v0.4.44
   Compiling flate2 v1.1.1
    Checking erased-serde v0.4.6
   Compiling derive_builder_macro v0.20.2
    Checking radicle-dag v0.10.0
    Checking terminal_size v0.4.2
    Checking cvt v0.1.2
    Checking clap_lex v0.7.4
   Compiling rust_decimal v1.37.1
   Compiling heck v0.5.0
    Checking base64 v0.21.7
    Checking regex-syntax v0.6.29
   Compiling clap_derive v4.5.41
    Checking quick-xml v0.37.4
    Checking clap_builder v4.5.41
    Checking regex-automata v0.1.10
    Checking time v0.3.41
    Checking crossbeam-channel v0.5.15
    Checking fs_at v0.2.1
    Checking derive_builder v0.20.2
    Checking serde-untagged v0.1.7
   Compiling radicle-surf v0.22.1
    Checking unicode-normalization v0.1.24
   Compiling culpa v1.0.2
    Checking diligent-date-parser v0.1.5
   Compiling subplot-build v0.12.0
    Checking localtime v1.3.1
    Checking bytesize v2.0.1
   Compiling serde_yml v0.0.12
    Checking never v0.1.0
    Checking siphasher v1.0.1
   Compiling valuable v0.1.1
    Checking arrayvec v0.7.6
    Checking normpath v1.3.0
   Compiling subplotlib v0.12.0
    Checking overload v0.1.1
    Checking nu-ansi-term v0.46.0
    Checking remove_dir_all v1.0.0
    Checking atom_syndication v0.12.7
    Checking libyml v0.0.5
   Compiling radicle-ci-broker v0.19.1 (/workspace/src)
   Compiling subplotlib-derive v0.12.0
    Checking clap v4.5.41
    Checking matchers v0.1.0
    Checking sharded-slab v0.1.7
    Checking tracing-log v0.2.0
    Checking tracing-serde v0.2.0
    Checking uuid v1.16.0
    Checking thread_local v1.1.8
   Compiling valuable-derive v0.1.1
    Checking fs2 v0.4.3
    Checking state v0.6.0
    Checking winnow v0.6.26
    Checking shell-words v1.1.0
    Checking nonempty v0.11.0
    Checking tracing-subscriber v0.3.19
    Checking duration-str v0.12.0
    Checking html-page v0.4.0
    Checking rss v2.0.12
   Compiling ctor v0.2.9
   Compiling qcheck-macros v1.0.0
    Checking git2 v0.19.0
    Checking radicle-git-ext v0.8.1
    Checking radicle-crypto v0.12.0
    Checking radicle-cob v0.14.0
    Checking radicle v0.16.1
    Checking radicle-job v0.2.0
error: hiding a lifetime that's elided elsewhere is confusing
  --> src/refs.rs:64:31
   |
64 | pub fn qualified_branch(name: &BranchName) -> Result<Qualified, RefError> {
   |                               ^^^^^^^^^^^            --------- the same lifetime is hidden here
   |                               |
   |                               the lifetime is elided here
   |
   = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
   = note: `-D mismatched-lifetime-syntaxes` implied by `-D warnings`
   = help: to override `-D warnings` add `#[allow(mismatched_lifetime_syntaxes)]`
help: use `'_` for type paths
   |
64 | pub fn qualified_branch(name: &BranchName) -> Result<Qualified<'_>, RefError> {
   |                                                               ++++

error: hiding a lifetime that's elided elsewhere is confusing
  --> src/refs.rs:88:31
   |
88 | pub fn namespaced_from_str(s: &str) -> Result<Namespaced, RefError> {
   |                               ^^^^            ---------- the same lifetime is hidden here
   |                               |
   |                               the lifetime is elided here
   |
   = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
help: use `'_` for type paths
   |
88 | pub fn namespaced_from_str(s: &str) -> Result<Namespaced<'_>, RefError> {
   |                                                         ++++

error: could not compile `radicle-ci-broker` (lib) due to 2 previous errors
warning: build failed, waiting for other jobs to finish...
error: could not compile `radicle-ci-broker` (lib test) due to 2 previous errors
ERROR: Action failed: command failed: ["cargo", "clippy", "--offline", "--locked", "--workspace", "--all-targets", "--no-deps", "--", "--deny", "warnings"]
ERROR: command failed: ["cargo", "clippy", "--offline", "--locked", "--workspace", "--all-targets", "--no-deps", "--", "--deny", "warnings"]
EXIT CODE: 1
[2025-08-08T09:41:11Z INFO  ambient] ambient ends successfully

Trigger message

{
  "request": "trigger",
  "version": 1,
  "event_type": "push",
  "repository": {
    "id": "rad:zwTxygwuz5LDGBq255RA2CbNGrz8",
    "name": "radicle-ci-broker",
    "description": "Radicle CI broker",
    "private": false,
    "default_branch": "main",
    "delegates": [
      "did:key:z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV",
      "did:key:z6MksFqXN3Yhqk8pTJdUGLwATkRfQvwZXPqR2qMEhbS9wzpT"
    ]
  },
  "pusher": {
    "id": "did:key:z6MkkYez6QAFWvmdudjrfMXySu1NTpSrraJotCJFwGgkmgx8",
    "alias": "ci0"
  },
  "before": "f6cab9bb577bc895edfd4c56dae02516be55643d",
  "after": "f6cab9bb577bc895edfd4c56dae02516be55643d",
  "branch": "main",
  "commits": [
    "f6cab9bb577bc895edfd4c56dae02516be55643d"
  ]
}

Ambient stdout

[2025-08-08T09:34:12Z INFO  ambient] ambient starts
[2025-08-08T09:34:12Z DEBUG ambient] load default configuration file /home/_rad/.config/ambient/config.yaml if it exists
[2025-08-08T09:34:12Z DEBUG ambient] load files named with --config: /tmp/.tmpTgvO7U/ambient_extra_values.yaml
[2025-08-08T09:34:12Z DEBUG ambient] complete configuration: Config {
        tmpdir: "/srv/tmp",
        image_store: "/home/_rad/.local/state/ambient-ci/images",
        projects: "/home/_rad/ambient-projects.yaml",
        state: "/srv/ambient-state",
        rsync_target: None,
        rsync_target_base: Some(
            "ci@http.liw.fi:/srv/http/radicle-ci.liw.fi",
        ),
        rsync_target_map: None,
        dput_target: Some(
            "apt.liw.fi",
        ),
        executor: Some(
            "/usr/bin/ambient-execute-plan",
        ),
        artifacts_max_size: Byte(
            10000000000,
        ),
        cache_max_size: Byte(
            50000000000,
        ),
        qemu: QemuConfig {
            cpus: 4,
            memory: Byte(
                8000000000,
            ),
            kvm_binary: "/usr/bin/kvm",
            ovmf_vars_file: "/usr/share/ovmf/OVMF.fd",
            ovmf_code_file: "/usr/share/ovmf/OVMF.fd",
        },
    }
[2025-08-08T09:34:12Z DEBUG ambient] configuration: Config {
        tmpdir: "/srv/tmp",
        image_store: "/home/_rad/.local/state/ambient-ci/images",
        projects: "/home/_rad/ambient-projects.yaml",
        state: "/srv/ambient-state",
        rsync_target: None,
        rsync_target_base: Some(
            "ci@http.liw.fi:/srv/http/radicle-ci.liw.fi",
        ),
        rsync_target_map: None,
        dput_target: Some(
            "apt.liw.fi",
        ),
        executor: Some(
            "/usr/bin/ambient-execute-plan",
        ),
        artifacts_max_size: Byte(
            10000000000,
        ),
        cache_max_size: Byte(
            50000000000,
        ),
        qemu: QemuConfig {
            cpus: 4,
            memory: Byte(
                8000000000,
            ),
            kvm_binary: "/usr/bin/kvm",
            ovmf_vars_file: "/usr/share/ovmf/OVMF.fd",
            ovmf_code_file: "/usr/share/ovmf/OVMF.fd",
        },
    }
[2025-08-08T09:34:12Z DEBUG ambient_ci::project] load project state from /srv/ambient-state/radicle-ci-broker/meta.yaml
[2025-08-08T09:34:12Z DEBUG ambient_ci::run] latest commit: "f6cab9bb577bc895edfd4c56dae02516be55643d"
[2025-08-08T09:34:12Z DEBUG ambient_ci::run] is a git repository
[2025-08-08T09:34:12Z DEBUG ambient_ci::run] git repository is clean
[2025-08-08T09:34:12Z DEBUG ambient_ci::run] current (HEAD) commit: f6cab9bb577bc895edfd4c56dae02516be55643d
[2025-08-08T09:34:12Z DEBUG ambient_ci::run] no dry run requested
[2025-08-08T09:34:12Z DEBUG ambient_ci::run] forced run requested
[2025-08-08T09:34:12Z DEBUG ambient_ci::run] run? true
[2025-08-08T09:34:12Z INFO  ambient_ci::run] project radicle-ci-broker: running CI
[2025-08-08T09:34:12Z DEBUG ambient_ci::run] Executing pre-plan steps
[2025-08-08T09:34:12Z DEBUG ambient_ci::action] Plan::execute: CargoFetch {
        sourcedir: "/tmp/.tmpaWmW5d/src",
        dependenciesdir: "/srv/ambient-state/radicle-ci-broker/dependencies",
    }
SPAWN: argv=["env", "CARGO_HOME=/srv/ambient-state/radicle-ci-broker/dependencies", "cargo", "fetch", "--locked"]
       cwd=/tmp/.tmpaWmW5d/src (exists? true)
       extra_env=[]
[2025-08-08T09:34:19Z DEBUG ambient_ci::run] create virtual drive /srv/tmp/.tmpbeKIfN/src.tar
[2025-08-08T09:34:19Z DEBUG ambient_ci::run] create virtual drive /srv/tmp/.tmpbeKIfN/deps.tar
[2025-08-08T09:34:30Z DEBUG ambient_ci::run] create_executor_vdrive: executor="/usr/bin/ambient-execute-plan"
[2025-08-08T09:34:30Z DEBUG ambient_ci::run] create_executor_vdrive: plan=RunnablePlan {
        steps: [
            Mkdir {
                pathname: "/workspace",
            },
            Mkdir {
                pathname: "/workspace/artifacts",
            },
            TarExtract {
                archive: "/dev/vdc",
                directory: "/workspace/src",
            },
            TarExtract {
                archive: "/dev/vdf",
                directory: "/workspace/deps",
            },
            TarExtract {
                archive: "/dev/vde",
                directory: "/workspace/cache",
            },
            Spawn {
                argv: [
                    "find",
                    "/workspace",
                    "-maxdepth",
                    "2",
                    "-ls",
                ],
            },
            Shell {
                shell: "echo plan execution starts\ndate\n",
            },
            CargoFmt,
            CargoClippy,
            Shell {
                shell: "echo shell action about to start\ndate\n",
            },
            Shell {
                shell: "export DEBEMAIL=liw@liw.fi\nexport DEBFULLNAME=\"Lars Wirzenius\"\nexport CARGO_TARGET_DIR=/workspace/cache\nexport CARGO_HOME=/workspace/deps\nexport HOME=/root\nexport PATH=\"/root/.cargo/bin:/root/.radicle/bin:$PATH\"\n\n# Check that `rad` is there.\nrad --help >/dev/null || (echo rad is not there; exit 1)\n\ncargo doc --workspace --no-deps\n\n# FIXME: We can't run upgrade tests from older versions because\n# Ambient only fetches dependencies for the current version.\n# Thus, we can't build the old versions. This is an Ambient\n# problem that we can't fix here. So we skip the upgrade tests.\ncargo test --workspace --no-fail-fast -- --skip upgrade --test-threads 2\n\nsubplot docgen ci-broker.subplot -o doc/ci-broker.html\nsubplot docgen doc/userguide.subplot -o doc/userguide.html\nmake -C doc\ncp doc/*.html /workspace/artifacts/.\n\n# Clean up after tests and documentation building.\ngit reset --hard\ngit clean -fdx\ngit status --ignored\n\nV=\"$(dpkg-parsechangelog -SVersion | sed 's/-[^-]*$//')\"\nT=\"$(date -u \"+%Y%m%dT%H%M%S\")\"\nversion=\"$V.ci$T-1\"\ndch -v \"$version\" \"CI build under Ambient.\"\ndch -r ''\n",
            },
            Shell {
                shell: "echo deb action about to start\ndate\n",
            },
            Deb,
            Shell {
                shell: "echo plan execution ends\ndate\n",
            },
            TarCreate {
                archive: "/dev/vde",
                directory: "/workspace/cache",
            },
            TarCreate {
                archive: "/dev/vdd",
                directory: "/workspace/artifacts",
            },
        ],
        executor_drive: Some(
            "/dev/vdb",
        ),
        source_drive: Some(
            "/dev/vdc",
        ),
        artifact_drive: Some(
            "/dev/vdd",
        ),
        cache_drive: Some(
            "/dev/vde",
        ),
        deps_drive: Some(
            "/dev/vdf",
        ),
        workspace_dir: Some(
            "/workspace",
        ),
        source_dir: Some(
            "/workspace/src",
        ),
        deps_dir: Some(
            "/workspace/deps",
        ),
        cache_dir: Some(
            "/workspace/cache",
        ),
        artifacts_dir: Some(
            "/workspace/artifacts",
        ),
    }
[2025-08-08T09:34:30Z DEBUG ambient_ci::run] executor bin /usr/bin/ambient-execute-plan
[2025-08-08T09:34:30Z DEBUG ambient_ci::run] copying /usr/bin/ambient-execute-plan to /srv/tmp/.tmpbeKIfN/ambient-execute-plan/run-ci
[2025-08-08T09:34:31Z DEBUG ambient_ci::run] copy OK: true
[2025-08-08T09:34:31Z DEBUG ambient_ci::run] create virtual drive /srv/tmp/.tmpbeKIfN/executor.tar
[2025-08-08T09:35:11Z DEBUG ambient_ci::project] removing run log file /srv/ambient-state/radicle-ci-broker/run.log
[2025-08-08T09:35:11Z DEBUG ambient_ci::project] statedir is /srv/ambient-state/radicle-ci-broker, exists? true
[2025-08-08T09:35:11Z DEBUG ambient_ci::project] creating run log file /srv/ambient-state/radicle-ci-broker/run.log
[2025-08-08T09:35:11Z DEBUG ambient_ci::project] created run log file /srv/ambient-state/radicle-ci-broker/run.log OK
[2025-08-08T09:35:11Z DEBUG ambient_ci::cloud_init] with_hostname called: "ambient"
[2025-08-08T09:35:11Z DEBUG ambient_ci::cloud_init] with_runcmd called: "echo xyzzy > /dev/ttyS1"
[2025-08-08T09:35:11Z DEBUG ambient_ci::cloud_init] with_runcmd called: "\n(set -xeu\nenv\ndir=\"$(mktemp -d)\"\ncd \"$dir\"\ntar -xvf /dev/vdb\nfind -ls || true\nldd ./run-ci || true\necho ================================ BEGIN ================================\nexport RUST_BACKTRACE=1\nif ./run-ci; then\n        echo \"EXIT CODE: 0\"\nelse\n        echo \"EXIT CODE: $?\"\nfi) > /dev/ttyS1 2>&1\n"
[2025-08-08T09:35:11Z DEBUG ambient_ci::cloud_init] with_runcmd called: "poweroff"
[2025-08-08T09:35:11Z DEBUG ambient_ci::cloud_init] LocalDataStoreBuilder: LocalDataStoreBuilder {
        hostname: Some(
            "ambient",
        ),
        network: false,
        bootcmd: [],
        runcmd: [
            "echo xyzzy > /dev/ttyS1",
            "\n(set -xeu\nenv\ndir=\"$(mktemp -d)\"\ncd \"$dir\"\ntar -xvf /dev/vdb\nfind -ls || true\nldd ./run-ci || true\necho ================================ BEGIN ================================\nexport RUST_BACKTRACE=1\nif ./run-ci; then\n        echo \"EXIT CODE: 0\"\nelse\n        echo \"EXIT CODE: $?\"\nfi) > /dev/ttyS1 2>&1\n",
            "poweroff",
        ],
    }
[2025-08-08T09:35:11Z DEBUG ambient_ci::qemu] run QEMU
[2025-08-08T09:35:11Z DEBUG ambient_ci::qemu] create copy-on-write image and UEFI vars file
[2025-08-08T09:35:11Z DEBUG ambient_ci::qemu_utils] qemu-img create /srv/tmp/.tmp3ws40M/.tmpDOOpNL/vm.qcow2 backing on /home/_rad/ambient.qcow2
[2025-08-08T09:35:11Z DEBUG ambient_ci::qemu] create cloud-init ISO file
[2025-08-08T09:35:11Z DEBUG ambient_ci::cloud_init] LocalDataStore: LocalDataStore {
        hostname: "ambient",
        network: false,
        bootcmd: [],
        runcmd: [
            "echo xyzzy > /dev/ttyS1",
            "\n(set -xeu\nenv\ndir=\"$(mktemp -d)\"\ncd \"$dir\"\ntar -xvf /dev/vdb\nfind -ls || true\nldd ./run-ci || true\necho ================================ BEGIN ================================\nexport RUST_BACKTRACE=1\nif ./run-ci; then\n        echo \"EXIT CODE: 0\"\nelse\n        echo \"EXIT CODE: $?\"\nfi) > /dev/ttyS1 2>&1\n",
            "poweroff",
        ],
    }
[2025-08-08T09:35:11Z DEBUG ambient_ci::cloud_init] write /tmp/.tmpqOGs2p/meta-data
[2025-08-08T09:35:11Z DEBUG ambient_ci::cloud_init] write /tmp/.tmpqOGs2p/user-data
[2025-08-08T09:35:11Z DEBUG ambient_ci::qemu] set console log file to /srv/tmp/.tmp3ws40M/.tmpDOOpNL/console.log
[2025-08-08T09:35:11Z DEBUG ambient_ci::util] create file /srv/tmp/.tmp3ws40M/.tmpDOOpNL/console.log
[2025-08-08T09:35:11Z DEBUG ambient_ci::qemu] set run file to /srv/ambient-state/radicle-ci-broker/run.log
[2025-08-08T09:35:11Z DEBUG ambient_ci::util] create file /srv/ambient-state/radicle-ci-broker/run.log
[2025-08-08T09:35:11Z DEBUG ambient_ci::qemu] run QEMU: QemuArgs {
        args: [
            "-m",
            "7629",
            "-smp",
            "cpus=4",
            "-cpu",
            "kvm64",
            "-machine",
            "type=q35,accel=kvm,usb=off",
            "-uuid",
            "a85c9de7-edc0-4e54-bead-112e5733582c",
            "-boot",
            "strict=on",
            "-name",
            "ambient-ci-vm",
            "-rtc",
            "base=utc,driftfix=slew",
            "-display",
            "none",
            "-device",
            "virtio-rng-pci",
            "-serial",
            "file:/srv/tmp/.tmp3ws40M/.tmpDOOpNL/console.log",
            "-serial",
            "file:/srv/ambient-state/radicle-ci-broker/run.log",
            "-drive",
            "if=pflash,format=raw,unit=0,file=/usr/share/ovmf/OVMF.fd,readonly=on",
            "-drive",
            "if=pflash,format=raw,unit=1,file=/srv/tmp/.tmp3ws40M/.tmpDOOpNL/vars.fd",
            "-drive",
            "format=qcow2,if=virtio,file=/srv/tmp/.tmp3ws40M/.tmpDOOpNL/vm.qcow2",
            "-drive",
            "format=raw,if=virtio,file=/srv/tmp/.tmpbeKIfN/executor.tar,readonly=on",
            "-cdrom",
            "/srv/tmp/.tmp3ws40M/.tmpDOOpNL/cloud_init.iso",
            "-drive",
            "format=raw,if=virtio,file=/srv/tmp/.tmpbeKIfN/src.tar,readonly=on",
            "-drive",
            "format=raw,if=virtio,file=/srv/tmp/.tmpbeKIfN/artifacts.tar",
            "-drive",
            "format=raw,if=virtio,file=/srv/tmp/.tmpbeKIfN/cache.tar",
            "-drive",
            "format=raw,if=virtio,file=/srv/tmp/.tmpbeKIfN/deps.tar,readonly=on",
            "-nodefaults",
            "-no-user-config",
        ],
    }
[2025-08-08T09:41:10Z DEBUG ambient_ci::qemu] QEMU finished OK
[2025-08-08T09:41:10Z DEBUG ambient_ci::qemu] run log:
    --------------------==========
    [2025-08-08T09:35:30Z TRACE ambient_execute_plan] ambient-execute-plan starts
    [2025-08-08T09:35:30Z DEBUG ambient_execute_plan] ambient-execute-plan starts
    [2025-08-08T09:35:30Z INFO  ambient_execute_plan] ambient-execute-plan starts
    [2025-08-08T09:35:30Z WARN  ambient_execute_plan] ambient-execute-plan starts
    [2025-08-08T09:35:30Z ERROR ambient_execute_plan] ambient-execute-plan starts
    RunnablePlan::from_file: filename=plan.yaml
    steps:
    - action: mkdir
      pathname: /workspace
    - action: mkdir
      pathname: /workspace/artifacts
    - action: tar_extract
      archive: /dev/vdc
      directory: /workspace/src
    - action: tar_extract
      archive: /dev/vdf
      directory: /workspace/deps
    - action: tar_extract
      archive: /dev/vde
      directory: /workspace/cache
    - action: spawn
      argv:
      - find
      - /workspace
      - '-maxdepth'
      - '2'
      - '-ls'
    - action: shell
      shell: |
        echo plan execution starts
        date
    - action: cargo_fmt
    - action: cargo_clippy
    - action: shell
      shell: |
        echo shell action about to start
        date
    - action: shell
      shell: |
        export DEBEMAIL=liw@liw.fi
        export DEBFULLNAME="Lars Wirzenius"
        export CARGO_TARGET_DIR=/workspace/cache
        export CARGO_HOME=/workspace/deps
        export HOME=/root
        export PATH="/root/.cargo/bin:/root/.radicle/bin:$PATH"
    
        # Check that `rad` is there.
        rad --help >/dev/null || (echo rad is not there; exit 1)
    
        cargo doc --workspace --no-deps
    
        # FIXME: We can't run upgrade tests from older versions because
        # Ambient only fetches dependencies for the current version.
        # Thus, we can't build the old versions. This is an Ambient
        # problem that we can't fix here. So we skip the upgrade tests.
        cargo test --workspace --no-fail-fast -- --skip upgrade --test-threads 2
    
        subplot docgen ci-broker.subplot -o doc/ci-broker.html
        subplot docgen doc/userguide.subplot -o doc/userguide.html
        make -C doc
        cp doc/*.html /workspace/artifacts/.
    
        # Clean up after tests and documentation building.
        git reset --hard
        git clean -fdx
        git status --ignored
    
        V="$(dpkg-parsechangelog -SVersion | sed 's/-[^-]*$//')"
        T="$(date -u "+%Y%m%dT%H%M%S")"
        version="$V.ci$T-1"
        dch -v "$version" "CI build under Ambient."
        dch -r ''
    - action: shell
      shell: |
        echo deb action about to start
        date
    - action: deb
    - action: shell
      shell: |
        echo plan execution ends
        date
    - action: tar_create
      archive: /dev/vde
      directory: /workspace/cache
    - action: tar_create
      archive: /dev/vdd
      directory: /workspace/artifacts
    executor_drive: /dev/vdb
    source_drive: /dev/vdc
    artifact_drive: /dev/vdd
    cache_drive: /dev/vde
    deps_drive: /dev/vdf
    workspace_dir: /workspace
    source_dir: /workspace/src
    deps_dir: /workspace/deps
    cache_dir: /workspace/cache
    artifacts_dir: /workspace/artifacts
    
    
    RUN: Action Mkdir {
        pathname: "/workspace",
    }
    [2025-08-08T09:35:30Z DEBUG ambient_ci::action] Plan::execute: Mkdir {
            pathname: "/workspace",
        }
    RUN: Action finished OK
    RUN: Action Mkdir {
        pathname: "/workspace/artifacts",
    }
    [2025-08-08T09:35:30Z DEBUG ambient_ci::action] Plan::execute: Mkdir {
            pathname: "/workspace/artifacts",
        }
    RUN: Action finished OK
    RUN: Action TarExtract {
        archive: "/dev/vdc",
        directory: "/workspace/src",
    }
    [2025-08-08T09:35:30Z DEBUG ambient_ci::action] Plan::execute: TarExtract {
            archive: "/dev/vdc",
            directory: "/workspace/src",
        }
    [2025-08-08T09:35:30Z TRACE ambient_ci::vdrive] extracting /dev/vdc to /workspace/src
    [2025-08-08T09:35:30Z TRACE ambient_ci::vdrive] extraction OK
    RUN: Action finished OK
    RUN: Action TarExtract {
        archive: "/dev/vdf",
        directory: "/workspace/deps",
    }
    [2025-08-08T09:35:30Z DEBUG ambient_ci::action] Plan::execute: TarExtract {
            archive: "/dev/vdf",
            directory: "/workspace/deps",
        }
    [2025-08-08T09:35:30Z TRACE ambient_ci::vdrive] extracting /dev/vdf to /workspace/deps
    [2025-08-08T09:36:12Z TRACE ambient_ci::vdrive] extraction OK
    RUN: Action finished OK
    RUN: Action TarExtract {
        archive: "/dev/vde",
        directory: "/workspace/cache",
    }
    [2025-08-08T09:36:12Z DEBUG ambient_ci::action] Plan::execute: TarExtract {
            archive: "/dev/vde",
            directory: "/workspace/cache",
        }
    [2025-08-08T09:36:12Z TRACE ambient_ci::vdrive] extracting /dev/vde to /workspace/cache
    [2025-08-08T09:39:07Z TRACE ambient_ci::vdrive] extraction OK
    RUN: Action finished OK
    RUN: Action Spawn {
        argv: [
            "find",
            "/workspace",
            "-maxdepth",
            "2",
            "-ls",
        ],
    }
    [2025-08-08T09:39:07Z DEBUG ambient_ci::action] Plan::execute: Spawn {
            argv: [
                "find",
                "/workspace",
                "-maxdepth",
                "2",
                "-ls",
            ],
        }
    SPAWN: argv=["find", "/workspace", "-maxdepth", "2", "-ls"]
           cwd=/workspace/src (exists? true)
           extra_env=[]
      3932161      4 drwxr-xr-x   6 root     root         4096 Aug  8 09:36 /workspace
      3932162      4 drwxr-xr-x   2 root     root         4096 Aug  8 09:35 /workspace/artifacts
      3932682      4 drwxr-xr-x   3 root     root         4096 Aug  8 09:34 /workspace/deps
      3932684    112 -rw-r--r--   1 root     root       114688 Aug  8 09:34 /workspace/deps/.global-cache
      3932683      0 -rw-r--r--   1 root     root            0 Aug  8 06:01 /workspace/deps/.package-cache-mutate
      3932685      0 -rw-r--r--   1 root     root            0 Aug  8 06:01 /workspace/deps/.package-cache
      3932686      4 drwxr-xr-x   5 root     root         4096 Aug  8 06:01 /workspace/deps/registry
      3932163      4 drwxr-xr-x   9 root     root         4096 Aug  8 09:34 /workspace/src
      3932165      4 drwxr-xr-x   2 root     root         4096 Aug  8 09:34 /workspace/src/.radicle
      3932218     36 -rw-r--r--   1 root     root        34789 Aug  8 09:34 /workspace/src/NEWS.md
      3932671     92 -rw-r--r--   1 root     root        90113 Aug  8 09:34 /workspace/src/Cargo.lock
      3932672      4 drwxr-xr-x   2 root     root         4096 Aug  8 09:34 /workspace/src/doc
      3932231      4 -rw-r--r--   1 root     root          732 Aug  8 09:34 /workspace/src/ci-broker.yaml
      3932236      4 -rw-r--r--   1 root     root         1696 Aug  8 09:34 /workspace/src/Cargo.toml
      3932239      8 -rw-r--r--   1 root     root         5418 Aug  8 09:34 /workspace/src/deny.toml
      3932234      8 -rw-r--r--   1 root     root         5951 Aug  8 09:34 /workspace/src/flake.nix
      3932669      8 -rw-r--r--   1 root     root         6528 Aug  8 09:34 /workspace/src/flake.lock
      3932667     12 -rw-r--r--   1 root     root         9723 Aug  8 09:34 /workspace/src/LICENSE-APACHE
      3932235      4 -rw-r--r--   1 root     root           44 Aug  8 09:34 /workspace/src/.gitignore
      3932167      4 -rw-r--r--   1 root     root         1079 Aug  8 09:34 /workspace/src/LICENSE-MIT
      3932212     92 -rw-r--r--   1 root     root        91474 Aug  8 09:34 /workspace/src/ci-broker.md
      3932216      4 -rw-r--r--   1 root     root          257 Aug  8 09:34 /workspace/src/ci-broker.subplot
      3932670      4 -rw-r--r--   1 root     root         1188 Aug  8 09:34 /workspace/src/CONTRIBUTING.md
      3932668      4 -rw-r--r--   1 root     root          311 Aug  8 09:34 /workspace/src/Makefile
      3932237      4 drwxr-xr-x   2 root     root         4096 Aug  8 09:34 /workspace/src/tests
      3932213      4 -rw-r--r--   1 root     root          386 Aug  8 09:34 /workspace/src/cibtool.1
      3932240      4 drwxr-xr-x   8 root     root         4096 Aug  8 09:34 /workspace/src/.git
      3932217      4 -rw-r--r--   1 root     root           10 Aug  8 09:34 /workspace/src/.envrc
      3932219      4 drwxr-xr-x   3 root     root         4096 Aug  8 09:34 /workspace/src/debian
      3932232      8 -rw-r--r--   1 root     root         4796 Aug  8 09:34 /workspace/src/README.md
      3932168      4 drwxr-xr-x   4 root     root         4096 Aug  8 09:34 /workspace/src/src
      3932233      4 -rw-r--r--   1 root     root          970 Aug  8 09:34 /workspace/src/build.rs
      3932164      4 -rw-r--r--   1 root     root          440 Aug  8 09:34 /workspace/src/cib.1
      3932214      4 drwxr-xr-x   2 root     root         4096 Aug  8 09:34 /workspace/src/.cargo
      3955694      4 drwxr-xr-x   6 root     root         4096 Aug  8 06:06 /workspace/cache
      3963791      4 drwxr-xr-x   7 root     root         4096 Aug  8 06:14 /workspace/cache/release
      3967753      4 drwxr-xr-x  12 root     root         4096 Aug  8 06:11 /workspace/cache/doc
      3955696      4 drwxr-xr-x   7 root     root         4096 Aug  8 06:14 /workspace/cache/debug
      3955695      4 drwxr-xr-x   2 root     root         4096 Aug  8 06:01 /workspace/cache/tmp
      3963790      4 -rw-r--r--   1 root     root          218 Aug  8 06:02 /workspace/cache/.rustdoc_fingerprint.json
      3967752      4 -rw-r--r--   1 root     root         1034 Aug  8 06:11 /workspace/cache/.rustc_info.json
    RUN: Action finished OK
    RUN: Action Shell {
        shell: "echo plan execution starts\ndate\n",
    }
    [2025-08-08T09:39:07Z DEBUG ambient_ci::action] Plan::execute: Shell {
            shell: "echo plan execution starts\ndate\n",
        }
    SPAWN: argv=["/bin/bash", "-c", "set -xeuo pipefail\necho plan execution starts\ndate\n\n"]
           cwd=/workspace/src (exists? true)
           extra_env=[]
    + echo plan execution starts
    plan execution starts
    + date
    Fri Aug  8 09:39:07 UTC 2025
    RUN: Action finished OK
    RUN: Action CargoFmt
    [2025-08-08T09:39:07Z DEBUG ambient_ci::action] Plan::execute: CargoFmt
    SPAWN: argv=["cargo", "fmt", "--check"]
           cwd=/workspace/src (exists? true)
           extra_env=[("CARGO_TARGET_DIR", "/workspace/cache"), ("CARGO_HOME", "/workspace/deps"), ("PATH", "/root/.cargo/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin")]
    RUN: Action finished OK
    RUN: Action CargoClippy
    [2025-08-08T09:39:08Z DEBUG ambient_ci::action] Plan::execute: CargoClippy
    SPAWN: argv=["cargo", "clippy", "--offline", "--locked", "--workspace", "--all-targets", "--no-deps", "--", "--deny", "warnings"]
           cwd=/workspace/src (exists? true)
           extra_env=[("CARGO_TARGET_DIR", "/workspace/cache"), ("CARGO_HOME", "/workspace/deps"), ("PATH", "/root/.cargo/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin")]
       Compiling proc-macro2 v1.0.94
       Compiling unicode-ident v1.0.18
       Compiling version_check v0.9.5
       Compiling libc v0.2.171
        Checking cfg-if v1.0.0
       Compiling typenum v1.18.0
       Compiling generic-array v0.14.7
       Compiling quote v1.0.40
       Compiling jobserver v0.1.33
       Compiling syn v2.0.100
       Compiling shlex v1.3.0
       Compiling cc v1.2.18
        Checking crypto-common v0.1.6
       Compiling serde v1.0.219
       Compiling memchr v2.7.4
        Checking subtle v2.6.1
        Checking stable_deref_trait v1.2.0
       Compiling once_cell v1.21.3
       Compiling syn v1.0.109
       Compiling pkg-config v0.3.32
       Compiling bitflags v2.9.0
       Compiling crossbeam-utils v0.8.21
       Compiling anyhow v1.0.97
       Compiling thiserror v2.0.12
        Checking block-padding v0.3.3
        Checking block-buffer v0.10.4
       Compiling getrandom v0.3.2
       Compiling rustix v1.0.5
        Checking writeable v0.5.5
        Checking cpufeatures v0.2.17
       Compiling icu_locid_transform_data v1.5.1
        Checking litemap v0.7.4
        Checking digest v0.10.7
        Checking inout v0.1.4
       Compiling thiserror v1.0.69
       Compiling linux-raw-sys v0.9.3
       Compiling icu_properties_data v1.5.1
        Checking cipher v0.4.4
        Checking getrandom v0.2.15
       Compiling synstructure v0.13.1
       Compiling ahash v0.8.11
       Compiling serde_derive v1.0.219
       Compiling zerofrom-derive v0.1.6
       Compiling yoke-derive v0.7.5
       Compiling zerovec-derive v0.10.3
       Compiling displaydoc v0.2.5
        Checking zerofrom v0.1.5
        Checking yoke v0.7.5
       Compiling thiserror-impl v2.0.12
        Checking zerovec v0.10.4
       Compiling icu_provider_macros v1.5.0
        Checking tinystr v0.7.6
        Checking icu_locid v1.5.0
       Compiling thiserror-impl v1.0.69
        Checking icu_provider v1.5.0
       Compiling icu_normalizer_data v1.5.1
        Checking icu_locid_transform v1.5.0
        Checking icu_collections v1.5.0
       Compiling aho-corasick v1.1.3
       Compiling zerocopy v0.8.24
       Compiling same-file v1.0.6
       Compiling zerocopy v0.7.35
       Compiling vcpkg v0.2.15
        Checking smallvec v1.15.0
       Compiling regex-syntax v0.8.5
       Compiling libz-sys v1.1.22
       Compiling walkdir v2.5.0
        Checking icu_properties v1.5.1
       Compiling regex-automata v0.4.9
       Compiling proc-macro-error-attr v1.0.4
        Checking write16 v1.0.0
       Compiling itoa v1.0.15
       Compiling ucd-trie v0.1.7
        Checking utf16_iter v1.0.5
        Checking utf8_iter v1.0.4
        Checking icu_normalizer v1.5.0
       Compiling pest v2.8.0
       Compiling crossbeam-epoch v0.9.18
       Compiling hashbrown v0.14.5
       Compiling amplify_syn v2.0.1
       Compiling bstr v1.12.0
        Checking universal-hash v0.5.1
       Compiling proc-macro-error v1.0.4
        Checking opaque-debug v0.3.1
       Compiling doc-comment v0.3.3
        Checking log v0.4.27
       Compiling libm v0.2.11
       Compiling unic-common v0.9.0
        Checking signature v1.6.4
       Compiling unic-char-range v0.9.0
        Checking ed25519 v1.5.3
       Compiling unic-char-property v0.9.0
       Compiling globset v0.4.16
       Compiling unic-ucd-version v0.9.0
       Compiling amplify_derive v4.0.1
       Compiling rand_core v0.6.4
       Compiling ppv-lite86 v0.2.21
       Compiling hashlink v0.9.1
       Compiling pest_meta v2.8.0
       Compiling crossbeam-deque v0.8.6
        Checking idna_adapter v1.2.0
       Compiling tracing-attributes v0.1.28
       Compiling libgit2-sys v0.17.0+1.8.1
       Compiling encoding_rs v0.8.35
       Compiling autocfg v1.4.0
       Compiling serde_json v1.0.140
        Checking percent-encoding v2.3.1
        Checking amplify_num v0.5.3
        Checking ct-codecs v1.1.3
        Checking ascii v1.1.0
       Compiling arraydeque v0.5.1
        Checking ec25519 v0.1.0
       Compiling yaml-rust2 v0.9.0
        Checking form_urlencoded v1.2.1
       Compiling num-traits v0.2.19
        Checking amplify v4.8.0
       Compiling git-ref-format-core v0.3.1
        Checking idna v1.0.3
       Compiling pest_generator v2.8.0
       Compiling ignore v0.4.23
       Compiling rand_chacha v0.3.1
       Compiling unic-ucd-segment v0.9.0
        Checking polyval v0.6.2
       Compiling serde_path_to_error v0.1.17
        Checking sha2 v0.10.8
       Compiling pikchr v0.1.4
       Compiling sqlite3-src v0.5.1
       Compiling unicode-linebreak v0.1.5
       Compiling smawk v0.3.2
       Compiling unicode-width v0.1.14
        Checking base64ct v1.6.0
       Compiling unicode-width v0.2.0
       Compiling fnv v1.0.7
       Compiling strsim v0.11.1
       Compiling pulldown-cmark v0.12.2
       Compiling ryu v1.0.20
       Compiling deunicode v1.6.1
       Compiling ident_case v1.0.1
        Checking byteorder v1.5.0
        Checking keccak v0.1.5
       Compiling fastrand v2.3.0
       Compiling slug v0.1.6
        Checking sha3 v0.10.8
       Compiling tempfile v3.19.1
       Compiling darling_core v0.20.11
        Checking pem-rfc7468 v0.7.0
       Compiling textwrap v0.16.2
       Compiling getopts v0.2.21
       Compiling marked-yaml v0.7.2
       Compiling humansize v2.1.3
        Checking ghash v0.5.1
       Compiling unic-segment v0.9.0
       Compiling globwalk v0.9.1
       Compiling pest_derive v2.8.0
       Compiling rand v0.8.5
       Compiling git-ref-format-macro v0.3.1
        Checking url v2.5.4
        Checking cyphergraphy v0.3.0
       Compiling regex v1.11.1
       Compiling subplot v0.12.0
        Checking ctr v0.9.2
        Checking aes v0.8.4
       Compiling tracing-core v0.1.33
        Checking aead v0.5.2
       Compiling utf8-width v0.1.7
        Checking equivalent v1.0.2
       Compiling data-encoding v2.8.0
       Compiling lazy_static v1.5.0
       Compiling unicase v2.8.1
        Checking base32 v0.4.0
       Compiling pulldown-cmark-escape v0.11.0
        Checking hashbrown v0.15.2
       Compiling pin-project-lite v0.2.16
       Compiling tracing v0.1.41
       Compiling data-encoding-macro-internal v0.1.15
        Checking indexmap v2.9.0
        Checking cypheraddr v0.4.0
       Compiling tera v1.20.0
       Compiling html-escape v0.2.13
        Checking aes-gcm v0.10.3
        Checking git-ref-format v0.3.1
       Compiling roadmap v0.7.0
       Compiling darling_macro v0.20.11
        Checking ssh-encoding v0.2.0
        Checking blowfish v0.9.1
        Checking poly1305 v0.8.0
        Checking cbc v0.1.2
        Checking chacha20 v0.9.1
        Checking pbkdf2 v0.12.2
        Checking zeroize v1.8.1
       Compiling base64 v0.22.1
       Compiling descape v2.0.3
       Compiling line-col v0.2.1
        Checking radicle-std-ext v0.1.1
       Compiling typeid v1.0.3
       Compiling cfg_aliases v0.2.1
        Checking data-encoding-macro v0.1.17
       Compiling nix v0.29.0
        Checking ssh-cipher v0.2.0
        Checking bcrypt-pbkdf v0.10.0
       Compiling darling v0.20.11
        Checking socks5-client v0.4.1
        Checking utf8parse v0.2.2
        Checking signature v2.2.0
       Compiling adler2 v2.0.0
        Checking base-x v0.2.11
        Checking multibase v0.9.1
       Compiling miniz_oxide v0.8.8
        Checking ssh-key v0.6.7
        Checking anstyle-parse v0.2.6
        Checking qcheck v1.0.0
        Checking cyphernet v0.5.2
       Compiling derive_builder_core v0.20.2
        Checking radicle-ssh v0.9.0
        Checking chrono v0.4.40
        Checking sqlite3-sys v0.15.2
        Checking nonempty v0.9.0
        Checking sqlite v0.32.0
       Compiling xattr v1.5.0
       Compiling culpa-macros v1.0.2
       Compiling crc32fast v1.4.2
       Compiling filetime v0.2.25
        Checking anstyle v1.0.10
       Compiling time-core v0.1.4
        Checking is_terminal_polyfill v1.70.1
        Checking tinyvec_macros v0.1.1
       Compiling num-conv v0.1.0
        Checking colorchoice v1.0.3
        Checking powerfmt v0.2.0
        Checking anstyle-query v1.1.2
        Checking anstream v0.6.18
        Checking deranged v0.4.0
       Compiling time-macros v0.2.22
        Checking tinyvec v1.9.0
       Compiling tar v0.4.44
       Compiling flate2 v1.1.1
        Checking erased-serde v0.4.6
       Compiling derive_builder_macro v0.20.2
        Checking radicle-dag v0.10.0
        Checking terminal_size v0.4.2
        Checking cvt v0.1.2
        Checking clap_lex v0.7.4
       Compiling rust_decimal v1.37.1
       Compiling heck v0.5.0
        Checking base64 v0.21.7
        Checking regex-syntax v0.6.29
       Compiling clap_derive v4.5.41
        Checking quick-xml v0.37.4
        Checking clap_builder v4.5.41
        Checking regex-automata v0.1.10
        Checking time v0.3.41
        Checking crossbeam-channel v0.5.15
        Checking fs_at v0.2.1
        Checking derive_builder v0.20.2
        Checking serde-untagged v0.1.7
       Compiling radicle-surf v0.22.1
        Checking unicode-normalization v0.1.24
       Compiling culpa v1.0.2
        Checking diligent-date-parser v0.1.5
       Compiling subplot-build v0.12.0
        Checking localtime v1.3.1
        Checking bytesize v2.0.1
       Compiling serde_yml v0.0.12
        Checking never v0.1.0
        Checking siphasher v1.0.1
       Compiling valuable v0.1.1
        Checking arrayvec v0.7.6
        Checking normpath v1.3.0
       Compiling subplotlib v0.12.0
        Checking overload v0.1.1
        Checking nu-ansi-term v0.46.0
        Checking remove_dir_all v1.0.0
        Checking atom_syndication v0.12.7
        Checking libyml v0.0.5
       Compiling radicle-ci-broker v0.19.1 (/workspace/src)
       Compiling subplotlib-derive v0.12.0
        Checking clap v4.5.41
        Checking matchers v0.1.0
        Checking sharded-slab v0.1.7
        Checking tracing-log v0.2.0
        Checking tracing-serde v0.2.0
        Checking uuid v1.16.0
        Checking thread_local v1.1.8
       Compiling valuable-derive v0.1.1
        Checking fs2 v0.4.3
        Checking state v0.6.0
        Checking winnow v0.6.26
        Checking shell-words v1.1.0
        Checking nonempty v0.11.0
        Checking tracing-subscriber v0.3.19
        Checking duration-str v0.12.0
        Checking html-page v0.4.0
        Checking rss v2.0.12
       Compiling ctor v0.2.9
       Compiling qcheck-macros v1.0.0
        Checking git2 v0.19.0
        Checking radicle-git-ext v0.8.1
        Checking radicle-crypto v0.12.0
        Checking radicle-cob v0.14.0
        Checking radicle v0.16.1
        Checking radicle-job v0.2.0
    error: hiding a lifetime that's elided elsewhere is confusing
      --> src/refs.rs:64:31
       |
    64 | pub fn qualified_branch(name: &BranchName) -> Result<Qualified, RefError> {
       |                               ^^^^^^^^^^^            --------- the same lifetime is hidden here
       |                               |
       |                               the lifetime is elided here
       |
       = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
       = note: `-D mismatched-lifetime-syntaxes` implied by `-D warnings`
       = help: to override `-D warnings` add `#[allow(mismatched_lifetime_syntaxes)]`
    help: use `'_` for type paths
       |
    64 | pub fn qualified_branch(name: &BranchName) -> Result<Qualified<'_>, RefError> {
       |                                                               ++++
    
    error: hiding a lifetime that's elided elsewhere is confusing
      --> src/refs.rs:88:31
       |
    88 | pub fn namespaced_from_str(s: &str) -> Result<Namespaced, RefError> {
       |                               ^^^^            ---------- the same lifetime is hidden here
       |                               |
       |                               the lifetime is elided here
       |
       = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
    help: use `'_` for type paths
       |
    88 | pub fn namespaced_from_str(s: &str) -> Result<Namespaced<'_>, RefError> {
       |                                                         ++++
    
    error: could not compile `radicle-ci-broker` (lib) due to 2 previous errors
    warning: build failed, waiting for other jobs to finish...
    error: could not compile `radicle-ci-broker` (lib test) due to 2 previous errors
    ERROR: Action failed: command failed: ["cargo", "clippy", "--offline", "--locked", "--workspace", "--all-targets", "--no-deps", "--", "--deny", "warnings"]
    ERROR: command failed: ["cargo", "clippy", "--offline", "--locked", "--workspace", "--all-targets", "--no-deps", "--", "--deny", "warnings"]
    EXIT CODE: 1
    
    ====================
[2025-08-08T09:41:10Z DEBUG ambient_ci::qemu] QEMU exit code 1
ERROR: failed to run actions in QEMU

Ambient stderr

<empty log>