CI run for radicle-ci-ambient

Radicle repository id rad:z35CgFVYCKpqqDtJMzk8dyE6dViS6

Triggered by

{
  "request": "trigger",
  "version": 1,
  "event_type": "patch",
  "repository": {
    "id": "rad:z35CgFVYCKpqqDtJMzk8dyE6dViS6",
    "name": "radicle-ci-ambient",
    "description": "Radicle CI adapter for the Ambient CI engine",
    "private": false,
    "default_branch": "main",
    "delegates": [
      "did:key:z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV"
    ]
  },
  "action": "Created",
  "patch": {
    "id": "f0880368ef5ab1a5519583463bf09ee70018d100",
    "author": {
      "id": "did:key:z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV",
      "alias": "liw"
    },
    "title": "feat: optional extra config file to give to Ambient",
    "state": {
      "status": "open",
      "conflicts": []
    },
    "before": "46a8659a146de6288cc099d350b32f9f64569a65",
    "after": "c78b4f286becd708151a240385f91536f4ca8352",
    "commits": [
      "c78b4f286becd708151a240385f91536f4ca8352",
      "71f49e128260ac1d3bfaccb65cf674f9f2f525c8",
      "3ba169b552ed1a9473188ccd65fe23cca746d06d",
      "efedb7a1b06b60cdecce4eb17751f8ed3b1274dc"
    ],
    "target": "46a8659a146de6288cc099d350b32f9f64569a65",
    "labels": [],
    "assignees": [],
    "revisions": [
      {
        "id": "f0880368ef5ab1a5519583463bf09ee70018d100",
        "author": {
          "id": "did:key:z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV",
          "alias": "liw"
        },
        "description": "",
        "base": "46a8659a146de6288cc099d350b32f9f64569a65",
        "oid": "c78b4f286becd708151a240385f91536f4ca8352",
        "timestamp": 1748265873
      }
    ]
  }
}

Run log

[2025-05-26T13:26:30Z 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: Extracting tar archive from /dev/vdb
./
./plan.yaml
./run-ci

INFO: Running run-ci from /dev/vdb
================================ BEGIN ================================
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: cargo_fmt
- action: cargo_clippy
- action: shell
  shell: |
    export DEBEMAIL=liw@liw.fi
    export DEBFULLNAME="Lars Wirzenius"
    export CARGO_HOME=/workspace/deps
    export CARGO_TARGET_DIR=/workspace/cache
    export HOME=/root
    export PATH="/root/.cargo/bin:/bin:/sbin"

    git reset --hard
    git clean -fdx
    # git switch main
    git status --ignored
    # git clean -fdx

    # Configure Git so that it can be used in the tests for this
    # project.
    git config --global user.email "test@example.com"
    git config --global user.name "Testy McTestface"

    find /workspace/deps -name "*.crate"
    cargo test --offline

    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: deb
- 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",
}
RUN: Action finished OK
RUN: Action Mkdir {
    pathname: "/workspace/artifacts",
}
RUN: Action finished OK
RUN: Action TarExtract {
    archive: "/dev/vdc",
    directory: "/workspace/src",
}
RUN: Action finished OK
RUN: Action TarExtract {
    archive: "/dev/vdf",
    directory: "/workspace/deps",
}
RUN: Action finished OK
RUN: Action TarExtract {
    archive: "/dev/vde",
    directory: "/workspace/cache",
}
RUN: Action finished OK
RUN: Action Spawn {
    argv: [
        "find",
        "/workspace",
        "-maxdepth",
        "2",
        "-ls",
    ],
}
SPAWN: argv=["find", "/workspace", "-maxdepth", "2", "-ls"]
       cwd=/workspace/src (exists? true)
       extra_env=[]
  6029313      4 drwxr-xr-x   6 root     root         4096 May 26 13:25 /workspace
  6029448      4 drwxr-xr-x   3 root     root         4096 May 26 13:24 /workspace/deps
  6029449    120 -rw-r--r--   1 root     root       122880 May 26 13:24 /workspace/deps/.global-cache
  6029450      0 -rw-r--r--   1 root     root            0 Apr  8 10:34 /workspace/deps/.package-cache
  6029451      4 drwxr-xr-x   5 root     root         4096 Apr  8 10:34 /workspace/deps/registry
  6057254      4 drwxr-xr-x   4 root     root         4096 Apr  8 10:36 /workspace/cache
  6065486      4 drwxr-xr-x   7 root     root         4096 May 26 05:07 /workspace/cache/release
  6070351      4 -rw-r--r--   1 root     root         1177 May 26 05:07 /workspace/cache/.rustc_info.json
  6057255      4 drwxr-xr-x   7 root     root         4096 Apr  8 10:34 /workspace/cache/debug
  6029316      4 drwxr-xr-x   7 root     root         4096 May 26 13:24 /workspace/src
  6029317      4 drwxr-xr-x   2 root     root         4096 May 26 13:24 /workspace/src/.radicle
  6029344      4 -rw-r--r--   1 root     root          802 May 26 13:24 /workspace/src/build.rs
  6029325      4 -rw-r--r--   1 root     root          285 May 26 13:24 /workspace/src/ambient.subplot
  6029332      4 drwxr-xr-x   3 root     root         4096 May 26 13:24 /workspace/src/debian
  6029331      4 -rw-r--r--   1 root     root         2484 May 26 13:24 /workspace/src/NEWS.md
  6029345      4 -rw-r--r--   1 root     root           30 May 26 13:24 /workspace/src/.gitignore
  6029346      4 -rw-r--r--   1 root     root          885 May 26 13:24 /workspace/src/Cargo.toml
  6029320      4 drwxr-xr-x   2 root     root         4096 May 26 13:24 /workspace/src/src
  6029326      4 -rw-r--r--   1 root     root          114 May 26 13:24 /workspace/src/config.yaml
  6029445      4 -rw-r--r--   1 root     root          402 May 26 13:24 /workspace/src/Makefile
  6029319      8 -rw-r--r--   1 root     root         7310 May 26 13:24 /workspace/src/ambient.md
  6029329      4 -rw-r--r--   1 root     root         1390 May 26 13:24 /workspace/src/ambient.py
  6029447    108 -rw-r--r--   1 root     root       109646 May 26 13:24 /workspace/src/Cargo.lock
  6029330      4 -rw-r--r--   1 root     root           29 May 26 13:24 /workspace/src/rust-toolchain.toml
  6029446      4 -rw-r--r--   1 root     root          232 May 26 13:24 /workspace/src/ambient.yaml
  6029343      4 -rw-r--r--   1 root     root         2446 May 26 13:24 /workspace/src/README.md
  6029347      4 drwxr-xr-x   8 root     root         4096 May 26 13:24 /workspace/src/.git
  6029327      4 drwxr-xr-x   2 root     root         4096 May 26 13:24 /workspace/src/.cargo
  6029315      4 drwxr-xr-x   2 root     root         4096 May 26 13:25 /workspace/artifacts
