CCI report: 888dfa22-62c7-4bfe-ac36-0198cef365f8

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": "3e98589a767d9a17a3da90e52ae4abb198fa9ada",
    "after": "0469700d83ec46eaccede2d30d36da924a7c0e3d",
    "commits": [
      "0469700d83ec46eaccede2d30d36da924a7c0e3d",
      "60ae9f4935c54e66573084d0d082cc2e8c01f175",
      "902b66a6ba0fb870daddb600649a628c4252d2b7",
      "68d43d2bcc3f2ad93496f4639ecb6c6df8fe97c8",
      "b01bc132226e82fd710b8a44dbbb8455abaab65a",
      "4802f3a85ac68a517027fba3630099ded0318390",
      "778f8897ecb08c978122fdb70fd0ef10da57a97c"
    ],
    "target": "3e98589a767d9a17a3da90e52ae4abb198fa9ada",
    "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
      },
      {
        "id": "8a2ca52af6004ddee5fcce8802f22a7d79f1f83d",
        "author": {
          "id": "did:key:z6MkkPvBfjP4bQmco5Dm7UGsX2ruDBieEHi8n9DVJWX5sTEz",
          "alias": "lorenz"
        },
        "description": "Rebase",
        "base": "633059040cf1aae705172e7dac24c1fd863d44e9",
        "oid": "1d81f96ffbe3ea878181df42a3b699defc687e0d",
        "timestamp": 1760089036
      },
      {
        "id": "01334a94976a3191e59fba481c17abd724ccf3ba",
        "author": {
          "id": "did:key:z6MkkPvBfjP4bQmco5Dm7UGsX2ruDBieEHi8n9DVJWX5sTEz",
          "alias": "lorenz"
        },
        "description": "Linearize",
        "base": "633059040cf1aae705172e7dac24c1fd863d44e9",
        "oid": "3e505578b948a7541d0d88e286c0a8f1a953a115",
        "timestamp": 1760089170
      },
      {
        "id": "35ede635a75beb42ffcb629344b0e2b8de31b6b0",
        "author": {
          "id": "did:key:z6MkkPvBfjP4bQmco5Dm7UGsX2ruDBieEHi8n9DVJWX5sTEz",
          "alias": "lorenz"
        },
        "description": "Edit commit messages",
        "base": "ea562215eaa163568c3f1061e4cbbd907e9913db",
        "oid": "a1bece58c85c29d948e25abfb851814924bd9141",
        "timestamp": 1760090217
      },
      {
        "id": "af50a86347e8f3cc13d5f4d03142ba9523d7aa75",
        "author": {
          "id": "did:key:z6MkkPvBfjP4bQmco5Dm7UGsX2ruDBieEHi8n9DVJWX5sTEz",
          "alias": "lorenz"
        },
        "description": "REVIEW",
        "base": "ea562215eaa163568c3f1061e4cbbd907e9913db",
        "oid": "0db6602c1bc79c30d3351e43384d37f33e7b1bef",
        "timestamp": 1760099394
      },
      {
        "id": "deb3610cffa58908132e39c3c42324bdbf4023b9",
        "author": {
          "id": "did:key:z6MkkPvBfjP4bQmco5Dm7UGsX2ruDBieEHi8n9DVJWX5sTEz",
          "alias": "lorenz"
        },
        "description": "Work in Fintan's feedback, clean up, rebase on top of test fixes.",
        "base": "bb68fdad2307a3768197d56cfcfeafa95c79e78b",
        "oid": "c324810fa3cb49710eccb22db2f5c17754be69cf",
        "timestamp": 1760206797
      },
      {
        "id": "ae9d102a7930c1551d4f602d3dfb85f776d82e25",
        "author": {
          "id": "did:key:z6MkkPvBfjP4bQmco5Dm7UGsX2ruDBieEHi8n9DVJWX5sTEz",
          "alias": "lorenz"
        },
        "description": "Rebase, small fixes to `radicle-oid`.",
        "base": "3e98589a767d9a17a3da90e52ae4abb198fa9ada",
        "oid": "0469700d83ec46eaccede2d30d36da924a7c0e3d",
        "timestamp": 1760351277
      }
    ]
  }
}

Send response

{
  "response": "triggered",
  "run_id": {
    "id": "888dfa22-62c7-4bfe-ac36-0198cef365f8"
  },
  "info_url": "https://cci.rad.levitte.org//888dfa22-62c7-4bfe-ac36-0198cef365f8.html"
}

Checkout the source (in /opt/radcis/ci.rad.levitte.org/cci/state/888dfa22-62c7-4bfe-ac36-0198cef365f8/w)

Started at: 2025-10-13 12:28:03.126517+02:00

Commands:

Read the repo configuration (.radicle/native.yaml in /opt/radcis/ci.rad.levitte.org/cci/state/888dfa22-62c7-4bfe-ac36-0198cef365f8/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"
}