CI: FAILURE clingwrap

Table of Contents

Run log

Plan, inside VM without network

plan: Executor starts
After 0.00 seconds at 2026-06-17 16:41:27ZProgram: ambient-execute-plan
Version: 0.14.0@c37ec71
plan: Runnable plan
After 0.00 seconds at 2026-06-17 16:41:27Z
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/ssh_key -N '' -t ed25519
    cp /ci/secrets/ssh_key.pub ~/.ssh/authorized_keys
    systemctl start sshd
    ssh -o StrictHostKeyChecking=no localhost echo this is run over SSH
- 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-17 16:41:27Z
  • plan: Start action mkdir: /ci
    After 0.00 seconds at 2026-06-17 16:41:27Z
    Mkdir(
        Mkdir {
            pathname: "/ci",
        },
    )
  • plan: Action succeeded mkdir: /ci
    After 0.00 seconds at 2026-06-17 16:41:27Z
    Mkdir(
        Mkdir {
            pathname: "/ci",
        },
    )
plan: Successful action mkdir: /ci/artifacts
After 0.05 seconds at 2026-06-17 16:41:27Z
  • plan: Start action mkdir: /ci/artifacts
    After 0.00 seconds at 2026-06-17 16:41:27Z
    Mkdir(
        Mkdir {
            pathname: "/ci/artifacts",
        },
    )
  • plan: Action succeeded mkdir: /ci/artifacts
    After 0.00 seconds at 2026-06-17 16:41:27Z
    Mkdir(
        Mkdir {
            pathname: "/ci/artifacts",
        },
    )
plan: Successful action tar_extract
After 0.05 seconds at 2026-06-17 16:41:27Z
  • plan: Start action tar_extract
    After 0.00 seconds at 2026-06-17 16:41:27Z
    TarExtract(
        TarExtract {
            archive: "/dev/vdc",
            directory: "/ci/src",
        },
    )
  • plan: Action succeeded tar_extract
    After 0.00 seconds at 2026-06-17 16:41:27Z
    TarExtract(
        TarExtract {
            archive: "/dev/vdc",
            directory: "/ci/src",
        },
    )
plan: Successful action tar_extract
After 0.11 seconds at 2026-06-17 16:41:27Z
  • plan: Start action tar_extract
    After 0.00 seconds at 2026-06-17 16:41:27Z
    TarExtract(
        TarExtract {
            archive: "/dev/vdf",
            directory: "/ci/deps",
        },
    )
  • plan: Action succeeded tar_extract
    After 0.00 seconds at 2026-06-17 16:41:28Z
    TarExtract(
        TarExtract {
            archive: "/dev/vdf",
            directory: "/ci/deps",
        },
    )
plan: Successful action tar_extract
After 0.56 seconds at 2026-06-17 16:41:28Z
  • plan: Start action tar_extract
    After 0.00 seconds at 2026-06-17 16:41:28Z
    TarExtract(
        TarExtract {
            archive: "/dev/vde",
            directory: "/ci/cache",
        },
    )
  • plan: Action succeeded tar_extract
    After 0.00 seconds at 2026-06-17 16:41:28Z
    TarExtract(
        TarExtract {
            archive: "/dev/vde",
            directory: "/ci/cache",
        },
    )
plan: Successful action shell: ln -sf /ci /workspace
After 0.57 seconds at 2026-06-17 16:41:28Z
  • plan: Start action shell: ln -sf /ci /workspace
    After 0.00 seconds at 2026-06-17 16:41:28Z
    Shell(
        Shell {
            shell: "ln -sf /ci /workspace",
        },
    )
  • plan: Start program bash
    After 0.00 seconds at 2026-06-17 16:41:28Z
    • bash
    • -c
    • set -xeuo pipefail ln -sf /ci /workspace
  • plan: Program succeeded
    After 0.00 seconds at 2026-06-17 16:41:28Z
    Exit code: 0
    Stderr:
    + ln -sf /ci /workspace
    
  • plan: Action succeeded shell: ln -sf /ci /workspace
    After 0.00 seconds at 2026-06-17 16:41:28Z
    Shell(
        Shell {
            shell: "ln -sf /ci /workspace",
        },
    )