RUN: Action finished OK
RUN: Action 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
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 radicle-ci-ambient v0.9.0 (/workspace/src)
    Finished `dev` profile [unoptimized + debuginfo] target(s) in 3.69s
RUN: Action finished OK
RUN: Action Shell {
    shell: "export DEBEMAIL=liw@liw.fi\nexport DEBFULLNAME=\"Lars Wirzenius\"\nexport CARGO_HOME=/workspace/deps\nexport CARGO_TARGET_DIR=/workspace/cache\nexport HOME=/root\nexport PATH=\"/root/.cargo/bin:/bin:/sbin\"\n\ngit reset --hard\ngit clean -fdx\n# git switch main\ngit status --ignored\n# git clean -fdx\n\n# Configure Git so that it can be used in the tests for this\n# project.\ngit config --global user.email \"test@example.com\"\ngit config --global user.name \"Testy McTestface\"\n\nfind /workspace/deps -name \"*.crate\"\ncargo test --offline\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",
}
SPAWN: argv=["/bin/bash", "-c", "set -xeuo pipefail\nexport DEBEMAIL=liw@liw.fi\nexport DEBFULLNAME=\"Lars Wirzenius\"\nexport CARGO_HOME=/workspace/deps\nexport CARGO_TARGET_DIR=/workspace/cache\nexport HOME=/root\nexport PATH=\"/root/.cargo/bin:/bin:/sbin\"\n\ngit reset --hard\ngit clean -fdx\n# git switch main\ngit status --ignored\n# git clean -fdx\n\n# Configure Git so that it can be used in the tests for this\n# project.\ngit config --global user.email \"test@example.com\"\ngit config --global user.name \"Testy McTestface\"\n\nfind /workspace/deps -name \"*.crate\"\ncargo test --offline\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\n"]
       cwd=/workspace/src (exists? true)
       extra_env=[]
