CI: FAILURE clingwrap

Table of Contents

Run log

Plan, inside VM without network

plan: Executor starts
After 0.00 seconds at 2026-06-16 06:34:21ZProgram: ambient-execute-plan
Version: 0.14.0@c37ec71
plan: Runnable plan
After 0.00 seconds at 2026-06-16 06:34:21Z
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: shell
  shell: |
    ssh-keygen -f /ci/secrets/key -N '' -t ed25519
    cp /ci/secrets/key.pub $HOME/.ssh/authorized_keys
    systemctl start sshd
    ssh -i /ci/secrets/key -o StrictHostKeyChecking=no localhost /bin/true
- action: cargo_clippy
- action: cargo_build
- action: cargo_test
- 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
envs: {}
plan: Successful action mkdir: /ci
After 0.02 seconds at 2026-06-16 06:34:21Z
  • plan: Start action mkdir: /ci
    After 0.00 seconds at 2026-06-16 06:34:21Z
    Mkdir(
        Mkdir {
            pathname: "/ci",
        },
    )
  • plan: Action succeeded mkdir: /ci
    After 0.00 seconds at 2026-06-16 06:34:21Z
    Mkdir(
        Mkdir {
            pathname: "/ci",
        },
    )
plan: Successful action mkdir: /ci/artifacts
After 0.03 seconds at 2026-06-16 06:34:21Z
  • plan: Start action mkdir: /ci/artifacts
    After 0.00 seconds at 2026-06-16 06:34:21Z
    Mkdir(
        Mkdir {
            pathname: "/ci/artifacts",
        },
    )
  • plan: Action succeeded mkdir: /ci/artifacts
    After 0.00 seconds at 2026-06-16 06:34:21Z
    Mkdir(
        Mkdir {
            pathname: "/ci/artifacts",
        },
    )
plan: Successful action tar_extract
After 0.04 seconds at 2026-06-16 06:34:21Z
  • plan: Start action tar_extract
    After 0.00 seconds at 2026-06-16 06:34:21Z
    TarExtract(
        TarExtract {
            archive: "/dev/vdc",
            directory: "/ci/src",
        },
    )
  • plan: Action succeeded tar_extract
    After 0.00 seconds at 2026-06-16 06:34:21Z
    TarExtract(
        TarExtract {
            archive: "/dev/vdc",
            directory: "/ci/src",
        },
    )
plan: Successful action tar_extract
After 0.09 seconds at 2026-06-16 06:34:21Z
  • plan: Start action tar_extract
    After 0.00 seconds at 2026-06-16 06:34:21Z
    TarExtract(
        TarExtract {
            archive: "/dev/vdf",
            directory: "/ci/deps",
        },
    )
  • plan: Action succeeded tar_extract
    After 0.00 seconds at 2026-06-16 06:34:22Z
    TarExtract(
        TarExtract {
            archive: "/dev/vdf",
            directory: "/ci/deps",
        },
    )
plan: Successful action tar_extract
After 0.52 seconds at 2026-06-16 06:34:22Z
  • plan: Start action tar_extract
    After 0.00 seconds at 2026-06-16 06:34:22Z
    TarExtract(
        TarExtract {
            archive: "/dev/vde",
            directory: "/ci/cache",
        },
    )
  • plan: Action succeeded tar_extract
    After 0.00 seconds at 2026-06-16 06:34:22Z
    TarExtract(
        TarExtract {
            archive: "/dev/vde",
            directory: "/ci/cache",
        },
    )
plan: Successful action shell: ln -sf /ci /workspace
After 0.52 seconds at 2026-06-16 06:34:22Z
  • plan: Start action shell: ln -sf /ci /workspace
    After 0.00 seconds at 2026-06-16 06:34:22Z
    Shell(
        Shell {
            shell: "ln -sf /ci /workspace",
        },
    )
  • plan: Start program bash
    After 0.00 seconds at 2026-06-16 06:34:22Z
    • bash
    • -c
    • set -xeuo pipefail ln -sf /ci /workspace
  • plan: Program succeeded
    After 0.00 seconds at 2026-06-16 06:34:22Z
    Exit code: 0
    Stderr:
    + ln -sf /ci /workspace
    
  • plan: Action succeeded shell: ln -sf /ci /workspace
    After 0.00 seconds at 2026-06-16 06:34:22Z
    Shell(
        Shell {
            shell: "ln -sf /ci /workspace",
        },
    )