plan: Successful action shell: git config --global user.name 'Ambient CI'
After 0.58 seconds at 2026-06-17 16:41:28Z
  • plan: Start action shell: git config --global user.name 'Ambient CI'
    After 0.00 seconds at 2026-06-17 16:41:28Z
    Shell(
        Shell {
            shell: "git config --global user.name 'Ambient CI'",
        },
    )
  • plan: Start program bash
    After 0.00 seconds at 2026-06-17 16:41:28Z
    • bash
    • -c
    • set -xeuo pipefail git config --global user.name 'Ambient CI'
  • plan: Program succeeded
    After 0.00 seconds at 2026-06-17 16:41:28Z
    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-17 16:41:28Z
    Shell(
        Shell {
            shell: "git config --global user.name 'Ambient CI'",
        },
    )
plan: Successful action shell: git config --global user.email ambient@example.com
After 0.60 seconds at 2026-06-17 16:41:28Z
  • plan: Start action shell: git config --global user.email ambient@example.com
    After 0.00 seconds at 2026-06-17 16:41:28Z
    Shell(
        Shell {
            shell: "git config --global user.email ambient@example.com",
        },
    )
  • plan: Start program bash
    After 0.00 seconds at 2026-06-17 16:41:28Z
    • bash
    • -c
    • set -xeuo pipefail git config --global user.email ambient@example.com
  • plan: Program succeeded
    After 0.00 seconds at 2026-06-17 16:41:28Z
    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-17 16:41:28Z
    Shell(
        Shell {
            shell: "git config --global user.email ambient@example.com",
        },
    )
plan: Start action shell: ssh-keygen -f /ci/secrets/ssh_key -N '' -t ed25519 cp /ci/secrets/ssh_key.pub ~/.ssh/authorized_keys systemctl start sshd ssh -o StrictHostKeyChecking=no localhost echo this is run over SSH
After 0.62 seconds at 2026-06-17 16:41:28Z
Shell(
    Shell {
        shell: "ssh-keygen -f /ci/secrets/ssh_key -N '' -t ed25519\ncp /ci/secrets/ssh_key.pub ~/.ssh/authorized_keys\nsystemctl start sshd\nssh -o StrictHostKeyChecking=no localhost echo this is run over SSH\n",
    },
)
plan: Start program bash
After 0.62 seconds at 2026-06-17 16:41:28Z
  • bash
  • -c
  • set -xeuo pipefail ssh-keygen -f /ci/secrets/ssh_key -N '' -t ed25519 cp /ci/secrets/ssh_key.pub ~/.ssh/authorized_keys systemctl start sshd ssh -o StrictHostKeyChecking=no localhost echo this is run over SSH