+ export DEBEMAIL=liw@liw.fi
+ DEBEMAIL=liw@liw.fi
+ export 'DEBFULLNAME=Lars Wirzenius'
+ DEBFULLNAME='Lars Wirzenius'
+ export CARGO_HOME=/workspace/deps
+ CARGO_HOME=/workspace/deps
+ export CARGO_TARGET_DIR=/workspace/cache
+ CARGO_TARGET_DIR=/workspace/cache
+ export HOME=/root
+ HOME=/root
+ export PATH=/root/.cargo/bin:/bin:/sbin
+ PATH=/root/.cargo/bin:/bin:/sbin
+ git reset --hard
HEAD is now at c78b4f2 feat: optional extra config file to give to Ambient
+ git clean -fdx
+ git status --ignored
HEAD detached at c78b4f2
nothing to commit, working tree clean
+ git config --global user.email test@example.com
+ git config --global user.name 'Testy McTestface'
+ find /workspace/deps -name '*.crate'
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/walkdir-2.5.0.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/ecdsa-0.16.9.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/zerofrom-0.1.5.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/zeroize-1.8.1.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/darling-0.20.11.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/anyhow-1.0.97.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/syn-2.0.100.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/is-terminal-0.4.16.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/serde_path_to_error-0.1.17.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/data-encoding-macro-internal-0.1.15.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/diligent-date-parser-0.1.5.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/digest-0.10.7.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/gimli-0.31.1.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/roadmap-0.5.0.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/qcheck-1.0.0.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/rss-2.0.12.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/rend-0.4.2.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/num-traits-0.2.19.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/wit-bindgen-rt-0.39.0.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/roadmap-0.7.0.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/vcpkg-0.2.15.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/windows-sys-0.52.0.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/hashbrown-0.12.3.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/stable_deref_trait-1.2.0.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/generator-0.7.5.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/radium-0.7.0.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/base16ct-0.2.0.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/env_filter-0.1.3.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/percent-encoding-2.3.1.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/sha2-0.10.8.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/time-0.3.41.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/byte-unit-5.1.6.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/marked-yaml-0.7.2.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/heck-0.5.0.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/git-ref-format-core-0.4.0.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/data-encoding-macro-0.1.17.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/ahash-0.7.8.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/opaque-debug-0.3.1.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/windows_i686_gnullvm-0.52.6.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/signature-2.2.0.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/cfg_aliases-0.2.1.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/file_diff-1.0.0.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/tracing-subscriber-0.3.19.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/lazy_static-1.5.0.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/windows_x86_64_msvc-0.48.5.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/utf8parse-0.2.2.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/tinystr-0.7.6.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/crossbeam-deque-0.8.6.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/generic-array-0.14.7.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/num-integer-0.1.46.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/humansize-2.1.3.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/data-encoding-2.8.0.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/url-2.5.4.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/crypto-common-0.1.6.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/cfg-if-1.0.0.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/pest_derive-2.8.0.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/anstyle-1.0.10.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/zerovec-0.10.4.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/hmac-0.12.1.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/textwrap-0.16.2.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/crypto-bigint-0.5.5.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/crossbeam-channel-0.5.14.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/ptr_meta-0.1.4.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/bytesize-1.3.3.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/windows-targets-0.48.5.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/cypheraddr-0.4.0.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/time-core-0.1.4.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/linux-raw-sys-0.9.3.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/windows_aarch64_msvc-0.48.5.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/simdutf8-0.1.5.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/ed25519-1.5.3.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/git-ref-format-macro-0.4.0.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/aes-gcm-0.10.3.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/unsafe-libyaml-0.2.11.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/derive_builder-0.20.2.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/ordered-float-2.10.1.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/windows_aarch64_gnullvm-0.52.6.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/unic-ucd-segment-0.9.0.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/tinyvec_macros-0.1.1.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/wasm-bindgen-shared-0.2.100.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/linked-hash-map-0.5.6.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/env_logger-0.10.2.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/pkcs1-0.7.5.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/crc32fast-1.4.2.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/icu_provider-1.5.0.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/ssh-encoding-0.2.0.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/hashbrown-0.14.5.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/bytecheck_derive-0.6.12.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/git2-0.19.0.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/form_urlencoded-1.2.1.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/num-conv-0.1.0.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/fnv-1.0.7.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/regex-automata-0.4.9.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/siphasher-1.0.1.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/termcolor-1.4.1.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/utf8-width-0.1.7.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/indexmap-2.9.0.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/amplify_derive-4.0.1.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/thread_local-1.1.8.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/html-escape-0.2.13.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/state-0.5.3.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/writeable-0.5.5.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/icu_normalizer-1.5.0.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/cc-1.2.18.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/ghash-0.5.1.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/p384-0.13.1.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/signature-1.6.4.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/unicode-normalization-0.1.24.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/anstyle-wincon-3.0.7.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/valuable-serde-0.1.1.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/winapi-x86_64-pc-windows-gnu-0.4.0.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/rand_core-0.6.4.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/anstream-0.6.18.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/git-testament-0.2.6.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/windows_aarch64_msvc-0.52.6.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/wyz-0.5.1.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/deunicode-1.6.1.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/icu_locid_transform-1.5.0.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/spin-0.9.8.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/subplot-0.12.0.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/nonempty-0.11.0.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/byteorder-1.5.0.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/displaydoc-0.2.5.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/nu-ansi-term-0.46.0.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/never-0.1.0.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/cyphernet-0.5.2.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/derive_builder_core-0.20.2.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/portable-atomic-1.11.0.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/aes-0.8.4.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/rustc-demangle-0.1.24.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/unescape-0.1.0.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/hex-0.4.3.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/overload-0.1.1.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/uuid-1.16.0.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/unicode-ident-1.0.18.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/serde-aux-4.6.0.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/ascii-1.1.0.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/icu_collections-1.5.0.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/windows_aarch64_gnullvm-0.48.5.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/globwalk-0.9.1.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/funty-2.0.0.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/utf8_iter-1.0.4.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/icu_locid-1.5.0.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/crossbeam-utils-0.8.21.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/derive_builder_macro-0.20.2.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/ctr-0.9.2.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/icu_properties-1.5.1.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/litemap-0.7.4.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/cipher-0.4.4.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/time-macros-0.2.22.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/miniz_oxide-0.8.7.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/icu_normalizer_data-1.5.1.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/windows_i686_gnu-0.48.5.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/serde_yaml-0.9.34+deprecated.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/bumpalo-3.17.0.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/html-page-0.4.0.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/idna_adapter-1.2.0.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/ignore-0.4.23.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/bstr-1.11.3.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/cbc-0.1.2.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/sqlite-0.32.0.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/ahash-0.8.11.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/glob-0.3.2.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/culpa-macros-1.0.2.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/ec25519-0.1.0.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/quick-xml-0.37.4.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/hermit-abi-0.5.0.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/getopts-0.2.21.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/synstructure-0.13.1.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/chacha20-0.9.1.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/equivalent-1.0.2.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/crossbeam-channel-0.5.15.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/windows_i686_msvc-0.48.5.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/smawk-0.3.2.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/duration-str-0.12.0.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/slug-0.1.6.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/aead-0.5.2.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/winnow-0.7.6.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/hashlink-0.9.1.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/toml_edit-0.22.24.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/r-efi-5.2.0.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/unicode-width-0.2.0.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/fehler-1.0.0.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/fs_at-0.2.1.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/valuable-0.1.1.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/windows_i686_gnu-0.52.6.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.94.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/tar-0.4.44.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/memchr-2.7.4.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/libm-0.2.11.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/deranged-0.4.1.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/ff-0.13.1.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/option-ext-0.2.0.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/amplify-4.8.0.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/proc-macro-error-attr2-2.0.0.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/clap_builder-4.5.35.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/clap_lex-0.7.4.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/sharded-slab-0.1.7.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/colorchoice-1.0.3.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/serde_yml-0.0.12.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/subplotlib-derive-0.12.0.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/darling_core-0.20.11.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/icu_locid_transform_data-1.5.1.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/rand_chacha-0.3.1.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/indexmap-1.9.3.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/tracing-attributes-0.1.28.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/arraydeque-0.5.1.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/clap_derive-4.5.32.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/clap-4.5.35.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/terminal_size-0.4.2.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/nix-0.29.0.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/radicle-ci-broker-0.16.0.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/ssh-key-0.6.7.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/adler2-2.0.0.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/tempfile-3.19.1.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/base64-0.22.1.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/rkyv_derive-0.7.45.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/serde-1.0.219.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/ct-codecs-1.1.3.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/unicode-width-0.1.14.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/scoped-tls-1.0.1.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/serde_derive-1.0.219.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/seahash-4.1.0.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/regex-1.11.1.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/doc-comment-0.3.3.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/amplify_num-0.5.3.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/radicle-surf-0.22.1.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/windows_x86_64_gnullvm-0.52.6.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/zerocopy-0.7.35.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/zerovec-derive-0.10.3.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/itoa-1.0.15.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/shell-words-1.1.0.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/winnow-0.6.26.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/pkcs8-0.10.2.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/der-0.7.9.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/windows-sys-0.59.0.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/ppv-lite86-0.2.21.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/dirs-sys-0.4.1.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/unic-char-property-0.9.0.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/sha256-1.6.0.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/tap-1.0.1.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/tracing-serde-0.2.0.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/proc-macro-error2-2.0.1.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/wasm-bindgen-backend-0.2.100.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/p256-0.13.2.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/textwrap-0.15.2.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/hashbrown-0.15.2.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/serde_yaml-0.8.26.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/fastrand-2.3.0.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/same-file-1.0.6.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/async-trait-0.1.88.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/errno-0.3.11.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/toml_datetime-0.6.8.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/idna-1.0.3.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/powerfmt-0.2.0.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/winapi-i686-pc-windows-gnu-0.4.0.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/socks5-client-0.4.1.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/num-bigint-dig-0.8.4.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/env_logger-0.11.8.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/object-0.36.7.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/ryu-1.0.20.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/addr2line-0.24.2.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/regex-automata-0.1.10.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/rustversion-1.0.20.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/const-oid-0.9.6.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/keccak-0.1.5.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/pikchr-0.1.4.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/subplot-build-0.12.0.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/universal-hash-0.5.1.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/litemap-0.7.5.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/aho-corasick-1.1.3.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/elliptic-curve-0.13.8.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/line-col-0.2.1.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/radicle-git-ext-0.9.0.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/windows_i686_msvc-0.52.6.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/chrono-0.4.40.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/proc-macro-error-1.0.4.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/radicle-ssh-0.9.0.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/zerocopy-derive-0.7.35.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/regex-syntax-0.8.5.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/anstyle-query-1.1.2.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/unicode-linebreak-0.1.5.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/unic-ucd-version-0.9.0.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/wasi-0.11.0+wasi-snapshot-preview1.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/pulldown-cmark-0.12.2.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/borsh-1.5.7.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/quote-1.0.40.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/jiff-static-0.2.6.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/remove_dir_all-1.0.0.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/log-0.4.27.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/darling_macro-0.20.11.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/polyval-0.6.2.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/block-padding-0.3.3.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/borsh-derive-1.5.7.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/bitvec-1.0.1.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/num-iter-0.1.45.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/git-ref-format-macro-0.3.1.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/thiserror-impl-1.0.69.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/subplotlib-0.9.0.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/atom_syndication-0.12.7.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/blowfish-0.9.1.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/aligned-0.4.2.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/portable-atomic-util-0.2.4.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/humantime-2.2.0.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/crossbeam-epoch-0.9.18.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/unic-common-0.9.0.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/base32-0.4.0.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/subplotlib-derive-0.9.0.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/pulldown-cmark-0.9.6.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/subplot-build-0.9.0.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/culpa-1.0.2.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/spki-0.7.3.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/ambient-ci-0.2.0.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/tokio-1.44.2.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/primeorder-0.13.6.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/nonempty-0.9.0.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/is_terminal_polyfill-1.70.1.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/getrandom-0.3.2.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/yaml-rust2-0.9.0.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/bitflags-2.9.0.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/wasm-bindgen-macro-0.2.100.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/radicle-0.14.0.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/serde-value-0.7.0.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/regex-syntax-0.6.29.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/git-ref-format-0.4.0.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/block-buffer-0.10.4.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/thiserror-1.0.69.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/redox_users-0.4.6.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/redox_syscall-0.5.11.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/fs2-0.4.3.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/utf16_iter-1.0.5.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/deranged-0.4.0.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/radicle-crypto-0.11.0.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/sec1-0.7.3.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/thiserror-2.0.12.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/cpufeatures-0.2.17.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/jiff-0.2.6.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/base64ct-1.7.3.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/group-0.13.0.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/rand-0.8.5.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/rkyv-0.7.45.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/pkg-config-0.3.32.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/once_cell-1.21.3.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/remove_dir_all-0.8.4.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/directories-5.0.1.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/windows_x86_64_gnu-0.48.5.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/unicase-2.8.1.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/tempfile-fast-0.3.4.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/windows_x86_64_msvc-0.52.6.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/descape-2.0.3.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/tracing-0.1.41.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/windows-targets-0.52.6.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/rust_decimal-1.37.1.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/pest_generator-2.8.0.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/globset-0.4.16.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/radicle-cob-0.13.0.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/rsa-0.9.8.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/typenum-1.18.0.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/pest-2.8.0.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/anstyle-parse-0.2.6.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/smallvec-1.15.0.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/autocfg-1.4.0.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/proc-macro-error-attr-1.0.4.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/inout-0.1.4.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/ucd-trie-0.1.7.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/radicle-std-ext-0.1.1.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/filetime-0.2.25.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/tinyvec-1.9.0.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/xattr-1.5.0.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/bytecheck-0.6.12.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/zerocopy-derive-0.8.24.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/zerofrom-derive-0.1.6.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/bytes-1.10.1.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/pem-rfc7468-0.7.0.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/valuable-derive-0.1.1.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/git-testament-derive-0.2.1.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/proc-macro-crate-3.3.0.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/ssh-cipher-0.2.0.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/cyphergraphy-0.3.0.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/winapi-0.3.9.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/wasm-bindgen-0.2.100.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/yoke-derive-0.7.5.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/unic-segment-0.9.0.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/libz-sys-1.1.22.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/version_check-0.9.5.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/pbkdf2-0.12.2.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/as-slice-0.2.1.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/yoke-0.7.5.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/windows-sys-0.48.0.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/git-ref-format-0.3.1.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/subtle-2.6.1.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/libc-0.2.171.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/serde_json-1.0.140.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/multibase-0.9.1.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/sqlite3-src-0.5.1.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/amplify_syn-2.0.1.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/loom-0.5.6.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/winapi-util-0.1.9.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/windows_x86_64_gnullvm-0.48.5.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/subplotlib-0.12.0.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/tracing-core-0.1.33.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/write16-1.0.0.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/rustix-1.0.5.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/radicle-dag-0.10.0.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/encoding_rs-0.8.35.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/pin-project-lite-0.2.16.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/shlex-1.3.0.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/thiserror-impl-2.0.12.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/base64ct-1.6.0.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/flate2-1.1.1.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/git-ref-format-core-0.3.1.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/radicle-git-ext-0.8.1.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/windows_x86_64_gnu-0.52.6.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/subplot-0.9.0.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/fehler-macros-1.0.0.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/backtrace-0.3.74.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/bcrypt-pbkdf-0.10.0.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/syn-1.0.109.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/arrayvec-0.7.6.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/matchers-0.1.0.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/jobserver-0.1.33.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/state-0.6.0.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/base-x-0.2.11.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/pulldown-cmark-escape-0.11.0.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/ident_case-1.0.1.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/getrandom-0.2.15.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/cvt-0.1.2.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/unic-char-range-0.9.0.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/sqlite3-sys-0.15.2.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/tera-1.20.0.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/normpath-1.3.0.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/pest_meta-2.8.0.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/localtime-1.3.1.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/wasm-bindgen-macro-support-0.2.100.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/zerocopy-0.8.24.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/libgit2-sys-0.17.0+1.8.1.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/libyml-0.0.5.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/base64-0.21.7.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/libredox-0.1.3.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/zerofrom-0.1.6.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/icu_properties_data-1.5.1.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/tracing-log-0.2.0.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/rfc6979-0.4.0.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/windows-0.48.0.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/icu_provider_macros-1.5.0.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/yaml-rust-0.4.5.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/strsim-0.11.1.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/radicle-ci-broker-0.15.1.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/poly1305-0.8.0.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/ptr_meta_derive-0.1.4.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/p521-0.13.3.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/sha3-0.10.8.crate
/workspace/deps/registry/cache/index.crates.io-6f17d22bba15001f/wasi-0.14.2+wasi-0.2.4.crate
+ cargo test --offline
   Compiling radicle-ci-ambient v0.9.0 (/workspace/src)
    Finished `test` profile [unoptimized + debuginfo] target(s) in 1.89s
     Running unittests src/lib.rs (/workspace/cache/debug/deps/radicle_ci_ambient-f1cf70a71a616205)