plan: Successful action shell: git config --global user.name 'Ambient CI'
After 0.54 seconds at 2026-06-16 06:34:22Z
  • plan: Start action shell: git config --global user.name 'Ambient CI'
    After 0.00 seconds at 2026-06-16 06:34:22Z
    Shell(
        Shell {
            shell: "git config --global user.name 'Ambient CI'",
        },
    )
  • plan: Start program bash
    After 0.00 seconds at 2026-06-16 06:34:22Z
    • bash
    • -c
    • set -xeuo pipefail git config --global user.name 'Ambient CI'
  • plan: Program succeeded
    After 0.00 seconds at 2026-06-16 06:34:22Z
    Exit code: 0
    Stderr:
    + git config --global user.name 'Ambient CI'
    
  • plan: Action succeeded shell: git config --global user.name 'Ambient CI'
    After 0.00 seconds at 2026-06-16 06:34:22Z
    Shell(
        Shell {
            shell: "git config --global user.name 'Ambient CI'",
        },
    )
plan: Successful action shell: git config --global user.email ambient@example.com
After 0.55 seconds at 2026-06-16 06:34:22Z
  • plan: Start action shell: git config --global user.email ambient@example.com
    After 0.00 seconds at 2026-06-16 06:34:22Z
    Shell(
        Shell {
            shell: "git config --global user.email ambient@example.com",
        },
    )
  • plan: Start program bash
    After 0.00 seconds at 2026-06-16 06:34:22Z
    • bash
    • -c
    • set -xeuo pipefail git config --global user.email ambient@example.com
  • plan: Program succeeded
    After 0.00 seconds at 2026-06-16 06:34:22Z
    Exit code: 0
    Stderr:
    + git config --global user.email ambient@example.com
    
  • plan: Action succeeded shell: git config --global user.email ambient@example.com
    After 0.00 seconds at 2026-06-16 06:34:22Z
    Shell(
        Shell {
            shell: "git config --global user.email ambient@example.com",
        },
    )
plan: Start action shell: ssh-keygen -f /ci/secrets/key -N '' -t ed25519 cp /ci/secrets/key.pub $HOME/.ssh/authorized_keys systemctl start sshd ssh -i /ci/secrets/key -o StrictHostKeyChecking=no localhost /bin/true
After 0.57 seconds at 2026-06-16 06:34:22Z
Shell(
    Shell {
        shell: "ssh-keygen -f /ci/secrets/key -N '' -t ed25519\ncp /ci/secrets/key.pub $HOME/.ssh/authorized_keys\nsystemctl start sshd\nssh -i /ci/secrets/key -o StrictHostKeyChecking=no localhost /bin/true\n",
    },
)
plan: Start program bash
After 0.57 seconds at 2026-06-16 06:34:22Z
  • bash
  • -c
  • set -xeuo pipefail ssh-keygen -f /ci/secrets/key -N '' -t ed25519 cp /ci/secrets/key.pub $HOME/.ssh/authorized_keys systemctl start sshd ssh -i /ci/secrets/key -o StrictHostKeyChecking=no localhost /bin/true
plan: ERROR: Program failed
After 0.60 seconds at 2026-06-16 06:34:22Z
Exit code: 1
Stdout:
Generating public/private ed25519 key pair.
Stderr:
+ ssh-keygen -f /ci/secrets/key -N '' -t ed25519
Saving key "/ci/secrets/key" failed: No such file or directory
plan: Action failed: shell: ssh-keygen -f /ci/secrets/key -N '' -t ed25519 cp /ci/secrets/key.pub $HOME/.ssh/authorized_keys systemctl start sshd ssh -i /ci/secrets/key -o StrictHostKeyChecking=no localhost /bin/true
After 0.60 seconds at 2026-06-16 06:34:22Z
Shell(
    Shell {
        shell: "ssh-keygen -f /ci/secrets/key -N '' -t ed25519\ncp /ci/secrets/key.pub $HOME/.ssh/authorized_keys\nsystemctl start sshd\nssh -i /ci/secrets/key -o StrictHostKeyChecking=no localhost /bin/true\n",
    },
)

