CI run for rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5

Radicle repository id rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5

Table of Contents

Run log

At: 2026-02-12 15:09:02Z
After: 0.00 seconds
Program: ambient
Version: 0.12.0
Ambient starts
At: 2026-02-12 15:09:02Z
After: 0.00 seconds
tmpdir: /home/_rad/tmp
image_store: /home/_rad/ambient-images
projects: /dev/null
state: /home/_rad/ambient-state
rsync_target: null
rsync_target_base: null
rsync_target_map: null
dput_target: null
executor: /usr/bin/ambient-execute-plan
artifacts_max_size: 1 GB
cache_max_size: 30 GB
qemu:
  cpus: 2
  memory: 12 GB
  kvm_binary: /usr/bin/kvm
  ovmf_vars_file: /usr/share/ovmf/OVMF.fd
  ovmf_code_file: /usr/share/ovmf/OVMF.fd
uefi: false
lint: true
Ambient configuration
At: 2026-02-12 15:09:02Z
After: 0.05 seconds
Hoping for the best
Will run CI for project rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5
At: 2026-02-12 15:09:02Z
After: 0.05 seconds
CargoFetch(
    CargoFetch,
)
Start action cargo_fetch
At: 2026-02-12 15:09:12Z
After: 9.80 seconds
  • cargo
  • --version
exit: 0
Stdout:
cargo 1.90.0 (840b83a10 2025-07-30)
OK: cargo --version
At: 2026-02-12 15:09:12Z
After: 9.80 seconds
  • cargo
  • clippy
  • --version
exit: 0
Stdout:
clippy 0.1.90 (1159e78c47 2025-09-14)
OK: cargo clippy --version
At: 2026-02-12 15:09:12Z
After: 9.80 seconds
  • rustc
  • --version
exit: 0
Stdout:
rustc 1.90.0 (1159e78c4 2025-09-14)
OK: rustc --version
At: 2026-02-12 15:09:12Z
After: 9.80 seconds
  • cargo
  • fetch
  • --locked
exit: 0
OK: cargo fetch --locked
At: 2026-02-12 15:09:03Z
After: 0.57 seconds
End action cargo_fetch
At: 2026-02-12 15:09:03Z
After: 0.57 seconds
Hopefully all is good.
Plan succeeded
At: 2026-02-12 15:09:06Z
After: 4.27 seconds
Program: ambient-execute-plan
Version: 0.12.0@626957c
Executor starts
At: 2026-02-12 15:09:06Z
After: 4.28 seconds
steps:
- action: mkdir
  pathname: /ci
- action: mkdir
  pathname: /ci/artifacts
- action: tar_extract
  archive: /dev/vdc
  directory: /ci/src
- action: tar_extract
  archive: /dev/vdf
  directory: /ci/deps
- action: tar_extract
  archive: /dev/vde
  directory: /ci/cache
- action: shell
  shell: ln -sf /ci /workspace
- action: shell
  shell: git config --global user.name 'Ambient CI'
- action: shell
  shell: git config --global user.email ambient@example.com
- 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 --all-features
- 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
  packages: .
- action: tar_create
  archive: /dev/vde
  directory: /ci/cache
- action: tar_create
  archive: /dev/vdd
  directory: /ci/artifacts
executor_drive: /dev/vdb
source_drive: /dev/vdc
artifact_drive: /dev/vdd
cache_drive: /dev/vde
deps_drive: /dev/vdf
workspace_dir: /ci
source_dir: /ci/src
deps_dir: /ci/deps
cache_dir: /ci/cache
artifacts_dir: /ci/artifacts
Runnable plan
At: 2026-02-12 15:09:06Z
After: 4.32 seconds
Mkdir(
    Mkdir {
        pathname: "/ci",
    },
)
Start action mkdir
At: 2026-02-12 15:09:06Z
After: 4.32 seconds
End action mkdir
At: 2026-02-12 15:09:06Z
After: 4.32 seconds
Mkdir(
    Mkdir {
        pathname: "/ci/artifacts",
    },
)
Start action mkdir
At: 2026-02-12 15:09:06Z
After: 4.32 seconds
End action mkdir
At: 2026-02-12 15:09:06Z
After: 4.32 seconds
TarExtract(
    TarExtract {
        archive: "/dev/vdc",
        directory: "/ci/src",
    },
)
Start action tar_extract
At: 2026-02-12 15:09:06Z
After: 4.41 seconds
End action tar_extract
At: 2026-02-12 15:09:06Z
After: 4.41 seconds
TarExtract(
    TarExtract {
        archive: "/dev/vdf",
        directory: "/ci/deps",
    },
)
Start action tar_extract
At: 2026-02-12 15:09:09Z
After: 6.58 seconds
End action tar_extract
At: 2026-02-12 15:09:09Z
After: 6.58 seconds
TarExtract(
    TarExtract {
        archive: "/dev/vde",
        directory: "/ci/cache",
    },
)
Start action tar_extract
At: 2026-02-12 15:09:09Z
After: 6.58 seconds
End action tar_extract
At: 2026-02-12 15:09:09Z
After: 6.59 seconds
Shell(
    Shell {
        shell: "ln -sf /ci /workspace",
    },
)
Start action shell
At: 2026-02-12 15:09:12Z
After: 9.80 seconds
  • bash
  • -c
  • set -xeuo pipefail ln -sf /ci /workspace