running 0 tests

test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s

     Running unittests src/main.rs (/workspace/cache/debug/deps/radicle_ci_ambient-5717a0494afcb674)

running 0 tests

test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s

   Doc-tests radicle_ci_ambient

running 0 tests

test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s

++ sed 's/-[^-]*$//'
++ dpkg-parsechangelog -SVersion
+ V=0.9.0
++ date -u +%Y%m%dT%H%M%S
+ T=20250526T132546
+ version=0.9.0.ci20250526T132546-1
+ dch -v 0.9.0.ci20250526T132546-1 'CI build under Ambient.'
+ dch -r ''
RUN: Action finished OK
RUN: Action Deb
SPAWN: argv=["/bin/bash", "-c", "#!/bin/bash\nset -xeuo pipefail\n\necho \"PATH at start: $PATH\"\nexport PATH=\"/root/.cargo/bin:$PATH\"\nexport CARGO_HOME=/workspace/deps\nexport DEBEMAIL=liw@liw.fi\nexport DEBFULLNAME=\"Lars Wirzenius\"\n/bin/env\n\ncommand -v cargo\ncommand -v rustc\n\ncargo --version\nrustc --version\n\n# Get name and version of source package.\nname=\"$(dpkg-parsechangelog -SSource)\"\nversion=\"$(dpkg-parsechangelog -SVersion)\"\n\n# Get upstream version: everything before the last dash.\nuv=\"$(echo \"$version\" | sed 's/-[^-]*$//')\"\n\n# Files that will be created.\narch=\"$(dpkg --print-architecture)\"\norig=\"../${name}_${uv}.orig.tar.xz\"\ndeb=\"../${name}_${version}_${arch}.deb\"\nchanges=\"../${name}_${version}_${arch}.changes\"\n\n# Create \"upstream tarball\".\ngit archive HEAD | xz >\"$orig\"\n\n# Build package.\ndpkg-buildpackage -us -uc\n\n# Dump some information to make it easier to visually verify\n# everything looks OK. Also, test the package with the lintian tool.\n\nls -l ..\nfor x in ../*.deb; do dpkg -c \"$x\"; done\n# FIXME: disabled while this prevents radicle-native-ci deb from being built.\n# lintian -i --allow-root --fail-on warning ../*.changes\n\n# Move files to artifacts directory.\nmv ../*_* /workspace/artifacts\n        "]
       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")]
