CCI report: 10d8add5-fa9a-40ab-8b9f-a7bfb89dbdbf

Request 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": "Updated",
  "patch": {
    "id": "1cd8044782249b95d577e0678f10eba8c6f32e35",
    "author": {
      "id": "did:key:z6MkkPvBfjP4bQmco5Dm7UGsX2ruDBieEHi8n9DVJWX5sTEz",
      "alias": "lorenz"
    },
    "title": "A Little Less `git2`",
    "state": {
      "status": "open",
      "conflicts": []
    },
    "before": "ac572e64e5029cb1db16f05158915b6ef55ab7e7",
    "after": "435a75304663802c85d7083ffb35a8d78eb3ab65",
    "commits": [
      "435a75304663802c85d7083ffb35a8d78eb3ab65",
      "4806ee34811ab8d004eebd01f5d1b992a57ab371",
      "4facd78316d892d27a926f11c274ef2f2cf6fbc9",
      "bccd86099ad31f39e643a56bd7d4366721e7bed5",
      "72be8d13e492b7c4960b3e11502124825f3a2996",
      "20032ba8844a8f24522d909cfa0f00ff6aa26658",
      "d883e86177478e5c671139609cf561fcec3b8ece",
      "b25d80d2729cbd988eca76bdfc5baa312426f1ac"
    ],
    "target": "ac572e64e5029cb1db16f05158915b6ef55ab7e7",
    "labels": [],
    "assignees": [],
    "revisions": [
      {
        "id": "1cd8044782249b95d577e0678f10eba8c6f32e35",
        "author": {
          "id": "did:key:z6MkkPvBfjP4bQmco5Dm7UGsX2ruDBieEHi8n9DVJWX5sTEz",
          "alias": "lorenz"
        },
        "description": "(I should write up a lengthy description\u2026)",
        "base": "5caa7b302a7d4f247aaa7cc688a692aac4486464",
        "oid": "d0b815c1715dfd78a7aba632356513370d189eaa",
        "timestamp": 1759707360
      },
      {
        "id": "8a36f8eecf18c0e990125564da0f89bbbbb00aa6",
        "author": {
          "id": "did:key:z6MkkPvBfjP4bQmco5Dm7UGsX2ruDBieEHi8n9DVJWX5sTEz",
          "alias": "lorenz"
        },
        "description": "Make `git2` an *optional* dependency of `radicle-cob`, *no* dependency\n(also not transitively) of `radicle-crypto`, and refactor `radicle` to\ndepend on crates that in turn do not depend on `git2`\n*non-optionally*.\n\n### New Crates\n\n`radicle-git-metadata`, `radicle-git-ref-format`, and `radicle-oid` are\nintroduced. Refer to their documentation in the respective `lib.rs`.\n\n### Refactoring\n\nThe main offending dependency of `radicle-cob` is `radicle-git-ext`\nfrom the `radicle-git` workspace in repository\n(rad:z6cFWeWpnZNHh9rUW8phgA3b5yGt) which *non-optionally* depends on\n`git2`.\n\nSo, to achieve removal of this dependency:\n\n 1. The crate is refactored to depend on the new crates\n    `radicle-git-ref-format` `radicle-git-metadata`, and\n    `radicle-oid` introduced in the previous commits, instead of\n    `radicle-git-ext`.\n 2. Some code from the `radicle-git-ext` crate in the `radicle-git`\n    workspace in repository (rad:z6cFWeWpnZNHh9rUW8phgA3b5yGt) is\n    copied. See `crates/radicle-cob/src/backend/git/commit.rs`.\n\nThis cascades to `radicle` and its dependents.\n\n  Firstly, the there is an\n`impl Deref<Target=git2::Oid> for radicle_git_ext::Oid`. This made\nit very convenient to just deref to obtain the wrapped `git2::Oid`,\nso there are many expressions of the shape `*oid` in `radicle` and\nits dependents. However `radicle-oid` does not provide\n`impl Deref<Target=git2::Oid> for radicle_oid::Oid`, as notably,\n`Target` is an associated type, and not a type parameter, so an\nimplementation of `Deref` would tie the new `Oid` too tightly to a\nparticular implementation.\nInstead, work with `impl From<radicle_oid::Oid> for git2::Oid`\n(which can be enabled using the feature flag `radicle-oid/git2`).\nThis explains the changes from `*oid` to `oid.into()` at every\ntransition to \"`git2` land\".\n\n  Secondly, `radicle` and its dependents are refactored to also depend\non `radicle-git-ref-format` and (much less prominently)\n`radicle-git-metadata` instead of `radicle-git-ext`\nThis is to avoid pulling in `git2` via these dependencies.\n\n  Thirdly, as the re-exports in `crates/radicle/src/git.rs` change,\nthey are at the same time also cleaned up. Notably, the types from\n`radicle-git-ref-format` are re-exported under `fmt` only, not \"twice\".\nAlso, instead of re-exporting all of `git2`, the module `raw` actually\nonly provides the re-exports required to build the workspace\n(potentially breaking dependents outside the workspace, but given just\nhow many types are re-exported, this seems unlikely) and injects an\nextension trait for more ergonomic error handling. Uses of\n`radicle_git_ext::Error` are replaced with uses of the extension trait.\n\nWhile overall this obviously is very much a breaking change, these\nchanges should mostly amount to changing from `Deref` to `Into`, i.e.,\n`*oid` \u2192 `oid.into()`, importing the extension trait as necessary, and\nrewriting imports for `radicle::git::fmt`. This is indicated by the\nmostly mechanical nature of the changes to\n`crates/radicle-{cli,node,remote-helper}`.",
        "base": "2e77d5ef4df526a8453d38d6d2d735fe9ce7e423",
        "oid": "7fe1584106be32b9f2c5c153bd0d6052016dd4eb",
        "timestamp": 1759877418
      },
      {
        "id": "8c293dee6c08d53311abff02f3af729e9103cb6f",
        "author": {
          "id": "did:key:z6MkkPvBfjP4bQmco5Dm7UGsX2ruDBieEHi8n9DVJWX5sTEz",
          "alias": "lorenz"
        },
        "description": "Rebase onto spun out patches:\n - `222bc576b7ffb7b9650be00525a1b66087c83b44`\n - `a1b9d9c92737f12b5b24405042e2432cc9730a5e`",
        "base": "ac572e64e5029cb1db16f05158915b6ef55ab7e7",
        "oid": "435a75304663802c85d7083ffb35a8d78eb3ab65",
        "timestamp": 1760045529
      }
    ]
  }
}

Send response

{
  "response": "triggered",
  "run_id": {
    "id": "10d8add5-fa9a-40ab-8b9f-a7bfb89dbdbf"
  },
  "info_url": "https://cci.rad.levitte.org//10d8add5-fa9a-40ab-8b9f-a7bfb89dbdbf.html"
}

Checkout the source (in /opt/radcis/ci.rad.levitte.org/cci/state/10d8add5-fa9a-40ab-8b9f-a7bfb89dbdbf/w)

Started at: 2025-10-09 23:35:16.094441+02:00

Commands:

Read the repo configuration (.radicle/native.yaml in /opt/radcis/ci.rad.levitte.org/cci/state/10d8add5-fa9a-40ab-8b9f-a7bfb89dbdbf/w)

shell: 'export RUSTDOCFLAGS=''-D warnings''


  cargo --version

  rustc --version


  cargo fmt --check

  cargo clippy --all-targets --workspace -- --deny warnings

  cargo build --all-targets --workspace

  cargo doc --workspace --no-deps

  cargo test --workspace --no-fail-fast

  '

Run the script

Commands:

Send result

{
  "response": "finished",
  "result": "failure"
}