CI run for rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5

Radicle repository id rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5

Table of Contents

Run log

[=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   6.1M  1 disk 
vdc    254:32   0  34.2M  1 disk 
vdd    254:48   0   9.3G  0 disk 
vde    254:64   0  46.6G  0 disk 
vdf    254:80   0 833.1M  1 disk 
INFO: Extracting tar archive from /dev/vdb
drwxr-xr-x _rad/_rad         0 2025-10-20 14:11 ./
-rw-r--r-- _rad/_rad      2450 2025-10-20 14:11 ./plan.yaml
-rwxr-xr-x _rad/_rad   6418592 2025-10-20 14:11 ./run-ci
INFO: Extracted files:
  4587526      4 drwxr-xr-x   2 1001     1001         4096 Oct 20 14:11 .
  4587527      4 -rw-r--r--   1 1001     1001         2450 Oct 20 14:11 ./plan.yaml
  4587530   6272 -rwxr-xr-x   1 1001     1001      6418592 Oct 20 14:11 ./run-ci
INFO: Running run-ci from /dev/vdb
================================ BEGIN ================================
[2025-10-20T14:12:38Z TRACE ambient_execute_plan] ambient-execute-plan version 0.8.0@f44159d starts
[2025-10-20T14:12:38Z DEBUG ambient_execute_plan] ambient-execute-plan version 0.8.0@f44159d starts
[2025-10-20T14:12:38Z INFO  ambient_execute_plan] ambient-execute-plan version 0.8.0@f44159d starts
[2025-10-20T14:12:38Z WARN  ambient_execute_plan] ambient-execute-plan version 0.8.0@f44159d starts
[2025-10-20T14:12:38Z ERROR ambient_execute_plan] ambient-execute-plan version 0.8.0@f44159d 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: cargo_build
- action: cargo_test
- action: shell
  shell: |
    # Because of a (temporary) limitation in Ambient, we need to set
    # these variables manually. Once Ambient manages environment
    # variables better, these can be deleted.
    export CARGO_TARGET_DIR=/workspace/cache
    export CARGO_HOME=/workspace/deps
    export HOME=/root
    export PATH="/root/.cargo/bin:$PATH"
    export RUSTDOCFLAGS='-D warnings'

    cargo doc --workspace --no-deps
- action: shell
  shell: |
    # Because of a (temporary) limitation in Ambient, we need to set
    # these variables manually. Once Ambient manages environment
    # variables better, these can be deleted.
    export CARGO_TARGET_DIR=/workspace/cache
    export CARGO_HOME=/workspace/deps
    export HOME=/root
    export PATH="/root/.cargo/bin:$PATH"

    # These are based on debian/control.
    export DEBEMAIL=liw@liw.fi
    export DEBFULLNAME="Lars Wirzenius"

    # Clean up after tests and documentation building. The Debian
    # package building tools do not want changes outside the
    # `debian` directory, compared to what is committed to Git, from
    # which the "upstream tarball" is created.
    git reset --hard
    git clean -fdx
    git status --ignored

    # Update debian/changelog with a new version so that every run
    # creates a newer version. This avoids us having to update the
    # file manually for every CI run.
    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


[2025-10-20T14:12:38Z DEBUG ambient_ci::plan] RUN: Action Mkdir {
        pathname: "/workspace",
    }
[2025-10-20T14:12:38Z DEBUG ambient_ci::action] Plan::execute: plan=Mkdir {
        pathname: "/workspace",
    }
[2025-10-20T14:12:38Z DEBUG ambient_ci::action] Plan::execute: context=Context {
        envs: {
            "CARGO_TARGET_DIR": "/workspace/cache",
            "PATH": "/root/.cargo/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin",
            "HOME": "/root",
            "CARGO_HOME": "/workspace/deps",
        },
        source_dir: "/workspace/src",
    }
[2025-10-20T14:12:38Z DEBUG ambient_ci::plan] RUN: Action finished OK
[2025-10-20T14:12:38Z DEBUG ambient_ci::plan] RUN: Action Mkdir {
        pathname: "/workspace/artifacts",
    }
[2025-10-20T14:12:38Z DEBUG ambient_ci::action] Plan::execute: plan=Mkdir {
        pathname: "/workspace/artifacts",
    }
[2025-10-20T14:12:38Z DEBUG ambient_ci::action] Plan::execute: context=Context {
        envs: {
            "CARGO_TARGET_DIR": "/workspace/cache",
            "PATH": "/root/.cargo/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin",
            "HOME": "/root",
            "CARGO_HOME": "/workspace/deps",
        },
        source_dir: "/workspace/src",
    }
[2025-10-20T14:12:38Z DEBUG ambient_ci::plan] RUN: Action finished OK
[2025-10-20T14:12:38Z DEBUG ambient_ci::plan] RUN: Action TarExtract {
        archive: "/dev/vdc",
        directory: "/workspace/src",
    }
[2025-10-20T14:12:38Z DEBUG ambient_ci::action] Plan::execute: plan=TarExtract {
        archive: "/dev/vdc",
        directory: "/workspace/src",
    }
[2025-10-20T14:12:38Z DEBUG ambient_ci::action] Plan::execute: context=Context {
        envs: {
            "CARGO_TARGET_DIR": "/workspace/cache",
            "PATH": "/root/.cargo/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin",
            "HOME": "/root",
            "CARGO_HOME": "/workspace/deps",
        },
        source_dir: "/workspace/src",
    }
[2025-10-20T14:12:38Z TRACE ambient_ci::vdrive] extracting /dev/vdc to /workspace/src
[2025-10-20T14:12:38Z TRACE ambient_ci::vdrive] extraction OK
[2025-10-20T14:12:38Z DEBUG ambient_ci::plan] RUN: Action finished OK
[2025-10-20T14:12:38Z DEBUG ambient_ci::plan] RUN: Action TarExtract {
        archive: "/dev/vdf",
        directory: "/workspace/deps",
    }
[2025-10-20T14:12:38Z DEBUG ambient_ci::action] Plan::execute: plan=TarExtract {
        archive: "/dev/vdf",
        directory: "/workspace/deps",
    }
[2025-10-20T14:12:38Z DEBUG ambient_ci::action] Plan::execute: context=Context {
        envs: {
            "CARGO_TARGET_DIR": "/workspace/cache",
            "PATH": "/root/.cargo/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin",
            "HOME": "/root",
            "CARGO_HOME": "/workspace/deps",
        },
        source_dir: "/workspace/src",
    }
[2025-10-20T14:12:38Z TRACE ambient_ci::vdrive] extracting /dev/vdf to /workspace/deps
[2025-10-20T14:12:55Z TRACE ambient_ci::vdrive] extraction OK
[2025-10-20T14:12:55Z DEBUG ambient_ci::plan] RUN: Action finished OK
[2025-10-20T14:12:55Z DEBUG ambient_ci::plan] RUN: Action TarExtract {
        archive: "/dev/vde",
        directory: "/workspace/cache",
    }
[2025-10-20T14:12:55Z DEBUG ambient_ci::action] Plan::execute: plan=TarExtract {
        archive: "/dev/vde",
        directory: "/workspace/cache",
    }
[2025-10-20T14:12:55Z DEBUG ambient_ci::action] Plan::execute: context=Context {
        envs: {
            "CARGO_TARGET_DIR": "/workspace/cache",
            "PATH": "/root/.cargo/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin",
            "HOME": "/root",
            "CARGO_HOME": "/workspace/deps",
        },
        source_dir: "/workspace/src",
    }
[2025-10-20T14:12:55Z TRACE ambient_ci::vdrive] extracting /dev/vde to /workspace/cache
[2025-10-20T14:16:36Z TRACE ambient_ci::vdrive] extraction OK
[2025-10-20T14:16:36Z DEBUG ambient_ci::plan] RUN: Action finished OK
[2025-10-20T14:16:36Z DEBUG ambient_ci::plan] RUN: Action Spawn {
        argv: [
            "find",
            "/workspace",
            "-maxdepth",
            "2",
            "-ls",
        ],
    }
[2025-10-20T14:16:36Z DEBUG ambient_ci::action] Plan::execute: plan=Spawn {
        argv: [
            "find",
            "/workspace",
            "-maxdepth",
            "2",
            "-ls",
        ],
    }
[2025-10-20T14:16:36Z DEBUG ambient_ci::action] Plan::execute: context=Context {
        envs: {
            "CARGO_TARGET_DIR": "/workspace/cache",
            "PATH": "/root/.cargo/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin",
            "HOME": "/root",
            "CARGO_HOME": "/workspace/deps",
        },
        source_dir: "/workspace/src",
    }
SPAWN: argv=["find", "/workspace", "-maxdepth", "2", "-ls"]
       cwd=/workspace/src (exists? true)
  2621441      4 drwxr-xr-x   6 root     root         4096 Oct 20 14:12 /workspace
  2622361      4 drwxr-xr-x   3 root     root         4096 Oct 20 14:10 /workspace/deps
  2622362      0 -rw-r--r--   1 root     root            0 Sep 22 16:46 /workspace/deps/.package-cache-mutate
  2622365      4 drwxr-xr-x   5 root     root         4096 Sep 22 16:46 /workspace/deps/registry
  2622363    140 -rw-r--r--   1 root     root       143360 Oct 20 14:10 /workspace/deps/.global-cache
  2622364      0 -rw-r--r--   1 root     root            0 Sep 22 16:46 /workspace/deps/.package-cache
  2621443      4 drwxr-xr-x  12 root     root         4096 Oct 20 14:10 /workspace/src
  2621500      4 -rw-r--r--   1 root     root         3436 Oct 20 14:10 /workspace/src/Cargo.toml
  2622357     12 -rw-r--r--   1 root     root         9636 Oct 20 14:10 /workspace/src/CONTRIBUTING.md
  2621501      4 drwxr-xr-x   2 root     root         4096 Oct 20 14:10 /workspace/src/.config
  2621497      4 -rw-r--r--   1 root     root         3242 Oct 20 14:10 /workspace/src/build.rs
  2621503      4 -rw-r--r--   1 root     root          426 Oct 20 14:10 /workspace/src/radicle-node.1.adoc
  2621505      4 drwxr-xr-x   8 root     root         4096 Oct 20 14:10 /workspace/src/.git
  2622354      8 -rw-r--r--   1 root     root         7144 Oct 20 14:10 /workspace/src/rad-id.1.adoc
  2621460      4 -rw-r--r--   1 root     root         2163 Oct 20 14:10 /workspace/src/VERSIONING.md
  2621496      4 -rw-r--r--   1 root     root         3133 Oct 20 14:10 /workspace/src/README.md
  2621689     12 -rw-r--r--   1 root     root        10975 Oct 20 14:10 /workspace/src/rad-patch.1.adoc
  2622358      4 -rw-r--r--   1 root     root           79 Oct 20 14:10 /workspace/src/ARCHITECTURE.md
  2621697      4 drwxr-xr-x  20 root     root         4096 Oct 20 14:10 /workspace/src/crates
  2621448      4 drwxr-xr-x   2 root     root         4096 Oct 20 14:10 /workspace/src/scripts
  2621444      4 drwxr-xr-x   2 root     root         4096 Oct 20 14:10 /workspace/src/.radicle
  2621467     16 -rw-r--r--   1 root     root        14643 Oct 20 14:10 /workspace/src/CHANGELOG.md
  2621483      4 drwxr-xr-x   3 root     root         4096 Oct 20 14:10 /workspace/src/debian
  2621465      4 -rw-r--r--   1 root     root           42 Oct 20 14:10 /workspace/src/.envrc
  2622355      4 -rw-r--r--   1 root     root         1203 Oct 20 14:10 /workspace/src/DCO
  2622349      4 drwxr-xr-x   3 root     root         4096 Oct 20 14:10 /workspace/src/.github
  2621482      4 -rw-r--r--   1 root     root           17 Oct 20 14:10 /workspace/src/.rustfmt.toml
  2622360    124 -rw-r--r--   1 root     root       124411 Oct 20 14:10 /workspace/src/Cargo.lock
  2621690      4 drwxr-xr-x   5 root     root         4096 Oct 20 14:10 /workspace/src/systemd
  2621688     12 -rw-r--r--   1 root     root         9723 Oct 20 14:10 /workspace/src/LICENSE-APACHE
  2621499      4 -rw-r--r--   1 root     root          101 Oct 20 14:10 /workspace/src/.gitignore
  2622356      8 -rw-r--r--   1 root     root         5102 Oct 20 14:10 /workspace/src/flake.lock
  2621464      4 -rw-r--r--   1 root     root           77 Oct 20 14:10 /workspace/src/rust-toolchain.toml
  2621498     12 -rw-r--r--   1 root     root        11388 Oct 20 14:10 /workspace/src/flake.nix
  2621468      4 -rw-r--r--   1 root     root          571 Oct 20 14:10 /workspace/src/git-remote-rad.1.adoc
  2622353      4 -rw-r--r--   1 root     root           70 Oct 20 14:10 /workspace/src/.git-blame-ignore-revs
  2621466      4 -rw-r--r--   1 root     root           61 Oct 20 14:10 /workspace/src/.env.seed
  2621504      8 -rw-r--r--   1 root     root         5432 Oct 20 14:10 /workspace/src/deny.toml
  2621458      8 -rw-r--r--   1 root     root         7645 Oct 20 14:10 /workspace/src/HACKING.md
  2621447      4 -rw-r--r--   1 root     root         1079 Oct 20 14:10 /workspace/src/LICENSE-MIT
  2621463      8 -rw-r--r--   1 root     root         8023 Oct 20 14:10 /workspace/src/rad.1.adoc
  2621469      4 drwxr-xr-x   2 root     root         4096 Oct 20 14:10 /workspace/src/build
  2622359      4 -rw-r--r--   1 root     root         1083 Oct 20 14:10 /workspace/src/.gitsigners
  2621459      4 -rw-r--r--   1 root     root           30 Oct 20 14:10 /workspace/src/.dockerignore
  2621461      4 drwxr-xr-x   2 root     root         4096 Oct 20 14:10 /workspace/src/.cargo
  2621442      4 drwxr-xr-x   2 root     root         4096 Oct 20 14:12 /workspace/artifacts
  2652571      4 drwxr-xr-x   6 root     root         4096 Sep 22 23:09 /workspace/cache
  2667740      4 -rw-r--r--   1 root     root          218 Sep 22 23:08 /workspace/cache/.rustdoc_fingerprint.json
  2667742      4 drwxr-xr-x  24 root     root         4096 Oct  7 15:08 /workspace/cache/doc
  2652573      4 drwxr-xr-x   7 root     root         4096 Oct  7 15:05 /workspace/cache/debug
  2652572      4 drwxr-xr-x   2 root     root         4096 Sep 22 23:02 /workspace/cache/tmp
  2667741      4 -rw-r--r--   1 root     root         1037 Oct 17 16:02 /workspace/cache/.rustc_info.json
  2883586      4 drwxr-xr-x   7 root     root         4096 Oct  7 15:10 /workspace/cache/release
[2025-10-20T14:16:36Z DEBUG ambient_ci::plan] RUN: Action finished OK
[2025-10-20T14:16:36Z DEBUG ambient_ci::plan] RUN: Action CargoFmt
[2025-10-20T14:16:36Z DEBUG ambient_ci::action] Plan::execute: plan=CargoFmt
[2025-10-20T14:16:36Z DEBUG ambient_ci::action] Plan::execute: context=Context {
        envs: {
            "CARGO_TARGET_DIR": "/workspace/cache",
            "PATH": "/root/.cargo/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin",
            "HOME": "/root",
            "CARGO_HOME": "/workspace/deps",
        },
        source_dir: "/workspace/src",
    }
SPAWN: argv=["cargo", "--version"]
       cwd=/workspace/src (exists? true)
info: syncing channel updates for '1.90-x86_64-unknown-linux-gnu'
error: failed to download file error=Reqwest(reqwest::Error { kind: Request, url: "https://static.rust-lang.org/dist/channel-rust-1.90.toml.sha256", source: hyper_util::client::legacy::Error(Connect, ConnectError("dns error", Custom { kind: Uncategorized, error: "failed to lookup address information: Temporary failure in name resolution" })) })
error: could not download file from 'https://static.rust-lang.org/dist/channel-rust-1.90.toml.sha256' to '/root/.rustup/tmp/i7ozz782mv32dpxc_file': error downloading file: error sending request for url (https://static.rust-lang.org/dist/channel-rust-1.90.toml.sha256): client error (Connect): dns error: failed to lookup address information: Temporary failure in name resolution: failed to lookup address information: Temporary failure in name resolution
[2025-10-20T14:16:37Z ERROR ambient_ci::plan] ERROR: Action failed: failed to execute cargo
[2025-10-20T14:16:37Z ERROR ambient_ci::plan] caused by: command failed: "cargo": exit code 1
ERROR: failed to execute cargo
caused by: command failed: "cargo": exit code 1
EXIT CODE: 1

Trigger message

{
  "request": "trigger",
  "version": 1,
  "event_type": "patch",
  "repository": {
    "id": "rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5",
    "name": "heartwood",
    "description": "Radicle Heartwood Protocol & Stack",
    "private": false,
    "default_branch": "master",
    "delegates": [
      "did:key:z6MksFqXN3Yhqk8pTJdUGLwATkRfQvwZXPqR2qMEhbS9wzpT",
      "did:key:z6MktaNvN1KVFMkSRAiN4qK5yvX1zuEEaseeX5sffhzPZRZW",
      "did:key:z6MkireRatUThvd3qzfKht1S44wpm4FEWSSa4PRMTSQZ3voM",
      "did:key:z6MkgFq6z5fkF2hioLLSNu1zP2qEL1aHXHZzGH1FLFGAnBGz",
      "did:key:z6MkkPvBfjP4bQmco5Dm7UGsX2ruDBieEHi8n9DVJWX5sTEz"
    ]
  },
  "action": "Created",
  "patch": {
    "id": "e9defa94038506c9187930ba82be10c4a888acc6",
    "author": {
      "id": "did:key:z6MkireRatUThvd3qzfKht1S44wpm4FEWSSa4PRMTSQZ3voM",
      "alias": "fintohaps"
    },
    "title": "cli/remote: migrate to clap",
    "state": {
      "status": "open",
      "conflicts": []
    },
    "before": "93578340d1d55b7f1b8fb31a8ccfd388f26e3ad8",
    "after": "cfa6fc26eb5600447bb5b75a64be78f8d2c8ab41",
    "commits": [
      "cfa6fc26eb5600447bb5b75a64be78f8d2c8ab41"
    ],
    "target": "93578340d1d55b7f1b8fb31a8ccfd388f26e3ad8",
    "labels": [],
    "assignees": [],
    "revisions": [
      {
        "id": "e9defa94038506c9187930ba82be10c4a888acc6",
        "author": {
          "id": "did:key:z6MkireRatUThvd3qzfKht1S44wpm4FEWSSa4PRMTSQZ3voM",
          "alias": "fintohaps"
        },
        "description": "",
        "base": "93578340d1d55b7f1b8fb31a8ccfd388f26e3ad8",
        "oid": "cfa6fc26eb5600447bb5b75a64be78f8d2c8ab41",
        "timestamp": 1760974346
      }
    ]
  }
}

Ambient stdout

[2025-10-20T15:32:31Z INFO  ambient] ambient starts
[2025-10-20T15:32:31Z DEBUG ambient] load default configuration file /home/_rad/.config/ambient/config.yaml if it exists
[2025-10-20T15:32:31Z 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: None,
        rsync_target_map: None,
        dput_target: None,
        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-10-20T15:32:31Z 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: None,
        rsync_target_map: None,
        dput_target: None,
        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-10-20T15:32:31Z DEBUG ambient_ci::project] load project state from /srv/ambient-state/rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5/meta.yaml
[2025-10-20T15:32:31Z DEBUG ambient_ci::run] latest commit: "f8fe296ceb98a1d2d06e521bc879176c56308a60"
[2025-10-20T15:32:31Z DEBUG ambient_ci::run] is a git repository
[2025-10-20T15:32:31Z DEBUG ambient_ci::run] git repository is clean
[2025-10-20T15:32:31Z DEBUG ambient_ci::run] current (HEAD) commit: cfa6fc26eb5600447bb5b75a64be78f8d2c8ab41
[2025-10-20T15:32:31Z DEBUG ambient_ci::run] no dry run requested
[2025-10-20T15:32:31Z DEBUG ambient_ci::run] forced run requested
[2025-10-20T15:32:31Z DEBUG ambient_ci::run] run? true
[2025-10-20T15:32:31Z INFO  ambient_ci::run] project rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5: running CI
[2025-10-20T15:32:31Z DEBUG ambient_ci::run] Executing pre-plan steps
[2025-10-20T15:32:31Z DEBUG ambient_ci::plan] RUN: Action CargoFetch {
        sourcedir: "/tmp/.tmpJlWo8I/src",
    }
[2025-10-20T15:32:31Z DEBUG ambient_ci::action] Plan::execute: plan=CargoFetch {
        sourcedir: "/tmp/.tmpJlWo8I/src",
    }
[2025-10-20T15:32:31Z DEBUG ambient_ci::action] Plan::execute: context=Context {
        envs: {
            "CARGO_TARGET_DIR": "/srv/ambient-state/rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5/cache",
            "PATH": "/root/.cargo/bin:/bin:/home/_rad/.radicle/bin:/home/_rad/.cargo/bin",
            "CARGO_HOME": "/srv/ambient-state/rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5/dependencies",
        },
        source_dir: "/tmp/.tmpJlWo8I/src",
    }
SPAWN: argv=["cargo", "--version"]
       cwd=/tmp/.tmpJlWo8I/src (exists? true)
cargo 1.90.0 (840b83a10 2025-07-30)
SPAWN: argv=["cargo", "clippy", "--version"]
       cwd=/tmp/.tmpJlWo8I/src (exists? true)
clippy 0.1.90 (1159e78c47 2025-09-14)
SPAWN: argv=["rustc", "--version"]
       cwd=/tmp/.tmpJlWo8I/src (exists? true)
rustc 1.90.0 (1159e78c4 2025-09-14)
SPAWN: argv=["cargo", "fetch"]
       cwd=/tmp/.tmpJlWo8I/src (exists? true)
[2025-10-20T15:32:32Z DEBUG ambient_ci::plan] RUN: Action finished OK
[2025-10-20T15:32:32Z DEBUG ambient_ci::plan] All actions were performed successfully
[2025-10-20T15:32:32Z DEBUG ambient_ci::run] create virtual drive /srv/tmp/.tmplnpQai/src.tar
[2025-10-20T15:32:32Z ERROR ambient_ci::vdrive] tar create failed: exit=1 archive=/tmp/.tmpJlWo8I/src, stderr=
    tar: ./.git/objects/pack/pack-0997169c9309f27cf226f2790bc1e8197b99f441.pack: file changed as we read it
    
ERROR: failed to create a tar archive from /tmp/.tmpJlWo8I/src
caused by: tar command failed

Ambient stderr

<empty log>