+ echo 'PATH at start: /root/.cargo/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin'
PATH at start: /root/.cargo/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
+ export PATH=/root/.cargo/bin:/root/.cargo/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
+ PATH=/root/.cargo/bin:/root/.cargo/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
+ export CARGO_HOME=/workspace/deps
+ CARGO_HOME=/workspace/deps
+ export DEBEMAIL=liw@liw.fi
+ DEBEMAIL=liw@liw.fi
+ export 'DEBFULLNAME=Lars Wirzenius'
+ DEBFULLNAME='Lars Wirzenius'
+ /bin/env
DEBFULLNAME=Lars Wirzenius
CARGO_TARGET_DIR=/workspace/cache
PWD=/workspace/src
SYSTEMD_EXEC_PID=297
LANG=C.UTF-8
CARGO_HOME=/workspace/deps
DEBEMAIL=liw@liw.fi
INVOCATION_ID=627120fe5b954a7a84cc201d018cb33d
SHLVL=2
JOURNAL_STREAM=8:13674
PATH=/root/.cargo/bin:/root/.cargo/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
OLDPWD=/
_=/bin/env
+ command -v cargo
/root/.cargo/bin/cargo
+ command -v rustc
/root/.cargo/bin/rustc
+ cargo --version
cargo 1.80.1 (376290515 2024-07-16)
+ rustc --version
rustc 1.80.1 (3f5fd8dd4 2024-08-06)
++ dpkg-parsechangelog -SSource
+ name=radicle-ci-ambient
++ dpkg-parsechangelog -SVersion
+ version=0.9.0.ci20250526T132546-1
++ echo 0.9.0.ci20250526T132546-1
++ sed 's/-[^-]*$//'
+ uv=0.9.0.ci20250526T132546
++ dpkg --print-architecture
+ arch=amd64
+ orig=../radicle-ci-ambient_0.9.0.ci20250526T132546.orig.tar.xz
+ deb=../radicle-ci-ambient_0.9.0.ci20250526T132546-1_amd64.deb
+ changes=../radicle-ci-ambient_0.9.0.ci20250526T132546-1_amd64.changes
+ git archive HEAD
+ xz
+ dpkg-buildpackage -us -uc
dpkg-buildpackage: info: source package radicle-ci-ambient
dpkg-buildpackage: info: source version 0.9.0.ci20250526T132546-1
dpkg-buildpackage: info: source distribution unstable
dpkg-buildpackage: info: source changed by Lars Wirzenius <liw@liw.fi>
dpkg-buildpackage: info: host architecture amd64
 dpkg-source --before-build .
 debian/rules clean