plan: ERROR: Program failed
After 0.64 seconds at 2026-06-17 16:41:28Z
Exit code: 1
Stdout:
Generating public/private ed25519 key pair.
Stderr:
+ ssh-keygen -f /ci/secrets/ssh_key -N '' -t ed25519
Saving key "/ci/secrets/ssh_key" failed: No such file or directory
plan: Action failed: shell: ssh-keygen -f /ci/secrets/ssh_key -N '' -t ed25519 cp /ci/secrets/ssh_key.pub ~/.ssh/authorized_keys systemctl start sshd ssh -o StrictHostKeyChecking=no localhost echo this is run over SSH
After 0.64 seconds at 2026-06-17 16:41:28Z
Shell(
    Shell {
        shell: "ssh-keygen -f /ci/secrets/ssh_key -N '' -t ed25519\ncp /ci/secrets/ssh_key.pub ~/.ssh/authorized_keys\nsystemctl start sshd\nssh -o StrictHostKeyChecking=no localhost echo this is run over SSH\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": 1781714487,
        "nanos_since_epoch": 843247225
      },
      "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/ssh_key -N '' -t ed25519\ncp /ci/secrets/ssh_key.pub ~/.ssh/authorized_keys\nsystemctl start sshd\nssh -o StrictHostKeyChecking=no localhost echo this is run over SSH\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": 1781714487,
        "nanos_since_epoch": 845917116
      },
      "log_source": "Plan"
    }
  3. {
      "type": "execute_action",
      "action": "mkdir",
      "pathname": "/ci",
      "timestamp": {
        "secs_since_epoch": 1781714487,
        "nanos_since_epoch": 864573720
      },
      "log_source": "Plan"
    }
  4. {
      "type": "action_succeeded",
      "action": "mkdir",
      "pathname": "/ci",
      "timestamp": {
        "secs_since_epoch": 1781714487,
        "nanos_since_epoch": 887948104
      },
      "log_source": "Plan"
    }
  5. {
      "type": "execute_action",
      "action": "mkdir",
      "pathname": "/ci/artifacts",
      "timestamp": {
        "secs_since_epoch": 1781714487,
        "nanos_since_epoch": 890495473
      },
      "log_source": "Plan"
    }
  6. {
      "type": "action_succeeded",
      "action": "mkdir",
      "pathname": "/ci/artifacts",
      "timestamp": {
        "secs_since_epoch": 1781714487,
        "nanos_since_epoch": 893645286
      },
      "log_source": "Plan"
    }
  7. {
      "type": "execute_action",
      "action": "tar_extract",
      "archive": "/dev/vdc",
      "directory": "/ci/src",
      "timestamp": {
        "secs_since_epoch": 1781714487,
        "nanos_since_epoch": 896019776
      },
      "log_source": "Plan"
    }
  8. {
      "type": "action_succeeded",
      "action": "tar_extract",
      "archive": "/dev/vdc",
      "directory": "/ci/src",
      "timestamp": {
        "secs_since_epoch": 1781714487,
        "nanos_since_epoch": 954620578
      },
      "log_source": "Plan"
    }
  9. {
      "type": "execute_action",
      "action": "tar_extract",
      "archive": "/dev/vdf",
      "directory": "/ci/deps",
      "timestamp": {
        "secs_since_epoch": 1781714487,
        "nanos_since_epoch": 955061821
      },
      "log_source": "Plan"
    }
  10. {
      "type": "action_succeeded",
      "action": "tar_extract",
      "archive": "/dev/vdf",
      "directory": "/ci/deps",
      "timestamp": {
        "secs_since_epoch": 1781714488,
        "nanos_since_epoch": 403605755
      },
      "log_source": "Plan"
    }
  11. {
      "type": "execute_action",
      "action": "tar_extract",
      "archive": "/dev/vde",
      "directory": "/ci/cache",
      "timestamp": {
        "secs_since_epoch": 1781714488,
        "nanos_since_epoch": 406259321
      },
      "log_source": "Plan"
    }
  12. {
      "type": "action_succeeded",
      "action": "tar_extract",
      "archive": "/dev/vde",
      "directory": "/ci/cache",
      "timestamp": {
        "secs_since_epoch": 1781714488,
        "nanos_since_epoch": 410403416
      },
      "log_source": "Plan"
    }
  13. {
      "type": "execute_action",
      "action": "shell",
      "shell": "ln -sf /ci /workspace",
      "timestamp": {
        "secs_since_epoch": 1781714488,
        "nanos_since_epoch": 413017502
      },
      "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": 1781714488,
        "nanos_since_epoch": 415376656
      },
      "log_source": "Plan"
    }
  15. {
      "type": "program_succeeded",
      "exit_code": 0,
      "stdout": "",
      "stderr": "+ ln -sf /ci /workspace\n",
      "timestamp": {
        "secs_since_epoch": 1781714488,
        "nanos_since_epoch": 422479011
      },
      "log_source": "Plan"
    }
  16. {
      "type": "action_succeeded",
      "action": "shell",
      "shell": "ln -sf /ci /workspace",
      "timestamp": {
        "secs_since_epoch": 1781714488,
        "nanos_since_epoch": 425043739
      },
      "log_source": "Plan"
    }
  17. {
      "type": "execute_action",
      "action": "shell",
      "shell": "git config --global user.name 'Ambient CI'",
      "timestamp": {
        "secs_since_epoch": 1781714488,
        "nanos_since_epoch": 427410568
      },
      "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": 1781714488,
        "nanos_since_epoch": 430035331
      },
      "log_source": "Plan"
    }
  19. {
      "type": "program_succeeded",
      "exit_code": 0,
      "stdout": "",
      "stderr": "+ git config --global user.name 'Ambient CI'\n",
      "timestamp": {
        "secs_since_epoch": 1781714488,
        "nanos_since_epoch": 440294750
      },
      "log_source": "Plan"
    }
  20. {
      "type": "action_succeeded",
      "action": "shell",
      "shell": "git config --global user.name 'Ambient CI'",
      "timestamp": {
        "secs_since_epoch": 1781714488,
        "nanos_since_epoch": 443193556
      },
      "log_source": "Plan"
    }
  21. {
      "type": "execute_action",
      "action": "shell",
      "shell": "git config --global user.email ambient@example.com",
      "timestamp": {
        "secs_since_epoch": 1781714488,
        "nanos_since_epoch": 445839494
      },
      "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": 1781714488,
        "nanos_since_epoch": 448568190
      },
      "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": 1781714488,
        "nanos_since_epoch": 456672506
      },
      "log_source": "Plan"
    }
  24. {
      "type": "action_succeeded",
      "action": "shell",
      "shell": "git config --global user.email ambient@example.com",
      "timestamp": {
        "secs_since_epoch": 1781714488,
        "nanos_since_epoch": 459633037
      },
      "log_source": "Plan"
    }
  25. {
      "type": "execute_action",
      "action": "shell",
      "shell": "ssh-keygen -f /ci/secrets/ssh_key -N '' -t ed25519\ncp /ci/secrets/ssh_key.pub ~/.ssh/authorized_keys\nsystemctl start sshd\nssh -o StrictHostKeyChecking=no localhost echo this is run over SSH\n",
      "timestamp": {
        "secs_since_epoch": 1781714488,
        "nanos_since_epoch": 462409572
      },
      "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,
            115,
            115,
            104,
            95,
            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,
            115,
            115,
            104,
            95,
            107,
            101,
            121,
            46,
            112,
            117,
            98,
            32,
            126,
            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,
            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,
            101,
            99,
            104,
            111,
            32,
            116,
            104,
            105,
            115,
            32,
            105,
            115,
            32,
            114,
            117,
            110,
            32,
            111,
            118,
            101,
            114,
            32,
            83,
            83,
            72,
            10,
            10
          ]
        }
      ],
      "timestamp": {
        "secs_since_epoch": 1781714488,
        "nanos_since_epoch": 467108893
      },
      "log_source": "Plan"
    }
  27. {
      "type": "program_failed",
      "exit_code": 1,
      "stdout": "Generating public/private ed25519 key pair.\n",
      "stderr": "+ ssh-keygen -f /ci/secrets/ssh_key -N '' -t ed25519\nSaving key \"/ci/secrets/ssh_key\" failed: No such file or directory\r\n",
      "timestamp": {
        "secs_since_epoch": 1781714488,
        "nanos_since_epoch": 486146528
      },
      "log_source": "Plan"
    }
  28. {
      "type": "action_failed",
      "action": "shell",
      "shell": "ssh-keygen -f /ci/secrets/ssh_key -N '' -t ed25519\ncp /ci/secrets/ssh_key.pub ~/.ssh/authorized_keys\nsystemctl start sshd\nssh -o StrictHostKeyChecking=no localhost echo this is run over SSH\n",
      "timestamp": {
        "secs_since_epoch": 1781714488,
        "nanos_since_epoch": 486600824
      },
      "log_source": "Plan"
    }
  29. {
      "type": "executor_ends_in_failure",
      "exit_code": 1,
      "timestamp": {
        "secs_since_epoch": 1781714488,
        "nanos_since_epoch": 487243532
      },
      "log_source": "Plan"
    }

Trigger message

{
  "request": "trigger",
  "version": 1,
  "event_type": "push",
  "repository": {
    "id": "rad:z3248z9KmBQ6Tf4mwXih1zKPtuSw5",
    "name": "clingwrap",
    "description": "Utilities for making command line apps in Rust",
    "private": false,
    "default_branch": "main",
    "delegates": [
      "did:key:z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV"
    ]
  },
  "pusher": {
    "id": "did:key:z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV",
    "alias": "liw"
  },
  "before": "15a365bc2910595c8c9f78f80b2377a3af1f054f",
  "after": "15a365bc2910595c8c9f78f80b2377a3af1f054f",
  "branch": "main",
  "commits": [
    "15a365bc2910595c8c9f78f80b2377a3af1f054f"
  ]
}

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>