rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5 heartwood2f9a2bc8e8862d35a82036c40b06070edc3539a1
{
"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": "29ebeb6cd3c8785057273c96d95d8b94ced061d8",
"author": {
"id": "did:key:z6MkwGoyYxt6A2VE3fvZyH2rgiWdsXHBeV7jm7GSByS2aagA",
"alias": "ade"
},
"title": "Ignore broken pipe in Element::print()",
"state": {
"status": "open",
"conflicts": []
},
"before": "22b2871f64ecf34a22d32add0dd59a0c7c96ad10",
"after": "2f9a2bc8e8862d35a82036c40b06070edc3539a1",
"commits": [
"2f9a2bc8e8862d35a82036c40b06070edc3539a1",
"4e39faa51387363d128018303c7f3564d0727745",
"fd2e9636f26887d9d7af9ed9ce7f8112185072c8",
"e442212374a080199eab2b3c96490e9c93b85b80",
"cdec8fbcbc512f9d297dbb925431e99d00c590de",
"9a86383c9e071727f5095fd55e2e92ac0c73bc1a",
"12901cdd129aa436ec65aa0e124547bfc09d630e",
"ad87939cf352f8ea0b52983948608d183d32376f",
"4c10dcc17cb22909193c643410b464e469e8d268",
"16145b91368cedd4941a3a68cc361a5eecd55c1a",
"3352caac9d489d979c3314a75c72db7392a2a918",
"665df61be9d1dd7c54cf6bc812c795d87c1be930",
"613ec91ac750d79ecfd89c813d6a5236baf4a934",
"085c96ceb5ccda82de650cb5c6487357494e78f7",
"942c51f8f2fd8abb28a6d5a853b9ad405d03ba54",
"91b4eca2cc6e3fe6b71bfee5a1a8bf93034434c1",
"ec78acfa3ba991eaa80d91a14ca89a7fe676f41c",
"95a35dc10cd6ad10144a172344b007ff4b7396ec",
"ab7ad8de948144f9f1d0be024177b9ed32d2879a"
],
"target": "ac3eba09a111c09c3a6e4ce106520a3aaa1808b2",
"labels": [],
"assignees": [],
"revisions": [
{
"id": "29ebeb6cd3c8785057273c96d95d8b94ced061d8",
"author": {
"id": "did:key:z6MkwGoyYxt6A2VE3fvZyH2rgiWdsXHBeV7jm7GSByS2aagA",
"alias": "ade"
},
"description": "I found the issue reported by spacefrogg in\n\n https://radicle.zulipchat.com/#narrow/channel/369277-heartwood/topic/Terminal.20output.20handling.20and.20pipes/with/574695784\n\nAnd figured that this might be a low-hanging fruit (at least the exact error\nthey reported), so I went ahead and fixed it with this patch.\n\nI am not yet sure whether this is \"the way to go\" for the codebase, but well,\nit is a proposal. Tell me what you think!",
"base": "423cf604e1178d62c6952f866b4b5d0b9667aca8",
"oid": "cb0c1ebf9f6aba3ce063a754464dc3f454788362",
"timestamp": 1771508707
},
{
"id": "316e03e39743e3d4d96c791b97484f833c34a111",
"author": {
"id": "did:key:z6MkwGoyYxt6A2VE3fvZyH2rgiWdsXHBeV7jm7GSByS2aagA",
"alias": "ade"
},
"description": "Systemic Approach to handling SIGPIPE\n\nWorking off of the back of the previous revision, this set of changes\nattempts to address the SIGPIPE issue across the whole `rad` CLI.\n\nIt first introduces tests to ensure the behaviour is fixed when the\n`radicle-cli` changes are made \u2013 removing the `ignore` from the two\nfailing tests.\n\nIt then avoids the use of `println!` and `print!` macros in the\n`radicle-term` crate.\n\nThat sets up the changes for `radicle-cli` to use the `radicle-term`\nfunctions, denying any `print!` and `println!` macros. On top of this,\nit adds a backstop handling of SIGPIPE as another panic hook, as well\nas handling SIGPIPE at the top-level of `run`.\n\nThe final changes are a renaming refactor to better represent the\nbehaviours of each flavour of print function.",
"base": "22b2871f64ecf34a22d32add0dd59a0c7c96ad10",
"oid": "d45cd40f545d7ce724fd84c21b7dd08320df81ce",
"timestamp": 1775200239
},
{
"id": "f128e9a2627746d456c3bfc7db8c1063208bb1ff",
"author": {
"id": "did:key:z6MkwGoyYxt6A2VE3fvZyH2rgiWdsXHBeV7jm7GSByS2aagA",
"alias": "ade"
},
"description": "Changes:\n- Print panic trace to stderr if debug_assertions is enabled\n- Factor out handling of panic into function",
"base": "22b2871f64ecf34a22d32add0dd59a0c7c96ad10",
"oid": "d5e44d0dc10f7b1401161881e95157e7e94b89f5",
"timestamp": 1775203347
},
{
"id": "36dd83f2002ae8a39dd008f8f84fe208c568c442",
"author": {
"id": "did:key:z6MkwGoyYxt6A2VE3fvZyH2rgiWdsXHBeV7jm7GSByS2aagA",
"alias": "ade"
},
"description": "Review",
"base": "22b2871f64ecf34a22d32add0dd59a0c7c96ad10",
"oid": "1ed7893a195ca82136e64b74073999581068b221",
"timestamp": 1776203811
},
{
"id": "9fc6ae4494ce6eb218cf02ff3b086e1e62b373b2",
"author": {
"id": "did:key:z6MkwGoyYxt6A2VE3fvZyH2rgiWdsXHBeV7jm7GSByS2aagA",
"alias": "ade"
},
"description": "Remove unnecessary space.",
"base": "22b2871f64ecf34a22d32add0dd59a0c7c96ad10",
"oid": "4e39faa51387363d128018303c7f3564d0727745",
"timestamp": 1776204821
},
{
"id": "dd252b5e04fac94f6159d463f0f509e834049219",
"author": {
"id": "did:key:z6MkwGoyYxt6A2VE3fvZyH2rgiWdsXHBeV7jm7GSByS2aagA",
"alias": "ade"
},
"description": "",
"base": "22b2871f64ecf34a22d32add0dd59a0c7c96ad10",
"oid": "2f9a2bc8e8862d35a82036c40b06070edc3539a1",
"timestamp": 1776253770
}
]
}
}
{
"response": "triggered",
"run_id": {
"id": "72c957c9-4c1c-44de-b204-6ba8daa7b208"
},
"info_url": "https://cci.rad.levitte.org//72c957c9-4c1c-44de-b204-6ba8daa7b208.html"
}
Started at: 2026-04-15 13:49:37.364496+02:00
Commands:
$ rad clone rad:z3gqcJUoA1n9HaHKufZs5FCSGazv5 .
✓ Creating checkout in ./...
✓ Remote cloudhead@z6MksFqXN3Yhqk8pTJdUGLwATkRfQvwZXPqR2qMEhbS9wzpT added
✓ Remote-tracking branch cloudhead@z6MksFqXN3Yhqk8pTJdUGLwATkRfQvwZXPqR2qMEhbS9wzpT/master created for z6MksFqXN3Yhqk8pTJdUGLwATkRfQvwZXPqR2qMEhbS9wzpT
✓ Remote cloudhead@z6MktaNvN1KVFMkSRAiN4qK5yvX1zuEEaseeX5sffhzPZRZW added
✓ Remote-tracking branch cloudhead@z6MktaNvN1KVFMkSRAiN4qK5yvX1zuEEaseeX5sffhzPZRZW/master created for z6MktaNvN1KVFMkSRAiN4qK5yvX1zuEEaseeX5sffhzPZRZW
✓ Remote fintohaps@z6MkireRatUThvd3qzfKht1S44wpm4FEWSSa4PRMTSQZ3voM added
✓ Remote-tracking branch fintohaps@z6MkireRatUThvd3qzfKht1S44wpm4FEWSSa4PRMTSQZ3voM/master created for z6MkireRatUThvd3qzfKht1S44wpm4FEWSSa4PRMTSQZ3voM
✓ Remote erikli@z6MkgFq6z5fkF2hioLLSNu1zP2qEL1aHXHZzGH1FLFGAnBGz added
✓ Remote-tracking branch erikli@z6MkgFq6z5fkF2hioLLSNu1zP2qEL1aHXHZzGH1FLFGAnBGz/master created for z6MkgFq6z5fkF2hioLLSNu1zP2qEL1aHXHZzGH1FLFGAnBGz
✓ Remote lorenz@z6MkkPvBfjP4bQmco5Dm7UGsX2ruDBieEHi8n9DVJWX5sTEz added
✓ Remote-tracking branch lorenz@z6MkkPvBfjP4bQmco5Dm7UGsX2ruDBieEHi8n9DVJWX5sTEz/master created for z6MkkPvBfjP4bQmco5Dm7UGsX2ruDBieEHi8n9DVJWX5sTEz
✓ Repository successfully cloned under /opt/radcis/ci.rad.levitte.org/cci/state/72c957c9-4c1c-44de-b204-6ba8daa7b208/w/
╭────────────────────────────────────╮
│ heartwood │
│ Radicle Heartwood Protocol & Stack │
│ 154 issues · 41 patches │
╰────────────────────────────────────╯
Run `cd ./.` to go to the repository directory.
Exit code: 0
$ rad patch checkout 29ebeb6cd3c8785057273c96d95d8b94ced061d8
✓ Switched to branch patch/29ebeb6 at revision 29ebeb6
✓ Branch patch/29ebeb6 setup to track rad/patches/29ebeb6cd3c8785057273c96d95d8b94ced061d8
Exit code: 0
$ git config advice.detachedHead false
Exit code: 0
$ git checkout 2f9a2bc8e8862d35a82036c40b06070edc3539a1
fatal: unable to read tree (2f9a2bc8e8862d35a82036c40b06070edc3539a1)
Exit code: 128