dh clean
   dh_auto_clean
   dh_clean
 dpkg-source -b .
dpkg-source: info: using source format '3.0 (quilt)'
dpkg-source: info: building radicle-ci-ambient using existing ./radicle-ci-ambient_0.9.0.ci20250526T132546.orig.tar.xz
dpkg-source: info: building radicle-ci-ambient in radicle-ci-ambient_0.9.0.ci20250526T132546-1.debian.tar.xz
dpkg-source: info: building radicle-ci-ambient in radicle-ci-ambient_0.9.0.ci20250526T132546-1.dsc
 debian/rules build
dh build
   dh_update_autotools_config
   dh_autoreconf
   dh_auto_configure
   debian/rules override_dh_auto_build
make[1]: Entering directory '/workspace/src'
true
make[1]: Leaving directory '/workspace/src'
   debian/rules override_dh_auto_test
make[1]: Entering directory '/workspace/src'
echo tests are disabled, for now
tests are disabled, for now
make[1]: Leaving directory '/workspace/src'
   create-stamp debian/debhelper-build-stamp
 debian/rules binary
dh binary
   dh_testroot
   dh_prep
   debian/rules override_dh_auto_install
make[1]: Entering directory '/workspace/src'
cargo install --locked --offline --path=. --root=debian/radicle-ci-ambient
  Installing radicle-ci-ambient v0.9.0 (/workspace/src)
   Compiling radicle-ci-ambient v0.9.0 (/workspace/src)
    Finished `release` profile [optimized] target(s) in 3.25s
  Installing debian/radicle-ci-ambient/bin/radicle-ci-ambient
   Installed package `radicle-ci-ambient v0.9.0 (/workspace/src)` (executable `radicle-ci-ambient`)