Raw log messages for Ambient troubleshooting

Raw log messages

These raw log messages are meant to help Ambient developers figure out problems. You can ignore them.

  1. {
      "type": "executor_starts",
      "name": "ambient-execute-plan",
      "version": "0.14.0@c37ec71",
      "timestamp": {
        "secs_since_epoch": 1781591661,
        "nanos_since_epoch": 747998019
      },
      "log_source": "Plan"
    }
  2. {
      "type": "runnable_plan",
      "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": "shell",
          "shell": "ssh-keygen -f /ci/secrets/key -N '' -t ed25519\ncp /ci/secrets/key.pub $HOME/.ssh/authorized_keys\nsystemctl start sshd\nssh -i /ci/secrets/key -o StrictHostKeyChecking=no localhost /bin/true\n"
        },
        {
          "action": "cargo_clippy"
        },
        {
          "action": "cargo_build"
        },
        {
          "action": "cargo_test"
        },
        {
          "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",
      "envs": {},
      "timestamp": {
        "secs_since_epoch": 1781591661,
        "nanos_since_epoch": 751286062
      },
      "log_source": "Plan"
    }
  3. {
      "type": "execute_action",
      "action": "mkdir",
      "pathname": "/ci",
      "timestamp": {
        "secs_since_epoch": 1781591661,
        "nanos_since_epoch": 771453648
      },
      "log_source": "Plan"
    }
  4. {
      "type": "action_succeeded",
      "action": "mkdir",
      "pathname": "/ci",
      "timestamp": {
        "secs_since_epoch": 1781591661,
        "nanos_since_epoch": 773788640
      },
      "log_source": "Plan"
    }
  5. {
      "type": "execute_action",
      "action": "mkdir",
      "pathname": "/ci/artifacts",
      "timestamp": {
        "secs_since_epoch": 1781591661,
        "nanos_since_epoch": 775996763
      },
      "log_source": "Plan"
    }
  6. {
      "type": "action_succeeded",
      "action": "mkdir",
      "pathname": "/ci/artifacts",
      "timestamp": {
        "secs_since_epoch": 1781591661,
        "nanos_since_epoch": 778523414
      },
      "log_source": "Plan"
    }
  7. {
      "type": "execute_action",
      "action": "tar_extract",
      "archive": "/dev/vdc",
      "directory": "/ci/src",
      "timestamp": {
        "secs_since_epoch": 1781591661,
        "nanos_since_epoch": 789639047
      },
      "log_source": "Plan"
    }
  8. {
      "type": "action_succeeded",
      "action": "tar_extract",
      "archive": "/dev/vdc",
      "directory": "/ci/src",
      "timestamp": {
        "secs_since_epoch": 1781591661,
        "nanos_since_epoch": 833707389
      },
      "log_source": "Plan"
    }
  9. {
      "type": "execute_action",
      "action": "tar_extract",
      "archive": "/dev/vdf",
      "directory": "/ci/deps",
      "timestamp": {
        "secs_since_epoch": 1781591661,
        "nanos_since_epoch": 833744355
      },
      "log_source": "Plan"
    }
  10. {
      "type": "action_succeeded",
      "action": "tar_extract",
      "archive": "/dev/vdf",
      "directory": "/ci/deps",
      "timestamp": {
        "secs_since_epoch": 1781591662,
        "nanos_since_epoch": 266112267
      },
      "log_source": "Plan"
    }
  11. {
      "type": "execute_action",
      "action": "tar_extract",
      "archive": "/dev/vde",
      "directory": "/ci/cache",
      "timestamp": {
        "secs_since_epoch": 1781591662,
        "nanos_since_epoch": 266149176
      },
      "log_source": "Plan"
    }
  12. {
      "type": "action_succeeded",
      "action": "tar_extract",
      "archive": "/dev/vde",
      "directory": "/ci/cache",
      "timestamp": {
        "secs_since_epoch": 1781591662,
        "nanos_since_epoch": 272565698
      },
      "log_source": "Plan"
    }
  13. {
      "type": "execute_action",
      "action": "shell",
      "shell": "ln -sf /ci /workspace",
      "timestamp": {
        "secs_since_epoch": 1781591662,
        "nanos_since_epoch": 272587350
      },
      "log_source": "Plan"
    }
  14. {
      "type": "start_program",
      "argv": [
        {
          "Unix": [
            98,
            97,
            115,
            104
          ]
        },
        {
          "Unix": [
            45,
            99
          ]
        },
        {
          "Unix": [
            115,
            101,
            116,
            32,
            45,
            120,
            101,
            117,
            111,
            32,
            112,
            105,
            112,
            101,
            102,
            97,
            105,
            108,
            10,
            108,
            110,
            32,
            45,
            115,
            102,
            32,
            47,
            99,
            105,
            32,
            47,
            119,
            111,
            114,
            107,
            115,
            112,
            97,
            99,
            101,
            10
          ]
        }
      ],
      "timestamp": {
        "secs_since_epoch": 1781591662,
        "nanos_since_epoch": 272598806
      },
      "log_source": "Plan"
    }
  15. {
      "type": "program_succeeded",
      "exit_code": 0,
      "stdout": "",
      "stderr": "+ ln -sf /ci /workspace\n",
      "timestamp": {
        "secs_since_epoch": 1781591662,
        "nanos_since_epoch": 283705891
      },
      "log_source": "Plan"
    }
  16. {
      "type": "action_succeeded",
      "action": "shell",
      "shell": "ln -sf /ci /workspace",
      "timestamp": {
        "secs_since_epoch": 1781591662,
        "nanos_since_epoch": 283726653
      },
      "log_source": "Plan"
    }
  17. {
      "type": "execute_action",
      "action": "shell",
      "shell": "git config --global user.name 'Ambient CI'",
      "timestamp": {
        "secs_since_epoch": 1781591662,
        "nanos_since_epoch": 283732198
      },
      "log_source": "Plan"
    }
  18. {
      "type": "start_program",
      "argv": [
        {
          "Unix": [
            98,
            97,
            115,
            104
          ]
        },
        {
          "Unix": [
            45,
            99
          ]
        },
        {
          "Unix": [
            115,
            101,
            116,
            32,
            45,
            120,
            101,
            117,
            111,
            32,
            112,
            105,
            112,
            101,
            102,
            97,
            105,
            108,
            10,
            103,
            105,
            116,
            32,
            99,
            111,
            110,
            102,
            105,
            103,
            32,
            45,
            45,
            103,
            108,
            111,
            98,
            97,
            108,
            32,
            117,
            115,
            101,
            114,
            46,
            110,
            97,
            109,
            101,
            32,
            39,
            65,
            109,
            98,
            105,
            101,
            110,
            116,
            32,
            67,
            73,
            39,
            10
          ]
        }
      ],
      "timestamp": {
        "secs_since_epoch": 1781591662,
        "nanos_since_epoch": 284159584
      },
      "log_source": "Plan"
    }
  19. {
      "type": "program_succeeded",
      "exit_code": 0,
      "stdout": "",
      "stderr": "+ git config --global user.name 'Ambient CI'\n",
      "timestamp": {
        "secs_since_epoch": 1781591662,
        "nanos_since_epoch": 300577705
      },
      "log_source": "Plan"
    }
  20. {
      "type": "action_succeeded",
      "action": "shell",
      "shell": "git config --global user.name 'Ambient CI'",
      "timestamp": {
        "secs_since_epoch": 1781591662,
        "nanos_since_epoch": 300603168
      },
      "log_source": "Plan"
    }
  21. {
      "type": "execute_action",
      "action": "shell",
      "shell": "git config --global user.email ambient@example.com",
      "timestamp": {
        "secs_since_epoch": 1781591662,
        "nanos_since_epoch": 300608923
      },
      "log_source": "Plan"
    }
  22. {
      "type": "start_program",
      "argv": [
        {
          "Unix": [
            98,
            97,
            115,
            104
          ]
        },
        {
          "Unix": [
            45,
            99
          ]
        },
        {
          "Unix": [
            115,
            101,
            116,
            32,
            45,
            120,
            101,
            117,
            111,
            32,
            112,
            105,
            112,
            101,
            102,
            97,
            105,
            108,
            10,
            103,
            105,
            116,
            32,
            99,
            111,
            110,
            102,
            105,
            103,
            32,
            45,
            45,
            103,
            108,
            111,
            98,
            97,
            108,
            32,
            117,
            115,
            101,
            114,
            46,
            101,
            109,
            97,
            105,
            108,
            32,
            97,
            109,
            98,
            105,
            101,
            110,
            116,
            64,
            101,
            120,
            97,
            109,
            112,
            108,
            101,
            46,
            99,
            111,
            109,
            10
          ]
        }
      ],
      "timestamp": {
        "secs_since_epoch": 1781591662,
        "nanos_since_epoch": 300822803
      },
      "log_source": "Plan"
    }
  23. {
      "type": "program_succeeded",
      "exit_code": 0,
      "stdout": "",
      "stderr": "+ git config --global user.email ambient@example.com\n",
      "timestamp": {
        "secs_since_epoch": 1781591662,
        "nanos_since_epoch": 316045260
      },
      "log_source": "Plan"
    }
  24. {
      "type": "action_succeeded",
      "action": "shell",
      "shell": "git config --global user.email ambient@example.com",
      "timestamp": {
        "secs_since_epoch": 1781591662,
        "nanos_since_epoch": 316067169
      },
      "log_source": "Plan"
    }
  25. {
      "type": "execute_action",
      "action": "shell",
      "shell": "ssh-keygen -f /ci/secrets/key -N '' -t ed25519\ncp /ci/secrets/key.pub $HOME/.ssh/authorized_keys\nsystemctl start sshd\nssh -i /ci/secrets/key -o StrictHostKeyChecking=no localhost /bin/true\n",
      "timestamp": {
        "secs_since_epoch": 1781591662,
        "nanos_since_epoch": 316073057
      },
      "log_source": "Plan"
    }
  26. {
      "type": "start_program",
      "argv": [
        {
          "Unix": [
            98,
            97,
            115,
            104
          ]
        },
        {
          "Unix": [
            45,
            99
          ]
        },
        {
          "Unix": [
            115,
            101,
            116,
            32,
            45,
            120,
            101,
            117,
            111,
            32,
            112,
            105,
            112,
            101,
            102,
            97,
            105,
            108,
            10,
            115,
            115,
            104,
            45,
            107,
            101,
            121,
            103,
            101,
            110,
            32,
            45,
            102,
            32,
            47,
            99,
            105,
            47,
            115,
            101,
            99,
            114,
            101,
            116,
            115,
            47,
            107,
            101,
            121,
            32,
            45,
            78,
            32,
            39,
            39,
            32,
            45,
            116,
            32,
            101,
            100,
            50,
            53,
            53,
            49,
            57,
            10,
            99,
            112,
            32,
            47,
            99,
            105,
            47,
            115,
            101,
            99,
            114,
            101,
            116,
            115,
            47,
            107,
            101,
            121,
            46,
            112,
            117,
            98,
            32,
            36,
            72,
            79,
            77,
            69,
            47,
            46,
            115,
            115,
            104,
            47,
            97,
            117,
            116,
            104,
            111,
            114,
            105,
            122,
            101,
            100,
            95,
            107,
            101,
            121,
            115,
            10,
            115,
            121,
            115,
            116,
            101,
            109,
            99,
            116,
            108,
            32,
            115,
            116,
            97,
            114,
            116,
            32,
            115,
            115,
            104,
            100,
            10,
            115,
            115,
            104,
            32,
            45,
            105,
            32,
            47,
            99,
            105,
            47,
            115,
            101,
            99,
            114,
            101,
            116,
            115,
            47,
            107,
            101,
            121,
            32,
            45,
            111,
            32,
            83,
            116,
            114,
            105,
            99,
            116,
            72,
            111,
            115,
            116,
            75,
            101,
            121,
            67,
            104,
            101,
            99,
            107,
            105,
            110,
            103,
            61,
            110,
            111,
            32,
            108,
            111,
            99,
            97,
            108,
            104,
            111,
            115,
            116,
            32,
            47,
            98,
            105,
            110,
            47,
            116,
            114,
            117,
            101,
            10,
            10
          ]
        }
      ],
      "timestamp": {
        "secs_since_epoch": 1781591662,
        "nanos_since_epoch": 316281089
      },
      "log_source": "Plan"
    }
  27. {
      "type": "program_failed",
      "exit_code": 1,
      "stdout": "Generating public/private ed25519 key pair.\n",
      "stderr": "+ ssh-keygen -f /ci/secrets/key -N '' -t ed25519\nSaving key \"/ci/secrets/key\" failed: No such file or directory\r\n",
      "timestamp": {
        "secs_since_epoch": 1781591662,
        "nanos_since_epoch": 345099642
      },
      "log_source": "Plan"
    }
  28. {
      "type": "action_failed",
      "action": "shell",
      "shell": "ssh-keygen -f /ci/secrets/key -N '' -t ed25519\ncp /ci/secrets/key.pub $HOME/.ssh/authorized_keys\nsystemctl start sshd\nssh -i /ci/secrets/key -o StrictHostKeyChecking=no localhost /bin/true\n",
      "timestamp": {
        "secs_since_epoch": 1781591662,
        "nanos_since_epoch": 345125115
      },
      "log_source": "Plan"
    }
  29. {
      "type": "executor_ends_in_failure",
      "exit_code": 1,
      "timestamp": {
        "secs_since_epoch": 1781591662,
        "nanos_since_epoch": 345754034
      },
      "log_source": "Plan"
    }