exit: 0
Stderr:
+ ln -sf /ci /workspace
OK: bash -c set -xeuo pipefail ln -sf /ci /workspace
At: 2026-02-12 15:09:09Z
After: 6.60 seconds
End action shell
At: 2026-02-12 15:09:09Z
After: 6.60 seconds
Shell(
    Shell {
        shell: "git config --global user.name 'Ambient CI'",
    },
)
Start action shell
At: 2026-02-12 15:09:12Z
After: 9.80 seconds
  • bash
  • -c
  • set -xeuo pipefail git config --global user.name 'Ambient CI'
exit: 0
Stderr:
+ git config --global user.name 'Ambient CI'
OK: bash -c set -xeuo pipefail git config --global user.name 'Ambient CI'
At: 2026-02-12 15:09:09Z
After: 6.61 seconds
End action shell
At: 2026-02-12 15:09:09Z
After: 6.62 seconds
Shell(
    Shell {
        shell: "git config --global user.email ambient@example.com",
    },
)
Start action shell
At: 2026-02-12 15:09:12Z
After: 9.80 seconds
  • bash
  • -c
  • set -xeuo pipefail git config --global user.email ambient@example.com
exit: 0
Stderr:
+ git config --global user.email ambient@example.com
OK: bash -c set -xeuo pipefail git config --global user.email ambient@example.com
At: 2026-02-12 15:09:09Z
After: 6.63 seconds
End action shell
At: 2026-02-12 15:09:09Z
After: 6.63 seconds
CargoFmt(
    CargoFmt,
)
Start action cargo_fmt
At: 2026-02-12 15:09:12Z
After: 9.80 seconds
  • cargo
  • --version