warning: be sure to add `debian/radicle-ci-ambient/bin` to your PATH to be able to run the installed binaries
rm -f debian/*/.crates*.*
make[1]: Leaving directory '/workspace/src'
   dh_installdocs
   dh_installchangelogs
   dh_lintian
   dh_perl
   dh_link
   dh_strip_nondeterminism
   dh_compress
   dh_fixperms
   dh_missing
   dh_strip
   dh_makeshlibs
   dh_shlibdeps
dpkg-shlibdeps: warning: package could avoid a useless dependency if debian/radicle-ci-ambient/bin/radicle-ci-ambient was not linked against libm.so.6 (it uses none of the library's symbols)
   dh_installdeb
   dh_gencontrol
   dh_md5sums
   dh_builddeb
dpkg-deb: building package 'radicle-ci-ambient' in '../radicle-ci-ambient_0.9.0.ci20250526T132546-1_amd64.deb'.
dpkg-deb: building package 'radicle-ci-ambient-dbgsym' in '../radicle-ci-ambient-dbgsym_0.9.0.ci20250526T132546-1_amd64.deb'.
 dpkg-genbuildinfo -O../radicle-ci-ambient_0.9.0.ci20250526T132546-1_amd64.buildinfo
 dpkg-genchanges -O../radicle-ci-ambient_0.9.0.ci20250526T132546-1_amd64.changes
dpkg-genchanges: info: including full source code in upload
 dpkg-source --after-build .
dpkg-buildpackage: info: full upload (original source is included)
+ ls -l ..
total 1360
drwxr-xr-x 2 root root    4096 May 26 13:25 artifacts
drwxr-xr-x 4 root root    4096 Apr  8 10:36 cache
drwxr-xr-x 3 root root    4096 May 26 13:25 deps
-rw-r--r-- 1 root root  165744 May 26 13:25 radicle-ci-ambient-dbgsym_0.9.0.ci20250526T132546-1_amd64.deb
-rw-r--r-- 1 root root    1924 May 26 13:25 radicle-ci-ambient_0.9.0.ci20250526T132546-1.debian.tar.xz
-rw-r--r-- 1 root root    1077 May 26 13:25 radicle-ci-ambient_0.9.0.ci20250526T132546-1.dsc
-rw-r--r-- 1 root root    6328 May 26 13:25 radicle-ci-ambient_0.9.0.ci20250526T132546-1_amd64.buildinfo
-rw-r--r-- 1 root root    2603 May 26 13:25 radicle-ci-ambient_0.9.0.ci20250526T132546-1_amd64.changes
-rw-r--r-- 1 root root 1148100 May 26 13:25 radicle-ci-ambient_0.9.0.ci20250526T132546-1_amd64.deb
-rw-r--r-- 1 root root   36804 May 26 13:25 radicle-ci-ambient_0.9.0.ci20250526T132546.orig.tar.xz
drwxr-xr-x 7 root root    4096 May 26 13:25 src
+ for x in ../*.deb
+ dpkg -c ../radicle-ci-ambient-dbgsym_0.9.0.ci20250526T132546-1_amd64.deb
drwxr-xr-x root/root         0 2025-05-26 13:25 ./
drwxr-xr-x root/root         0 2025-05-26 13:25 ./usr/
drwxr-xr-x root/root         0 2025-05-26 13:25 ./usr/lib/
drwxr-xr-x root/root         0 2025-05-26 13:25 ./usr/lib/debug/
drwxr-xr-x root/root         0 2025-05-26 13:25 ./usr/lib/debug/.build-id/
drwxr-xr-x root/root         0 2025-05-26 13:25 ./usr/lib/debug/.build-id/bb/
-rw-r--r-- root/root    891544 2025-05-26 13:25 ./usr/lib/debug/.build-id/bb/c1979b5b20be0a7e5db6602d87b61970ead5c5.debug
drwxr-xr-x root/root         0 2025-05-26 13:25 ./usr/share/
drwxr-xr-x root/root         0 2025-05-26 13:25 ./usr/share/doc/
lrwxrwxrwx root/root         0 2025-05-26 13:25 ./usr/share/doc/radicle-ci-ambient-dbgsym -> radicle-ci-ambient
+ for x in ../*.deb
+ dpkg -c ../radicle-ci-ambient_0.9.0.ci20250526T132546-1_amd64.deb
drwxr-xr-x root/root         0 2025-05-26 13:25 ./
drwxr-xr-x root/root         0 2025-05-26 13:25 ./bin/
-rwxr-xr-x root/root   3534176 2025-05-26 13:25 ./bin/radicle-ci-ambient
drwxr-xr-x root/root         0 2025-05-26 13:25 ./usr/
drwxr-xr-x root/root         0 2025-05-26 13:25 ./usr/share/
drwxr-xr-x root/root         0 2025-05-26 13:25 ./usr/share/doc/
drwxr-xr-x root/root         0 2025-05-26 13:25 ./usr/share/doc/radicle-ci-ambient/
-rw-r--r-- root/root       309 2025-05-26 13:25 ./usr/share/doc/radicle-ci-ambient/changelog.Debian.gz
-rw-r--r-- root/root       392 2025-05-26 13:25 ./usr/share/doc/radicle-ci-ambient/copyright
drwxr-xr-x root/root         0 2025-05-26 13:25 ./usr/share/lintian/
drwxr-xr-x root/root         0 2025-05-26 13:25 ./usr/share/lintian/overrides/
-rw-r--r-- root/root        99 2025-05-26 13:25 ./usr/share/lintian/overrides/radicle-ci-ambient
+ mv ../radicle-ci-ambient-dbgsym_0.9.0.ci20250526T132546-1_amd64.deb ../radicle-ci-ambient_0.9.0.ci20250526T132546-1.debian.tar.xz ../radicle-ci-ambient_0.9.0.ci20250526T132546-1.dsc ../radicle-ci-ambient_0.9.0.ci20250526T132546-1_amd64.buildinfo ../radicle-ci-ambient_0.9.0.ci20250526T132546-1_amd64.changes ../radicle-ci-ambient_0.9.0.ci20250526T132546-1_amd64.deb ../radicle-ci-ambient_0.9.0.ci20250526T132546.orig.tar.xz /workspace/artifacts
RUN: Action finished OK
RUN: Action TarCreate {
    archive: "/dev/vde",
    directory: "/workspace/cache",
}
RUN: Action finished OK
RUN: Action TarCreate {
    archive: "/dev/vdd",
    directory: "/workspace/artifacts",
}
RUN: Action finished OK
ambient-execute-plan ends
EXIT CODE: 0
[2025-05-26T13:26:30Z INFO  ambient] ambient ends successfully