Trigger message

{
  "request": "trigger",
  "version": 1,
  "event_type": "patch",
  "repository": {
    "id": "rad:z3248z9KmBQ6Tf4mwXih1zKPtuSw5",
    "name": "clingwrap",
    "description": "Utilities for making command line apps in Rust",
    "private": false,
    "default_branch": "main",
    "delegates": [
      "did:key:z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV"
    ]
  },
  "action": "Updated",
  "patch": {
    "id": "5cd2b27c1d703209fe9a8ffef913d6c41c63f640",
    "author": {
      "id": "did:key:z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV",
      "alias": "liw"
    },
    "title": "ci: enable SSH for localhost",
    "state": {
      "status": "open",
      "conflicts": []
    },
    "before": "31be2837205adfc423cb6f29b468fb07c75a3c32",
    "after": "692bc55a71e8312f86a4d383419ff12257a138a2",
    "commits": [
      "692bc55a71e8312f86a4d383419ff12257a138a2"
    ],
    "target": "31be2837205adfc423cb6f29b468fb07c75a3c32",
    "labels": [],
    "assignees": [],
    "revisions": [
      {
        "id": "5cd2b27c1d703209fe9a8ffef913d6c41c63f640",
        "author": {
          "id": "did:key:z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV",
          "alias": "liw"
        },
        "description": "",
        "base": "31be2837205adfc423cb6f29b468fb07c75a3c32",
        "oid": "66f6bd4ca2e8e07fba4ac80a64cdd6aaaf1e2f3f",
        "timestamp": 1781591581
      },
      {
        "id": "3bef52f09bb1b3a1160803736df30ad6836c8d75",
        "author": {
          "id": "did:key:z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV",
          "alias": "liw"
        },
        "description": "fix?",
        "base": "31be2837205adfc423cb6f29b468fb07c75a3c32",
        "oid": "692bc55a71e8312f86a4d383419ff12257a138a2",
        "timestamp": 1781591652
      }
    ]
  }
}

Ambient stdout

executor from config: /usr/bin/ambient-execute-plan
executor from PATH: /usr/bin/ambient-execute-plan
run CI for rad:z3248z9KmBQ6Tf4mwXih1zKPtuSw5
ERROR: CI run failed inside QEMU

Ambient stderr

<empty log>