exit: 1
Stderr:
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/n7g_9m7zx051pl3x_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
FAILED: cargo --version
At: 2026-02-12 15:09:09Z
After: 6.67 seconds
Action failed
At: 2026-02-12 15:09:09Z
After: 6.67 seconds
Exit codd 1
Executor ends, failure
At: 2026-02-12 15:09:12Z
After: 9.80 seconds
    exit: 0
    QEMU OK

    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": "90a185bcf984e548d631a84457e27efbe3e4ba97",
        "author": {
          "id": "did:key:z6MkireRatUThvd3qzfKht1S44wpm4FEWSSa4PRMTSQZ3voM",
          "alias": "fintohaps"
        },
        "title": "radicle-log: enhanced log highlighting",
        "state": {
          "status": "open",
          "conflicts": []
        },
        "before": "50fb228ae4c0c8f68413dc7922a1e2a32ace5655",
        "after": "49a5520a3fb3acdb3415e3810757181637879fe2",
        "commits": [
          "49a5520a3fb3acdb3415e3810757181637879fe2",
          "7837987f264e040bdd337332803acf9c8d065bf4",
          "085a3e38b20283e61dec61478440aaab65b82561",
          "51acea2eb6a836813020f8f4424bba37bc899562"
        ],
        "target": "993428df5657e18b167ac0e6206efa0b6908d8c0",
        "labels": [],
        "assignees": [],
        "revisions": [
          {
            "id": "90a185bcf984e548d631a84457e27efbe3e4ba97",
            "author": {
              "id": "did:key:z6MkireRatUThvd3qzfKht1S44wpm4FEWSSa4PRMTSQZ3voM",
              "alias": "fintohaps"
            },
            "description": "Refactor out `radicle::Logger` and `radicle::logger::Logger` to `radicle-log` crate.\n\nEnhance the test logger to highlight:\n\n1. Any `base58` strings with a deterministic colour\n2. Any git refs to be boldened and underlined\n   a. Any `base58` strings inside refs to adhere to 1.\n3. Any git OIDs (short and long) first 6 characters mapped to a hex colour with light and dark background adjustments\n4. ... any timestamps also coloured as per 3. 👀\n5. error level logs are all red and underlined (with rules 1 - 4 applied)\n6. warning level logs are all yellow and underlined (witith rules 1 - 4 applied)\n\nI /think/ I managed to preserve the existing feature toggles, but worth double checking!",
            "base": "b937a93892db3d80833b3cdde3bc37935151e274",
            "oid": "ae7481b53a591d107ee9ee8bd9f276d3bce6ed02",
            "timestamp": 1769103378
          },
          {
            "id": "8a0b020ea5e8054adb5e3ef15bb26012d7face68",
            "author": {
              "id": "did:key:z6MkireRatUThvd3qzfKht1S44wpm4FEWSSa4PRMTSQZ3voM",
              "alias": "fintohaps"
            },
            "description": "Distill",
            "base": "b937a93892db3d80833b3cdde3bc37935151e274",
            "oid": "044320dbff6f6dc97e5fdadf7b99bb693ab88b7f",
            "timestamp": 1769173294
          },
          {
            "id": "af22c124cbbccb919a75b00971c14f06233c9311",
            "author": {
              "id": "did:key:z6MkireRatUThvd3qzfKht1S44wpm4FEWSSa4PRMTSQZ3voM",
              "alias": "fintohaps"
            },
            "description": "Fix:\n - Corretly account for rename while moving files from `radicle` to `radicle-log`.\n - Fix feature flags.",
            "base": "b937a93892db3d80833b3cdde3bc37935151e274",
            "oid": "6164b59f2917001c2e256a63ac92c794afdc347a",
            "timestamp": 1769174438
          },
          {
            "id": "f366079ccd104722f1c26d0d2b966d1b33551b2d",
            "author": {
              "id": "did:key:z6MkireRatUThvd3qzfKht1S44wpm4FEWSSa4PRMTSQZ3voM",
              "alias": "fintohaps"
            },
            "description": "Honour `NO_COLOR` environment variable: https://no-color.org/",
            "base": "b937a93892db3d80833b3cdde3bc37935151e274",
            "oid": "9385868f9769726c09895f04fb3848ec93487466",
            "timestamp": 1769442040
          },
          {
            "id": "d9f963450760a0f3a4d89105776896247ea8b120",
            "author": {
              "id": "did:key:z6MkireRatUThvd3qzfKht1S44wpm4FEWSSa4PRMTSQZ3voM",
              "alias": "fintohaps"
            },
            "description": "log: add aliase support for base58 strings via RAD_ALIASES env var\n\nAs an example, you can set the following to shorten `alice`, `bob`, `eve` and the repo OID in the logs:\n\n```console\n$ RAD_ALIASES=\"z6Mkt67GdsW7715MEfRuP4pSZxJRJh6kj6Y48WRqVv4N1tRk=bob,z6MknSLrJoTcukLrE435hVNQT4JUhbvWLX4kUzqkEStBU8Vi=alice,z6Mkux1aUQD2voWWukVb5nNUR7thrHveQG4pDQua8nVhib7Z=eve,z42hL2jL4XNk6K8oHQaSWfMgCL7ji=test-repo\" cargo nextest run --no-capture\n```",
            "base": "b937a93892db3d80833b3cdde3bc37935151e274",
            "oid": "23f782f34388dad282a7516aa93731d8f3ca8889",
            "timestamp": 1769603416
          },
          {
            "id": "c9775bedcbaa4af346b61c38f3e4c84eb3ca0213",
            "author": {
              "id": "did:key:z6MkireRatUThvd3qzfKht1S44wpm4FEWSSa4PRMTSQZ3voM",
              "alias": "fintohaps"
            },
            "description": "",
            "base": "50fb228ae4c0c8f68413dc7922a1e2a32ace5655",
            "oid": "aaaef89857c9e35780fe81cfe5fe2ae300aa7d89",
            "timestamp": 1770907233
          },
          {
            "id": "0d095305397e9d720cc081e353b8cb75cbb3b087",
            "author": {
              "id": "did:key:z6MkireRatUThvd3qzfKht1S44wpm4FEWSSa4PRMTSQZ3voM",
              "alias": "fintohaps"
            },
            "description": "Changes:\n- Improvements to mutex use",
            "base": "50fb228ae4c0c8f68413dc7922a1e2a32ace5655",
            "oid": "49a5520a3fb3acdb3415e3810757181637879fe2",
            "timestamp": 1770908922
          }
        ]
      }
    }

    Ambient stdout

    deprecated: the `cpus` field is replaced by `qemu.cpus`
    deprecated: the `memory` field is replaced by `qemu.memory`
    run CI for rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5
    ERROR: CI run failed inside QEMU
    

    Ambient stderr

    <empty log>