{
"request": "trigger",
"version": 1,
"event_type": "patch",
"repository": {
"id": "rad:zwPaQSTBX8hktn22F6tHAZSFH2Fh",
"name": "ambient-ci",
"description": "Ambient command line tool to run CI projects locally",
"private": false,
"default_branch": "main",
"delegates": [
"did:key:z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV"
]
},
"action": "Created",
"patch": {
"id": "bec667fce1e4ab86cc5a3f2e0f880a6bbb560bb2",
"author": {
"id": "did:key:z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV",
"alias": "liw"
},
"title": "feat: add pip_download and go_mod_download pre-plan actions",
"state": {
"status": "open",
"conflicts": []
},
"before": "649b179d501a98801e0715dd24312cc7d56d7c8a",
"after": "d84be54d89e2fb7c89f0cdd3e75be1c33b179cf3",
"commits": [
"d84be54d89e2fb7c89f0cdd3e75be1c33b179cf3"
],
"target": "649b179d501a98801e0715dd24312cc7d56d7c8a",
"labels": [],
"assignees": [],
"revisions": [
{
"id": "bec667fce1e4ab86cc5a3f2e0f880a6bbb560bb2",
"author": {
"id": "did:key:z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV",
"alias": "liw"
},
"description": "Add two new pre-plan actions for downloading dependencies, following\nthe same pattern as cargo_fetch, npm_get, and deb_get:\n\n- pip_download: copies only the requirements file from the source tree,\n then runs `pip download` to fetch packages into deps/pip/. By default\n only pre-built wheels are downloaded (--only-binary=:all:) to avoid\n executing setup.py. Sets PIP_FIND_LINKS and PIP_NO_INDEX plan env\n vars so the VM installs from local packages offline.\n\n- go_mod_download: copies only go.mod and go.sum from the source tree,\n then runs `go mod download` with GOMODCACHE pointing at deps/gomod/.\n Sets GOMODCACHE and GONOSUMCHECK plan env vars for the VM.\n\nBoth actions follow the security principle of never exposing the full\nsource tree to the package manager during pre-plan, and never executing\nuntrusted project code.\n\nExample .radicle/ambient.yaml for a Python project:\n\n pre_plan:\n - action: pip_download\n plan:\n - action: shell\n shell: |\n pip install --no-index --find-links /ci/deps/pip -r requirements.txt\n python -m pytest\n\nExample for a Go project:\n\n pre_plan:\n - action: go_mod_download\n plan:\n - action: shell\n shell: |\n go build ./...\n go test ./...\n\nCo-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>",
"base": "c37ec710c1ada18241d70f20e3a8a1e8285da6aa",
"oid": "599a08d2f6494cb7221587d619ed6be9c3952253",
"timestamp": 1775030992
},
{
"id": "055b493ebdf39c41136a0907110b1570156ee94a",
"author": {
"id": "did:key:z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV",
"alias": "liw"
},
"description": "Rebase on current main",
"base": "649b179d501a98801e0715dd24312cc7d56d7c8a",
"oid": "d84be54d89e2fb7c89f0cdd3e75be1c33b179cf3",
"timestamp": 1783919462
}
]
}
}executor from config: /usr/bin/ambient-execute-plan
executor from PATH: /usr/bin/ambient-execute-plan
run CI for rad:zwPaQSTBX8hktn22F6tHAZSFH2Fh
CONSTRUCT: Config {
tmpdir: "/home/_rad/tmp",
image_store: "/home/_rad/ambient-images",
projects: "/dev/null",
state: "/home/_rad/ambient-state",
rsync_target: None,
rsync_target_base: None,
rsync_target_map: None,
dput_target: None,
executor: Some(
"/usr/bin/ambient-execute-plan",
),
artifacts_max_size: Byte(
1000000000,
),
cache_max_size: Byte(
30000000000,
),
qemu: QemuConfig {
cpus: 2,
memory: Byte(
12000000000,
),
kvm_binary: "/usr/bin/kvm",
ovmf_vars_file: "/usr/share/ovmf/OVMF.fd",
ovmf_code_file: "/usr/share/ovmf/OVMF.fd",
},
uefi: false,
lint: false,
secrets: None,
} Project {
source: TildePathBuf {
path: "src",
},
expanded_source: "/tmp/.tmp5IqqTV/src",
image: TildePathBuf {
path: "/home/_rad/ambient.qcow2",
},
expanded_image: "/home/_rad/ambient.qcow2",
pre_plan: Some(
[
CargoFetch,
],
),
plan: Some(
[
CargoFmt,
CargoClippy,
CargoBuild,
CargoTest,
Shell {
shell: "make doc\ncp ./*.html doc/*.html /ci/artifacts\ngit reset --hard\ngit clean -fdx\n",
},
Custom(
Custom {
name: "dch",
args: {
"debemail": String("liw@liw.fi"),
"debfullname": String("Lars Wirzenius"),
},
},
),
Deb,
],
),
post_plan: Some(
[],
),
artifact_max_size: None,
cache_max_size: None,
dependencies_max_size: None,
}
SECRETS: copy OK
======================== run log:
====================== end of run log
ERROR: CI run failed inside QEMU
<empty log>
ambient-execute-plan0.16.0@da3268dsteps:
- action: mkdir
pathname: /ci
- action: mkdir
pathname: /ci/artifacts
- action: mkdir
pathname: /ci/artifacts/debian
- action: mkdir
pathname: /ci/artifacts/rsync
- action: mkdir
pathname: /ci/secrets
- action: mkdir
pathname: /ci/deps
- 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: tar_extract
archive: /dev/vdd
directory: /ci/artifacts
- action: tar_extract
archive: /dev/vdg
directory: /ci/secrets
- action: shell
shell: ln -sf /ci /workspace
- action: create_file
filename: /root/.ssh/config
content: "Host *\nStrictHostKeyChecking accept-new\nIdentityFile /ci/secrets/ssh_key\n "
overwrite: true
- action: cargo_fetch
- action: tar_create
archive: /dev/vde
directory: /ci/cache
- action: tar_create
archive: /dev/vdd
directory: /ci/artifacts
- action: tar_create
archive: /dev/vdf
directory: /ci/deps
executor_drive: /dev/vdb
source_drive: /dev/vdc
artifact_drive: /dev/vdd
cache_drive: /dev/vde
deps_drive: /dev/vdf
secrets_drive: null
workspace_dir: /ci
source_dir: /ci/src
deps_dir: /ci/deps
cache_dir: /ci/cache
artifacts_dir: /ci/artifacts
secrets_dir: null
envs: {}
- action: mkdir pathname: /ci
- action: mkdir pathname: /ci
- action: mkdir pathname: /ci/artifacts
- action: mkdir pathname: /ci/artifacts
- action: mkdir pathname: /ci/artifacts/debian
- action: mkdir pathname: /ci/artifacts/debian
- action: mkdir pathname: /ci/artifacts/rsync
- action: mkdir pathname: /ci/artifacts/rsync
- action: mkdir pathname: /ci/secrets
- action: mkdir pathname: /ci/secrets
- action: mkdir pathname: /ci/deps
- action: mkdir pathname: /ci/deps
- action: tar_extract archive: /dev/vdc directory: /ci/src
- action: tar_extract archive: /dev/vdc directory: /ci/src
- action: tar_extract archive: /dev/vdf directory: /ci/deps
- action: tar_extract archive: /dev/vdf directory: /ci/deps
- action: tar_extract archive: /dev/vde directory: /ci/cache
- action: tar_extract archive: /dev/vde directory: /ci/cache
- action: tar_extract archive: /dev/vdd directory: /ci/artifacts
- action: tar_extract archive: /dev/vdd directory: /ci/artifacts
- action: tar_extract archive: /dev/vdg directory: /ci/secrets
- action: tar_extract archive: /dev/vdg directory: /ci/secrets
- action: shell shell: ln -sf /ci /workspace
bash-cset -xeuo pipefail
ln -sf /ci /workspace
+ ln -sf /ci /workspace
- action: shell shell: ln -sf /ci /workspace
- action: create_file filename: /root/.ssh/config content: "Host *\nStrictHostKeyChecking accept-new\nIdentityFile /ci/secrets/ssh_key\n " overwrite: true
- action: create_file filename: /root/.ssh/config content: "Host *\nStrictHostKeyChecking accept-new\nIdentityFile /ci/secrets/ssh_key\n " overwrite: true
- action: cargo_fetch
cargo--versioncargo 1.97.0 (c980f4866 2026-06-30)
cargoclippy--versionclippy 0.1.97 (2d8144b788 2026-07-07)
rustc--versionrustc 1.97.0 (2d8144b78 2026-07-07)
cargofetch--lockedUpdating crates.io index Downloading crates ... Downloaded anstyle-wincon v3.0.11 Downloaded once_cell_polyfill v1.70.2 Downloaded utf8parse v0.2.2 Downloaded is_terminal_polyfill v1.70.2 Downloaded colorchoice v1.0.5 Downloaded anstyle-query v1.1.5 Downloaded radium v0.7.0 Downloaded funty v2.0.0 Downloaded wyz v0.5.1 Downloaded bytecheck v0.6.12 Downloaded bytecheck_derive v0.6.12 Downloaded ref-cast v1.0.25 Downloaded rkyv_derive v0.7.46 Downloaded rend v0.4.2 Downloaded ptr_meta_derive v0.1.4 Downloaded tap v1.0.1 Downloaded ref-cast-impl v1.0.25 Downloaded ptr_meta v0.1.4 Downloaded same-file v1.0.6 Downloaded fnv v1.0.7 Downloaded idna_adapter v1.2.1 Downloaded zerofrom v0.1.6 Downloaded form_urlencoded v1.2.2 Downloaded pin-utils v0.1.0 Downloaded atomic-waker v1.1.2 Downloaded futures-channel v0.3.32 Downloaded httparse v1.10.1 Downloaded libredox v0.1.15 Downloaded option-ext v0.2.0 Downloaded rand_chacha v0.3.1 Downloaded windows-link v0.2.1 Downloaded cfg-if v1.0.4 Downloaded cpufeatures v0.2.17 Downloaded http-body-util v0.1.3 Downloaded unit-prefix v0.5.2 Downloaded html-page v0.5.0 Downloaded html-escape v0.2.13 Downloaded utf8-width v0.1.8 Downloaded simd-adler32 v0.3.9 Downloaded adler2 v2.0.1 Downloaded directories v6.0.0 Downloaded dirs-sys v0.5.0 Downloaded redox_users v0.5.2 Downloaded serde_spanned v1.1.0 Downloaded directories-next v2.0.0 Downloaded redox_users v0.4.6 Downloaded strsim v0.11.1 Downloaded clap_lex v1.1.0 Downloaded anstyle v1.0.14 Downloaded dyn-clone v1.0.20 Downloaded rand_core v0.6.4 Downloaded percent-encoding v2.3.2 Downloaded yoke-derive v0.8.1 Downloaded stable_deref_trait v1.2.1 Downloaded semver v1.0.27 Downloaded equivalent v1.0.2 Downloaded foldhash v0.1.5 Downloaded unicode-xid v0.2.6 Downloaded zmij v1.0.21 Downloaded id-arena v2.3.0 Downloaded leb128fmt v0.1.0 Downloaded heck v0.5.0 Downloaded fastrand v2.3.0 Downloaded strip-ansi-escapes v0.2.1 Downloaded pin-project-lite v0.2.17 Downloaded sha2 v0.10.9 Downloaded crypto-common v0.1.7 Downloaded generic-array v0.14.7 Downloaded version_check v0.9.5 Downloaded block-buffer v0.10.4 Downloaded async-trait v0.1.89 Downloaded cfg_aliases v0.2.1 Downloaded base64 v0.22.1 Downloaded hyper-rustls v0.27.7 Downloaded indicatif v0.18.4 Downloaded console v0.16.3 Downloaded encode_unicode v1.0.0 Downloaded miniz_oxide v0.8.9 Downloaded crc32fast v1.5.0 Downloaded clingwrap v0.5.0 Downloaded toml v0.9.12+spec-1.1.0 Downloaded toml_writer v1.1.0+spec-1.1.0 Downloaded toml_parser v1.1.0+spec-1.1.0 Downloaded toml_datetime v0.7.5+spec-1.1.0 Downloaded dirs-sys-next v0.1.2 Downloaded clap v4.6.0 Downloaded clap_derive v4.6.0 Downloaded anstream v1.0.0 Downloaded utf8_iter v1.0.4 Downloaded zerofrom-derive v0.1.6 Downloaded potential_utf v0.1.4 Downloaded num-conv v0.2.1 Downloaded errno v0.3.14 Downloaded wasip3 v0.4.0+wasi-0.3.0-rc-2026-01-06 Downloaded wit-bindgen-rust v0.51.0 Downloaded log v0.4.29 Downloaded anyhow v1.0.103 Downloaded wasm-metadata v0.244.0 Downloaded wit-bindgen-core v0.51.0 Downloaded sha256 v1.6.0 Downloaded wasi v0.11.1+wasi-snapshot-preview1 Downloaded digest v0.10.7 Downloaded hex v0.4.3 Downloaded tokio-util v0.7.18 Downloaded flate2 v1.1.9 Downloaded time-core v0.1.8 Downloaded powerfmt v0.2.0 Downloaded itoa v1.0.18 Downloaded wit-bindgen-rust-macro v0.51.0 Downloaded indexmap v2.13.0 Downloaded memchr v2.8.0 Downloaded wasm-encoder v0.244.0 Downloaded prettyplease v0.2.37 Downloaded r-efi v6.0.0 Downloaded vte v0.14.1 Downloaded socket2 v0.6.3 Downloaded bytes v1.11.1 Downloaded typenum v1.19.0 Downloaded serde_norway v0.9.42 Downloaded unsafe-libyaml-norway v0.2.15 Downloaded ryu v1.0.23 Downloaded cc v1.2.58 Downloaded tracing-core v0.1.36 Downloaded h2 v0.4.13 Downloaded portable-atomic v1.13.1 Downloaded winnow v0.7.15 Downloaded clap_builder v4.6.0 Downloaded bytesize v2.3.1 Downloaded seahash v4.1.0 Downloaded autocfg v1.5.0 Downloaded proc-macro-crate v3.5.0 Downloaded toml_datetime v1.1.0+spec-1.1.0 Downloaded walkdir v2.5.0 Downloaded displaydoc v0.2.5 Downloaded wit-parser v0.244.0 Downloaded hashbrown v0.16.1 Downloaded hashbrown v0.15.5 Downloaded serde_json v1.0.149 Downloaded wasip2 v1.0.2+wasi-0.2.9 Downloaded mio v1.2.0 Downloaded rfc822-like v0.2.3 Downloaded fmt2io v1.0.0 Downloaded tinyvec_macros v0.1.1 Downloaded rand_core v0.9.5 Downloaded unicode-width v0.2.2 Downloaded winnow v1.0.0 Downloaded simdutf8 v0.1.5 Downloaded winapi-util v0.1.11 Downloaded quote v1.0.45 Downloaded time-macros v0.2.27 Downloaded wit-component v0.244.0 Downloaded wasmparser v0.244.0 Downloaded rand v0.9.2 Downloaded getrandom v0.3.4 Downloaded r-efi v5.3.0 Downloaded anstyle-parse v1.0.0 Downloaded zerovec-derive v0.11.2 Downloaded wasm-bindgen-shared v0.2.115 Downloaded wasm-bindgen-macro v0.2.115 Downloaded rustversion v1.0.22 Downloaded futures-sink v0.3.32 Downloaded rustls v0.23.37 Downloaded windows-targets v0.52.6 Downloaded find-msvc-tools v0.1.9 Downloaded synstructure v0.13.2 Downloaded yoke v0.8.1 Downloaded writeable v0.6.2 Downloaded tinystr v0.8.2 Downloaded thiserror-impl v2.0.18 Downloaded wasm-bindgen v0.2.115 Downloaded wasm-bindgen-macro-support v0.2.115 Downloaded bumpalo v3.20.2 Downloaded js-sys v0.3.92 Downloaded slab v0.4.12 Downloaded futures-task v0.3.32 Downloaded futures-io v0.3.32 Downloaded futures-core v0.3.32 Downloaded wasm-bindgen-futures v0.4.65 Downloaded tower-service v0.3.3 Downloaded tower-layer v0.3.3 Downloaded sync_wrapper v1.0.2 Downloaded http-body v1.0.1 Downloaded subtle v2.6.1 Downloaded shlex v1.3.0 Downloaded ipnet v2.12.0 Downloaded arrayvec v0.7.6 Downloaded thiserror-impl v1.0.69 Downloaded tokio-rustls v0.26.4 Downloaded untrusted v0.9.0 Downloaded ahash v0.7.8 Downloaded borsh-derive v1.6.1 Downloaded tower v0.5.3 Downloaded http v1.4.0 Downloaded getrandom v0.2.17 Downloaded serde_urlencoded v0.7.1 Downloaded rustc-hash v2.1.1 Downloaded byte-unit v5.2.0 Downloaded smallvec v1.15.1 Downloaded rustls-webpki v0.103.13 Downloaded rkyv v0.7.46 Downloaded deranged v0.5.8 Downloaded once_cell v1.21.4 Downloaded web-time v1.1.0 Downloaded windows_x86_64_msvc v0.53.1 Downloaded litemap v0.8.1 Downloaded thiserror v2.0.18 Downloaded bitflags v2.11.0 Downloaded tokio v1.50.0 Downloaded windows-targets v0.53.5 Downloaded thiserror v1.0.69 Downloaded rand_chacha v0.9.0 Downloaded num-traits v0.2.19 Downloaded unicode-ident v1.0.24 Downloaded serde_core v1.0.228 Downloaded rustls-pki-types v1.14.0 Downloaded zeroize v1.8.2 Downloaded ppv-lite86 v0.2.21 Downloaded lru-slab v0.1.2 Downloaded want v0.3.1 Downloaded try-lock v0.2.5 Downloaded serde_derive v1.0.228 Downloaded tempfile v3.27.0 Downloaded getrandom v0.4.2 Downloaded tinyvec v1.11.0 Downloaded uuid v1.23.0 Downloaded rand v0.8.5 Downloaded toml_edit v0.25.8+spec-1.1.0 Downloaded proc-macro2 v1.0.106 Downloaded icu_properties v2.1.2 Downloaded icu_provider v2.1.1 Downloaded icu_normalizer v2.1.1 Downloaded zerotrie v0.2.3 Downloaded icu_locale_core v2.1.1 Downloaded icu_normalizer_data v2.1.1 Downloaded wit-bindgen v0.51.0 Downloaded quinn-udp v0.5.14 Downloaded zerocopy-derive v0.8.47 Downloaded schemars v1.2.1 Downloaded borsh v1.6.1 Downloaded serde v1.0.228 Downloaded icu_collections v2.1.1 Downloaded hashbrown v0.12.3 Downloaded url v2.5.8 Downloaded quinn v0.11.9 Downloaded hyper-util v0.1.20 Downloaded unicode-segmentation v1.13.2 Downloaded idna v1.1.0 Downloaded zerovec v0.11.5 Downloaded hyper v1.8.1 Downloaded rust_decimal v1.41.0 Downloaded icu_properties_data v2.1.2 Downloaded tower-http v0.6.8 Downloaded iri-string v0.7.11 Downloaded reqwest v0.12.28 Downloaded futures-util v0.3.32 Downloaded windows_x86_64_gnullvm v0.52.6 Downloaded windows_aarch64_gnullvm v0.52.6 Downloaded bitvec v1.0.1 Downloaded time v0.3.47 Downloaded winapi v0.3.9 Downloaded webpki-roots v1.0.6 Downloaded quinn-proto v0.11.14 Downloaded zerocopy v0.8.47 Downloaded syn v1.0.109 Downloaded windows_i686_gnullvm v0.52.6 Downloaded syn v2.0.117 Downloaded web-sys v0.3.92 Downloaded rustix v1.1.4 Downloaded tracing v0.1.44 Downloaded windows_x86_64_msvc v0.52.6 Downloaded windows_i686_gnu v0.52.6 Downloaded windows_x86_64_gnu v0.52.6 Downloaded windows_aarch64_msvc v0.52.6 Downloaded windows_i686_msvc v0.52.6 Downloaded windows_x86_64_gnullvm v0.53.1 Downloaded windows_aarch64_gnullvm v0.53.1 Downloaded libc v0.2.183 Downloaded windows_aarch64_msvc v0.53.1 Downloaded windows_i686_gnullvm v0.53.1 Downloaded windows_x86_64_gnu v0.53.1 Downloaded windows_i686_msvc v0.53.1 Downloaded windows_i686_gnu v0.53.1 Downloaded ring v0.17.14 Downloaded winapi-i686-pc-windows-gnu v0.4.0 Downloaded winapi-x86_64-pc-windows-gnu v0.4.0 Downloaded windows-sys v0.61.2 Downloaded windows-sys v0.60.2 Downloaded windows-sys v0.52.0 Downloaded linux-raw-sys v0.12.1
- action: cargo_fetch
- action: tar_create archive: /dev/vde directory: /ci/cache
- action: tar_create archive: /dev/vde directory: /ci/cache
- action: tar_create archive: /dev/vdd directory: /ci/artifacts
- action: tar_create archive: /dev/vdd directory: /ci/artifacts
- action: tar_create archive: /dev/vdf directory: /ci/deps
- action: tar_create archive: /dev/vdf directory: /ci/deps
BdsDxe: failed to load Boot0001 "UEFI QEMU DVD-ROM QM00005 " from PciRoot(0x0)/Pci(0x1F,0x2)/Sata(0x2,0xFFFF,0x0): Not Found
BdsDxe: loading Boot0002 "UEFI Misc Device" from PciRoot(0x0)/Pci(0x3,0x0)
BdsDxe: starting Boot0002 "UEFI Misc Device" from PciRoot(0x0)/Pci(0x3,0x0)
Booting `Debian GNU/Linux'
Loading Linux 6.12.86+deb13-amd64 ...
Loading initial ramdisk ...
EFI stub: Loaded initrd from LINUX_EFI_INITRD_MEDIA_GUID device path
Loading, please wait...
Starting systemd-udevd version 257.13-1~deb13u1
Begin: Loading essential drivers ... done.
Begin: Running /scripts/init-premount ... done.
Begin: Mounting root file system ... Begin: Running /scripts/local-top ... done.
Begin: Running /scripts/local-premount ... done.
Begin: Will now check root file system ... fsck from util-linux 2.41
fsck: error 2 (No such file or directory) while executing fsck.ext4 for /dev/vda2
fsck exited with status code 8
done.
Warning: File system check failed but did not detect errors
done.
Begin: Running /scripts/local-bottom ... done.
Begin: Running /scripts/init-bottom ... done.
Welcome to Debian GNU/Linux 13 (trixie)!
[ OK ] Created slice system-getty.slice - Slice /system/getty.
[ OK ] Created slice system-modprobe.slice - Slice /system/modprobe.
[ OK ] Created slice system-serial\x2dget…slice - Slice /system/serial-getty.
[ OK ] Created slice user.slice - User and Session Slice.
[ OK ] Started systemd-ask-password-conso…equests to Console Directory Watch.
[ OK ] Started systemd-ask-password-wall.…d Requests to Wall Directory Watch.
[ OK ] Set up automount proc-sys-fs-binfm…ormats File System Automount Point.
Expecting device dev-ttyS0.device - /dev/ttyS0...
[ OK ] Reached target paths.target - Path Units.
[ OK ] Reached target remote-fs.target - Remote File Systems.
[ OK ] Reached target slices.target - Slice Units.
[ OK ] Reached target swap.target - Swaps.
[ OK ] Listening on systemd-creds.socket - Credential Encryption/Decryption.
[ OK ] Listening on systemd-initctl.socke…- initctl Compatibility Named Pipe.
[ OK ] Listening on systemd-journald-dev-…socket - Journal Socket (/dev/log).
[ OK ] Listening on systemd-journald.socket - Journal Sockets.
[ OK ] Listening on systemd-networkd.socket - Network Service Netlink Socket.
[ OK ] Listening on systemd-udevd-control.socket - udev Control Socket.
[ OK ] Listening on systemd-udevd-kernel.socket - udev Kernel Socket.
Mounting dev-hugepages.mount - Huge Pages File System...
Mounting dev-mqueue.mount - POSIX Message Queue File System...
Mounting run-lock.mount - Legacy Locks Directory /run/lock...
Mounting sys-kernel-debug.mount - Kernel Debug File System...
Mounting sys-kernel-tracing.mount - Kernel Trace File System...
Mounting tmp.mount - Temporary Directory /tmp...
Starting kmod-static-nodes.service…eate List of Static Device Nodes...
Starting modprobe@configfs.service - Load Kernel Module configfs...
Starting modprobe@drm.service - Load Kernel Module drm...
Starting modprobe@efi_pstore.servi… - Load Kernel Module efi_pstore...
Starting modprobe@fuse.service - Load Kernel Module fuse...
Starting systemd-journald.service - Journal Service...
Starting systemd-modules-load.service - Load Kernel Modules...
Starting systemd-network-generator…k Units from Kernel Command Line...
Starting systemd-remount-fs.servic…unt Root and Kernel File Systems...
Starting systemd-udev-load-credent…Load udev Rules from Credentials...
Starting systemd-udev-trigger.service - Coldplug All udev Devices...
[ OK ] Mounted dev-hugepages.mount - Huge Pages File System.
[ OK ] Mounted dev-mqueue.mount - POSIX Message Queue File System.
[ OK ] Mounted run-lock.mount - Legacy Locks Directory /run/lock.
[ OK ] Mounted sys-kernel-debug.mount - Kernel Debug File System.
[ OK ] Mounted sys-kernel-tracing.mount - Kernel Trace File System.
[ OK ] Mounted tmp.mount - Temporary Directory /tmp.
[ OK ] Finished kmod-static-nodes.service…Create List of Static Device Nodes.
[ OK ] Finished modprobe@configfs.service - Load Kernel Module configfs.
[ OK ] Finished modprobe@drm.service - Load Kernel Module drm.
[ OK ] Finished modprobe@efi_pstore.service - Load Kernel Module efi_pstore.
[ OK ] Finished modprobe@fuse.service - Load Kernel Module fuse.
[ OK ] Started systemd-journald.service - Journal Service.
[ OK ] Finished systemd-modules-load.service - Load Kernel Modules.
[ OK ] Finished systemd-network-generator…ork Units from Kernel Command Line.
[ OK ] Finished systemd-remount-fs.servic…mount Root and Kernel File Systems.
[ OK ] Finished systemd-udev-load-credent…- Load udev Rules from Credentials.
[ OK ] Reached target network-pre.target - Preparation for Network.
Mounting sys-fs-fuse-connections.mount - FUSE Control File System...
Mounting sys-kernel-config.mount - Kernel Configuration File System...
Starting systemd-journal-flush.ser…sh Journal to Persistent Storage...
Starting systemd-random-seed.service - Load/Save OS Random Seed...
Starting systemd-sysctl.service - Apply Kernel Variables...
Starting systemd-tmpfiles-setup-de… Device Nodes in /dev gracefully...
[ OK ] Mounted sys-fs-fuse-connections.mount - FUSE Control File System.
[ OK ] Mounted sys-kernel-config.mount - Kernel Configuration File System.
[ OK ] Finished systemd-udev-trigger.service - Coldplug All udev Devices.
[ OK ] Finished systemd-sysctl.service - Apply Kernel Variables.
[ OK ] Finished systemd-tmpfiles-setup-de…ic Device Nodes in /dev gracefully.
Starting systemd-sysusers.service - Create System Users...
[ OK ] Finished systemd-random-seed.service - Load/Save OS Random Seed.
[ OK ] Finished systemd-sysusers.service - Create System Users.
Starting systemd-resolved.service - Network Name Resolution...
Starting systemd-tmpfiles-setup-de…eate Static Device Nodes in /dev...
[ OK ] Finished systemd-journal-flush.ser…lush Journal to Persistent Storage.
[ OK ] Finished systemd-tmpfiles-setup-de…Create Static Device Nodes in /dev.
[ OK ] Reached target local-fs-pre.target…Preparation for Local File Systems.
[ OK ] Set up automount efi.automount - EFI System Partition Automount.
[ OK ] Reached target local-fs.target - Local File Systems.
[ OK ] Listening on systemd-sysext.socket… System Extension Image Management.
Starting systemd-binfmt.service - Set Up Additional Binary Formats...
Starting systemd-tmpfiles-setup.se…ate System Files and Directories...
Starting systemd-udevd.service - R…ager for Device Events and Files...
[ OK ] Started systemd-resolved.service - Network Name Resolution.
[ OK ] Finished systemd-tmpfiles-setup.se…reate System Files and Directories.
[ OK ] Reached target nss-lookup.target - Host and Network Name Lookups.
Starting ldconfig.service - Rebuild Dynamic Linker Cache...
Starting systemd-journal-catalog-u…ervice - Rebuild Journal Catalog...
[ OK ] Started systemd-udevd.service - Ru…anager for Device Events and Files.
Starting systemd-networkd.service - Network Configuration...
[ OK ] Finished systemd-journal-catalog-u….service - Rebuild Journal Catalog.
[ OK ] Found device dev-ttyS0.device - /dev/ttyS0.
[ OK ] Finished ldconfig.service - Rebuild Dynamic Linker Cache.
Starting systemd-update-done.service - Update is Completed...
[ OK ] Finished systemd-update-done.service - Update is Completed.
Mounting proc-sys-fs-binfmt_misc.m…cutable File Formats File System...
[ OK ] Mounted proc-sys-fs-binfmt_misc.mo…xecutable File Formats File System.
[ OK ] Finished systemd-binfmt.service - Set Up Additional Binary Formats.
[ OK ] Reached target sysinit.target - System Initialization.
[ OK ] Started apt-daily.timer - Daily apt download activities.
[ OK ] Started apt-daily-upgrade.timer - …y apt upgrade and clean activities.
[ OK ] Started dpkg-db-backup.timer - Daily dpkg database backup timer.
[ OK ] Started fstrim.timer - Discard unused filesystem blocks once a week.
[ OK ] Started man-db.timer - Daily man-db regeneration.
[ OK ] Started systemd-tmpfiles-clean.tim…y Cleanup of Temporary Directories.
[ OK ] Reached target timers.target - Timer Units.
[ OK ] Listening on dbus.socket - D-Bus System Message Bus Socket.
[ OK ] Listening on sshd-unix-local.socke…temd-ssh-generator, AF_UNIX Local).
[ OK ] Listening on systemd-hostnamed.socket - Hostname Service Socket.
[ OK ] Reached target sockets.target - Socket Units.
[ OK ] Reached target basic.target - Basic System.
Starting ambient.service - Run build job for Ambient CI...
Starting dbus.service - D-Bus System Message Bus...
Starting grub-common.service - Record successful boot for GRUB...
Starting systemd-logind.service - User Login Management...
[ OK ] Started dbus.service - D-Bus System Message Bus.
[ OK ] Listening on systemd-rfkill.socket…ll Switch Status /dev/rfkill Watch.
[ OK ] Finished grub-common.service - Record successful boot for GRUB.
[ OK ] Started systemd-logind.service - User Login Management.
[ OK ] Started systemd-networkd.service - Network Configuration.
[ OK ] Reached target network.target - Network.
Starting ssh.service - OpenBSD Secure Shell server...
Starting systemd-networkd-persiste…tent Storage in systemd-networkd...
Starting systemd-user-sessions.service - Permit User Sessions...
[ OK ] Finished systemd-networkd-persiste…istent Storage in systemd-networkd.
[ OK ] Finished systemd-user-sessions.service - Permit User Sessions.
[ OK ] Started getty@tty1.service - Getty on tty1.
[ OK ] Started serial-getty@ttyS0.service - Serial Getty on ttyS0.
[ OK ] Reached target getty.target - Login Prompts.
[ OK ] Started ssh.service - OpenBSD Secure Shell server.
[ OK ] Stopped ambient.service - Run build job for Ambient CI.
[ OK ] Removed slice system-modprobe.slice - Slice /system/modprobe.
[ OK ] Stopped target getty.target - Login Prompts.
[ OK ] Stopped target nss-lookup.target - Host and Network Name Lookups.
[ OK ] Stopped target timers.target - Timer Units.
[ OK ] Stopped apt-daily-upgrade.timer - …y apt upgrade and clean activities.
[ OK ] Stopped apt-daily.timer - Daily apt download activities.
[ OK ] Stopped dpkg-db-backup.timer - Daily dpkg database backup timer.
[ OK ] Stopped fstrim.timer - Discard unused filesystem blocks once a week.
[ OK ] Stopped man-db.timer - Daily man-db regeneration.
[ OK ] Stopped systemd-tmpfiles-clean.tim…y Cleanup of Temporary Directories.
[ OK ] Closed systemd-rfkill.socket - Loa…ll Switch Status /dev/rfkill Watch.
Stopping dbus.service - D-Bus System Message Bus...
Stopping getty@tty1.service - Getty on tty1...
Stopping serial-getty@ttyS0.service - Serial Getty on ttyS0...
Stopping ssh.service - OpenBSD Secure Shell server...
Stopping systemd-logind.service - User Login Management...
Stopping systemd-networkd-persiste…tent Storage in systemd-networkd...
Stopping systemd-random-seed.service - Load/Save OS Random Seed...
[ OK ] Stopped systemd-udev-load-credenti…- Load udev Rules from Credentials.
[ OK ] Stopped dbus.service - D-Bus System Message Bus.
[ OK ] Stopped getty@tty1.service - Getty on tty1.
[ OK ] Stopped serial-getty@ttyS0.service - Serial Getty on ttyS0.
[ OK ] Stopped ssh.service - OpenBSD Secure Shell server.
[ OK ] Stopped systemd-networkd-persisten…istent Storage in systemd-networkd.
[ OK ] Stopped systemd-random-seed.service - Load/Save OS Random Seed.
[ OK ] Stopped systemd-logind.service - User Login Management.
[ OK ] Removed slice system-getty.slice - Slice /system/getty.
[ OK ] Removed slice system-serial\x2dget…slice - Slice /system/serial-getty.
Stopping systemd-user-sessions.service - Permit User Sessions...
[ OK ] Stopped systemd-user-sessions.service - Permit User Sessions.
[ OK ] Stopped target basic.target - Basic System.
[ OK ] Stopped target network.target - Network.
[ OK ] Stopped target paths.target - Path Units.
[ OK ] Stopped systemd-ask-password-conso…equests to Console Directory Watch.
[ OK ] Stopped systemd-ask-password-wall.…d Requests to Wall Directory Watch.
[ OK ] Stopped target remote-fs.target - Remote File Systems.
[ OK ] Stopped target slices.target - Slice Units.
[ OK ] Removed slice user.slice - User and Session Slice.
[ OK ] Stopped target sockets.target - Socket Units.
[ OK ] Closed dbus.socket - D-Bus System Message Bus Socket.
[ OK ] Closed sshd-unix-local.socket - Op…temd-ssh-generator, AF_UNIX Local).
[ OK ] Closed systemd-hostnamed.socket - Hostname Service Socket.
[ OK ] Stopped target sysinit.target - System Initialization.
Stopping systemd-binfmt.service - Set Up Additional Binary Formats...
Stopping systemd-networkd.service - Network Configuration...
Stopping systemd-resolved.service - Network Name Resolution...
[ OK ] Stopped systemd-update-done.service - Update is Completed.
[ OK ] Stopped ldconfig.service - Rebuild Dynamic Linker Cache.
[ OK ] Stopped systemd-journal-catalog-up….service - Rebuild Journal Catalog.
[ OK ] Stopped systemd-tmpfiles-setup.ser…reate System Files and Directories.
[ OK ] Stopped systemd-binfmt.service - Set Up Additional Binary Formats.
[ OK ] Unset automount proc-sys-fs-binfmt…ormats File System Automount Point.
[ OK ] Stopped target local-fs.target - Local File Systems.
[ OK ] Unset automount efi.automount - EFI System Partition Automount.
[ OK ] Stopped target local-fs-pre.target…Preparation for Local File Systems.
Unmounting run-lock.mount - Legacy Locks Directory /run/lock...
Unmounting tmp.mount - Temporary Directory /tmp...
[ OK ] Stopped systemd-tmpfiles-setup-dev…Create Static Device Nodes in /dev.
[ OK ] Stopped systemd-resolved.service - Network Name Resolution.
[ OK ] Stopped systemd-networkd.service - Network Configuration.
[ OK ] Unmounted run-lock.mount - Legacy Locks Directory /run/lock.
[ OK ] Unmounted tmp.mount - Temporary Directory /tmp.
[ OK ] Stopped target network-pre.target - Preparation for Network.
[ OK ] Stopped target swap.target - Swaps.
[ OK ] Reached target umount.target - Unmount All Filesystems.
[ OK ] Closed systemd-networkd.socket - Network Service Netlink Socket.
[ OK ] Stopped systemd-network-generator.…ork Units from Kernel Command Line.
[ OK ] Stopped systemd-sysctl.service - Apply Kernel Variables.
[ OK ] Stopped systemd-modules-load.service - Load Kernel Modules.
[ OK ] Stopped systemd-sysusers.service - Create System Users.
[ OK ] Stopped systemd-remount-fs.service…mount Root and Kernel File Systems.
[ OK ] Stopped systemd-tmpfiles-setup-dev…ic Device Nodes in /dev gracefully.
[ OK ] Reached target shutdown.target - System Shutdown.
[ OK ] Reached target final.target - Late Shutdown Services.
[ OK ] Finished systemd-poweroff.service - System Power Off.
[ OK ] Reached target poweroff.target - System Power Off.
[ 15.509605] reboot: Power down
BdsDxe: failed to load Boot0001 "UEFI QEMU DVD-ROM QM00005 " from PciRoot(0x0)/Pci(0x1F,0x2)/Sata(0x2,0xFFFF,0x0): Not Found
BdsDxe: loading Boot0002 "UEFI Misc Device" from PciRoot(0x0)/Pci(0x3,0x0)
BdsDxe: starting Boot0002 "UEFI Misc Device" from PciRoot(0x0)/Pci(0x3,0x0)
EFI stub: Loaded initrd from LINUX_EFI_INITRD_MEDIA_GUID device path
INFO: Block devices
NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINTS
sr0 11:0 1 372K 0 rom
vda 254:0 0 100G 0 disk
├─vda1 254:1 0 953M 0 part
└─vda2 254:2 0 99.1G 0 part /
vdb 254:16 0 5.3M 1 disk
vdc 254:32 0 6.6M 1 disk
vdd 254:48 0 953.7M 0 disk
vde 254:64 0 27.9G 0 disk
vdf 254:80 0 100G 0 disk
vdg 254:96 0 10K 1 disk
INFO: Extracting tar archive from /dev/vdb
drwxr-xr-x _rad/_rad 0 2026-07-13 05:11 ./
-rw-r--r-- _rad/_rad 1294 2026-07-13 05:11 ./plan.yaml
-rwxr-xr-x _rad/_rad 5525824 2026-07-13 05:11 ./run-ci
INFO: Extracted files:
6 0 drwxr-xr-x 2 1000 1000 80 Jul 13 05:11 .
10 5400 -rwxr-xr-x 1 1000 1000 5525824 Jul 13 05:11 ./run-ci
9 4 -rw-r--r-- 1 1000 1000 1294 Jul 13 05:11 ./plan.yaml
INFO: Running run-ci from /dev/vdb
================================ BEGIN ================================
{"type":"executor_starts","name":"ambient-execute-plan","version":"0.16.0@da3268d","timestamp":{"secs_since_epoch":1783919471,"nanos_since_epoch":839900250},"log_source":"Plan"}
{"type":"runnable_plan","steps":[{"action":"mkdir","pathname":"/ci"},{"action":"mkdir","pathname":"/ci/artifacts"},{"action":"mkdir","pathname":"/ci/artifacts/debian"},{"action":"mkdir","pathname":"/ci/artifacts/rsync"},{"action":"mkdir","pathname":"/ci/secrets"},{"action":"mkdir","pathname":"/ci/deps"},{"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":"tar_extract","archive":"/dev/vdd","directory":"/ci/artifacts"},{"action":"tar_extract","archive":"/dev/vdg","directory":"/ci/secrets"},{"action":"shell","shell":"ln -sf /ci /workspace"},{"action":"create_file","filename":"/root/.ssh/config","content":"Host *\nStrictHostKeyChecking accept-new\nIdentityFile /ci/secrets/ssh_key\n ","overwrite":true},{"action":"cargo_fetch"},{"action":"tar_create","archive":"/dev/vde","directory":"/ci/cache"},{"action":"tar_create","archive":"/dev/vdd","directory":"/ci/artifacts"},{"action":"tar_create","archive":"/dev/vdf","directory":"/ci/deps"}],"executor_drive":"/dev/vdb","source_drive":"/dev/vdc","artifact_drive":"/dev/vdd","cache_drive":"/dev/vde","deps_drive":"/dev/vdf","secrets_drive":null,"workspace_dir":"/ci","source_dir":"/ci/src","deps_dir":"/ci/deps","cache_dir":"/ci/cache","artifacts_dir":"/ci/artifacts","secrets_dir":null,"envs":{},"timestamp":{"secs_since_epoch":1783919471,"nanos_since_epoch":840552627},"log_source":"Plan"}
{"type":"execute_action","action":"mkdir","pathname":"/ci","timestamp":{"secs_since_epoch":1783919471,"nanos_since_epoch":840774231},"log_source":"Plan"}
{"type":"action_succeeded","action":"mkdir","pathname":"/ci","timestamp":{"secs_since_epoch":1783919471,"nanos_since_epoch":841019890},"log_source":"Plan"}
{"type":"execute_action","action":"mkdir","pathname":"/ci/artifacts","timestamp":{"secs_since_epoch":1783919471,"nanos_since_epoch":841180155},"log_source":"Plan"}
{"type":"action_succeeded","action":"mkdir","pathname":"/ci/artifacts","timestamp":{"secs_since_epoch":1783919471,"nanos_since_epoch":841207697},"log_source":"Plan"}
{"type":"execute_action","action":"mkdir","pathname":"/ci/artifacts/debian","timestamp":{"secs_since_epoch":1783919471,"nanos_since_epoch":841390127},"log_source":"Plan"}
{"type":"action_succeeded","action":"mkdir","pathname":"/ci/artifacts/debian","timestamp":{"secs_since_epoch":1783919471,"nanos_since_epoch":841416416},"log_source":"Plan"}
{"type":"execute_action","action":"mkdir","pathname":"/ci/artifacts/rsync","timestamp":{"secs_since_epoch":1783919471,"nanos_since_epoch":841599839},"log_source":"Plan"}
{"type":"action_succeeded","action":"mkdir","pathname":"/ci/artifacts/rsync","timestamp":{"secs_since_epoch":1783919471,"nanos_since_epoch":841623684},"log_source":"Plan"}
{"type":"execute_action","action":"mkdir","pathname":"/ci/secrets","timestamp":{"secs_since_epoch":1783919471,"nanos_since_epoch":841809617},"log_source":"Plan"}
{"type":"action_succeeded","action":"mkdir","pathname":"/ci/secrets","timestamp":{"secs_since_epoch":1783919471,"nanos_since_epoch":841834957},"log_source":"Plan"}
{"type":"execute_action","action":"mkdir","pathname":"/ci/deps","timestamp":{"secs_since_epoch":1783919471,"nanos_since_epoch":842019914},"log_source":"Plan"}
{"type":"action_succeeded","action":"mkdir","pathname":"/ci/deps","timestamp":{"secs_since_epoch":1783919471,"nanos_since_epoch":842043499},"log_source":"Plan"}
{"type":"execute_action","action":"tar_extract","archive":"/dev/vdc","directory":"/ci/src","timestamp":{"secs_since_epoch":1783919471,"nanos_since_epoch":842230355},"log_source":"Plan"}
{"type":"action_succeeded","action":"tar_extract","archive":"/dev/vdc","directory":"/ci/src","timestamp":{"secs_since_epoch":1783919471,"nanos_since_epoch":908796798},"log_source":"Plan"}
{"type":"execute_action","action":"tar_extract","archive":"/dev/vdf","directory":"/ci/deps","timestamp":{"secs_since_epoch":1783919471,"nanos_since_epoch":911446669},"log_source":"Plan"}
{"type":"action_succeeded","action":"tar_extract","archive":"/dev/vdf","directory":"/ci/deps","timestamp":{"secs_since_epoch":1783919471,"nanos_since_epoch":927675748},"log_source":"Plan"}
{"type":"execute_action","action":"tar_extract","archive":"/dev/vde","directory":"/ci/cache","timestamp":{"secs_since_epoch":1783919471,"nanos_since_epoch":935324471},"log_source":"Plan"}
{"type":"action_succeeded","action":"tar_extract","archive":"/dev/vde","directory":"/ci/cache","timestamp":{"secs_since_epoch":1783919471,"nanos_since_epoch":943587218},"log_source":"Plan"}
{"type":"execute_action","action":"tar_extract","archive":"/dev/vdd","directory":"/ci/artifacts","timestamp":{"secs_since_epoch":1783919471,"nanos_since_epoch":946289116},"log_source":"Plan"}
{"type":"action_succeeded","action":"tar_extract","archive":"/dev/vdd","directory":"/ci/artifacts","timestamp":{"secs_since_epoch":1783919471,"nanos_since_epoch":951707610},"log_source":"Plan"}
{"type":"execute_action","action":"tar_extract","archive":"/dev/vdg","directory":"/ci/secrets","timestamp":{"secs_since_epoch":1783919471,"nanos_since_epoch":952153567},"log_source":"Plan"}
{"type":"action_succeeded","action":"tar_extract","archive":"/dev/vdg","directory":"/ci/secrets","timestamp":{"secs_since_epoch":1783919471,"nanos_since_epoch":962225213},"log_source":"Plan"}
{"type":"execute_action","action":"shell","shell":"ln -sf /ci /workspace","timestamp":{"secs_since_epoch":1783919471,"nanos_since_epoch":962661802},"log_source":"Plan"}
{"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":1783919471,"nanos_since_epoch":962673395},"log_source":"Plan"}
{"type":"program_succeeded","exit_code":0,"stdout":"","stderr":"+ ln -sf /ci /workspace\n","timestamp":{"secs_since_epoch":1783919471,"nanos_since_epoch":965280262},"log_source":"Plan"}
{"type":"action_succeeded","action":"shell","shell":"ln -sf /ci /workspace","timestamp":{"secs_since_epoch":1783919471,"nanos_since_epoch":965338326},"log_source":"Plan"}
{"type":"execute_action","action":"create_file","filename":"/root/.ssh/config","content":"Host *\nStrictHostKeyChecking accept-new\nIdentityFile /ci/secrets/ssh_key\n ","overwrite":true,"timestamp":{"secs_since_epoch":1783919471,"nanos_since_epoch":965342435},"log_source":"Plan"}
{"type":"action_succeeded","action":"create_file","filename":"/root/.ssh/config","content":"Host *\nStrictHostKeyChecking accept-new\nIdentityFile /ci/secrets/ssh_key\n ","overwrite":true,"timestamp":{"secs_since_epoch":1783919471,"nanos_since_epoch":965789863},"log_source":"Plan"}
{"type":"execute_action","action":"cargo_fetch","timestamp":{"secs_since_epoch":1783919471,"nanos_since_epoch":965816110},"log_source":"Plan"}
{"type":"start_program","argv":[{"Unix":[99,97,114,103,111]},{"Unix":[45,45,118,101,114,115,105,111,110]}],"timestamp":{"secs_since_epoch":1783919471,"nanos_since_epoch":965823122},"log_source":"Plan"}
{"type":"program_succeeded","exit_code":0,"stdout":"cargo 1.97.0 (c980f4866 2026-06-30)\n","stderr":"","timestamp":{"secs_since_epoch":1783919471,"nanos_since_epoch":993415724},"log_source":"Plan"}
{"type":"start_program","argv":[{"Unix":[99,97,114,103,111]},{"Unix":[99,108,105,112,112,121]},{"Unix":[45,45,118,101,114,115,105,111,110]}],"timestamp":{"secs_since_epoch":1783919471,"nanos_since_epoch":993505207},"log_source":"Plan"}
{"type":"program_succeeded","exit_code":0,"stdout":"clippy 0.1.97 (2d8144b788 2026-07-07)\n","stderr":"","timestamp":{"secs_since_epoch":1783919472,"nanos_since_epoch":72212702},"log_source":"Plan"}
{"type":"start_program","argv":[{"Unix":[114,117,115,116,99]},{"Unix":[45,45,118,101,114,115,105,111,110]}],"timestamp":{"secs_since_epoch":1783919472,"nanos_since_epoch":72717724},"log_source":"Plan"}
{"type":"program_succeeded","exit_code":0,"stdout":"rustc 1.97.0 (2d8144b78 2026-07-07)\n","stderr":"","timestamp":{"secs_since_epoch":1783919472,"nanos_since_epoch":87789920},"log_source":"Plan"}
copying relevant files to /tmp/.tmpXCGUuA
{"type":"start_program","argv":[{"Unix":[99,97,114,103,111]},{"Unix":[102,101,116,99,104]},{"Unix":[45,45,108,111,99,107,101,100]}],"timestamp":{"secs_since_epoch":1783919472,"nanos_since_epoch":90207022},"log_source":"Plan"}
{"type":"program_succeeded","exit_code":0,"stdout":"","stderr":" Updating crates.io index\n Downloading crates ...\n Downloaded anstyle-wincon v3.0.11\n Downloaded once_cell_polyfill v1.70.2\n Downloaded utf8parse v0.2.2\n Downloaded is_terminal_polyfill v1.70.2\n Downloaded colorchoice v1.0.5\n Downloaded anstyle-query v1.1.5\n Downloaded radium v0.7.0\n Downloaded funty v2.0.0\n Downloaded wyz v0.5.1\n Downloaded bytecheck v0.6.12\n Downloaded bytecheck_derive v0.6.12\n Downloaded ref-cast v1.0.25\n Downloaded rkyv_derive v0.7.46\n Downloaded rend v0.4.2\n Downloaded ptr_meta_derive v0.1.4\n Downloaded tap v1.0.1\n Downloaded ref-cast-impl v1.0.25\n Downloaded ptr_meta v0.1.4\n Downloaded same-file v1.0.6\n Downloaded fnv v1.0.7\n Downloaded idna_adapter v1.2.1\n Downloaded zerofrom v0.1.6\n Downloaded form_urlencoded v1.2.2\n Downloaded pin-utils v0.1.0\n Downloaded atomic-waker v1.1.2\n Downloaded futures-channel v0.3.32\n Downloaded httparse v1.10.1\n Downloaded libredox v0.1.15\n Downloaded option-ext v0.2.0\n Downloaded rand_chacha v0.3.1\n Downloaded windows-link v0.2.1\n Downloaded cfg-if v1.0.4\n Downloaded cpufeatures v0.2.17\n Downloaded http-body-util v0.1.3\n Downloaded unit-prefix v0.5.2\n Downloaded html-page v0.5.0\n Downloaded html-escape v0.2.13\n Downloaded utf8-width v0.1.8\n Downloaded simd-adler32 v0.3.9\n Downloaded adler2 v2.0.1\n Downloaded directories v6.0.0\n Downloaded dirs-sys v0.5.0\n Downloaded redox_users v0.5.2\n Downloaded serde_spanned v1.1.0\n Downloaded directories-next v2.0.0\n Downloaded redox_users v0.4.6\n Downloaded strsim v0.11.1\n Downloaded clap_lex v1.1.0\n Downloaded anstyle v1.0.14\n Downloaded dyn-clone v1.0.20\n Downloaded rand_core v0.6.4\n Downloaded percent-encoding v2.3.2\n Downloaded yoke-derive v0.8.1\n Downloaded stable_deref_trait v1.2.1\n Downloaded semver v1.0.27\n Downloaded equivalent v1.0.2\n Downloaded foldhash v0.1.5\n Downloaded unicode-xid v0.2.6\n Downloaded zmij v1.0.21\n Downloaded id-arena v2.3.0\n Downloaded leb128fmt v0.1.0\n Downloaded heck v0.5.0\n Downloaded fastrand v2.3.0\n Downloaded strip-ansi-escapes v0.2.1\n Downloaded pin-project-lite v0.2.17\n Downloaded sha2 v0.10.9\n Downloaded crypto-common v0.1.7\n Downloaded generic-array v0.14.7\n Downloaded version_check v0.9.5\n Downloaded block-buffer v0.10.4\n Downloaded async-trait v0.1.89\n Downloaded cfg_aliases v0.2.1\n Downloaded base64 v0.22.1\n Downloaded hyper-rustls v0.27.7\n Downloaded indicatif v0.18.4\n Downloaded console v0.16.3\n Downloaded encode_unicode v1.0.0\n Downloaded miniz_oxide v0.8.9\n Downloaded crc32fast v1.5.0\n Downloaded clingwrap v0.5.0\n Downloaded toml v0.9.12+spec-1.1.0\n Downloaded toml_writer v1.1.0+spec-1.1.0\n Downloaded toml_parser v1.1.0+spec-1.1.0\n Downloaded toml_datetime v0.7.5+spec-1.1.0\n Downloaded dirs-sys-next v0.1.2\n Downloaded clap v4.6.0\n Downloaded clap_derive v4.6.0\n Downloaded anstream v1.0.0\n Downloaded utf8_iter v1.0.4\n Downloaded zerofrom-derive v0.1.6\n Downloaded potential_utf v0.1.4\n Downloaded num-conv v0.2.1\n Downloaded errno v0.3.14\n Downloaded wasip3 v0.4.0+wasi-0.3.0-rc-2026-01-06\n Downloaded wit-bindgen-rust v0.51.0\n Downloaded log v0.4.29\n Downloaded anyhow v1.0.103\n Downloaded wasm-metadata v0.244.0\n Downloaded wit-bindgen-core v0.51.0\n Downloaded sha256 v1.6.0\n Downloaded wasi v0.11.1+wasi-snapshot-preview1\n Downloaded digest v0.10.7\n Downloaded hex v0.4.3\n Downloaded tokio-util v0.7.18\n Downloaded flate2 v1.1.9\n Downloaded time-core v0.1.8\n Downloaded powerfmt v0.2.0\n Downloaded itoa v1.0.18\n Downloaded wit-bindgen-rust-macro v0.51.0\n Downloaded indexmap v2.13.0\n Downloaded memchr v2.8.0\n Downloaded wasm-encoder v0.244.0\n Downloaded prettyplease v0.2.37\n Downloaded r-efi v6.0.0\n Downloaded vte v0.14.1\n Downloaded socket2 v0.6.3\n Downloaded bytes v1.11.1\n Downloaded typenum v1.19.0\n Downloaded serde_norway v0.9.42\n Downloaded unsafe-libyaml-norway v0.2.15\n Downloaded ryu v1.0.23\n Downloaded cc v1.2.58\n Downloaded tracing-core v0.1.36\n Downloaded h2 v0.4.13\n Downloaded portable-atomic v1.13.1\n Downloaded winnow v0.7.15\n Downloaded clap_builder v4.6.0\n Downloaded bytesize v2.3.1\n Downloaded seahash v4.1.0\n Downloaded autocfg v1.5.0\n Downloaded proc-macro-crate v3.5.0\n Downloaded toml_datetime v1.1.0+spec-1.1.0\n Downloaded walkdir v2.5.0\n Downloaded displaydoc v0.2.5\n Downloaded wit-parser v0.244.0\n Downloaded hashbrown v0.16.1\n Downloaded hashbrown v0.15.5\n Downloaded serde_json v1.0.149\n Downloaded wasip2 v1.0.2+wasi-0.2.9\n Downloaded mio v1.2.0\n Downloaded rfc822-like v0.2.3\n Downloaded fmt2io v1.0.0\n Downloaded tinyvec_macros v0.1.1\n Downloaded rand_core v0.9.5\n Downloaded unicode-width v0.2.2\n Downloaded winnow v1.0.0\n Downloaded simdutf8 v0.1.5\n Downloaded winapi-util v0.1.11\n Downloaded quote v1.0.45\n Downloaded time-macros v0.2.27\n Downloaded wit-component v0.244.0\n Downloaded wasmparser v0.244.0\n Downloaded rand v0.9.2\n Downloaded getrandom v0.3.4\n Downloaded r-efi v5.3.0\n Downloaded anstyle-parse v1.0.0\n Downloaded zerovec-derive v0.11.2\n Downloaded wasm-bindgen-shared v0.2.115\n Downloaded wasm-bindgen-macro v0.2.115\n Downloaded rustversion v1.0.22\n Downloaded futures-sink v0.3.32\n Downloaded rustls v0.23.37\n Downloaded windows-targets v0.52.6\n Downloaded find-msvc-tools v0.1.9\n Downloaded synstructure v0.13.2\n Downloaded yoke v0.8.1\n Downloaded writeable v0.6.2\n Downloaded tinystr v0.8.2\n Downloaded thiserror-impl v2.0.18\n Downloaded wasm-bindgen v0.2.115\n Downloaded wasm-bindgen-macro-support v0.2.115\n Downloaded bumpalo v3.20.2\n Downloaded js-sys v0.3.92\n Downloaded slab v0.4.12\n Downloaded futures-task v0.3.32\n Downloaded futures-io v0.3.32\n Downloaded futures-core v0.3.32\n Downloaded wasm-bindgen-futures v0.4.65\n Downloaded tower-service v0.3.3\n Downloaded tower-layer v0.3.3\n Downloaded sync_wrapper v1.0.2\n Downloaded http-body v1.0.1\n Downloaded subtle v2.6.1\n Downloaded shlex v1.3.0\n Downloaded ipnet v2.12.0\n Downloaded arrayvec v0.7.6\n Downloaded thiserror-impl v1.0.69\n Downloaded tokio-rustls v0.26.4\n Downloaded untrusted v0.9.0\n Downloaded ahash v0.7.8\n Downloaded borsh-derive v1.6.1\n Downloaded tower v0.5.3\n Downloaded http v1.4.0\n Downloaded getrandom v0.2.17\n Downloaded serde_urlencoded v0.7.1\n Downloaded rustc-hash v2.1.1\n Downloaded byte-unit v5.2.0\n Downloaded smallvec v1.15.1\n Downloaded rustls-webpki v0.103.13\n Downloaded rkyv v0.7.46\n Downloaded deranged v0.5.8\n Downloaded once_cell v1.21.4\n Downloaded web-time v1.1.0\n Downloaded windows_x86_64_msvc v0.53.1\n Downloaded litemap v0.8.1\n Downloaded thiserror v2.0.18\n Downloaded bitflags v2.11.0\n Downloaded tokio v1.50.0\n Downloaded windows-targets v0.53.5\n Downloaded thiserror v1.0.69\n Downloaded rand_chacha v0.9.0\n Downloaded num-traits v0.2.19\n Downloaded unicode-ident v1.0.24\n Downloaded serde_core v1.0.228\n Downloaded rustls-pki-types v1.14.0\n Downloaded zeroize v1.8.2\n Downloaded ppv-lite86 v0.2.21\n Downloaded lru-slab v0.1.2\n Downloaded want v0.3.1\n Downloaded try-lock v0.2.5\n Downloaded serde_derive v1.0.228\n Downloaded tempfile v3.27.0\n Downloaded getrandom v0.4.2\n Downloaded tinyvec v1.11.0\n Downloaded uuid v1.23.0\n Downloaded rand v0.8.5\n Downloaded toml_edit v0.25.8+spec-1.1.0\n Downloaded proc-macro2 v1.0.106\n Downloaded icu_properties v2.1.2\n Downloaded icu_provider v2.1.1\n Downloaded icu_normalizer v2.1.1\n Downloaded zerotrie v0.2.3\n Downloaded icu_locale_core v2.1.1\n Downloaded icu_normalizer_data v2.1.1\n Downloaded wit-bindgen v0.51.0\n Downloaded quinn-udp v0.5.14\n Downloaded zerocopy-derive v0.8.47\n Downloaded schemars v1.2.1\n Downloaded borsh v1.6.1\n Downloaded serde v1.0.228\n Downloaded icu_collections v2.1.1\n Downloaded hashbrown v0.12.3\n Downloaded url v2.5.8\n Downloaded quinn v0.11.9\n Downloaded hyper-util v0.1.20\n Downloaded unicode-segmentation v1.13.2\n Downloaded idna v1.1.0\n Downloaded zerovec v0.11.5\n Downloaded hyper v1.8.1\n Downloaded rust_decimal v1.41.0\n Downloaded icu_properties_data v2.1.2\n Downloaded tower-http v0.6.8\n Downloaded iri-string v0.7.11\n Downloaded reqwest v0.12.28\n Downloaded futures-util v0.3.32\n Downloaded windows_x86_64_gnullvm v0.52.6\n Downloaded windows_aarch64_gnullvm v0.52.6\n Downloaded bitvec v1.0.1\n Downloaded time v0.3.47\n Downloaded winapi v0.3.9\n Downloaded webpki-roots v1.0.6\n Downloaded quinn-proto v0.11.14\n Downloaded zerocopy v0.8.47\n Downloaded syn v1.0.109\n Downloaded windows_i686_gnullvm v0.52.6\n Downloaded syn v2.0.117\n Downloaded web-sys v0.3.92\n Downloaded rustix v1.1.4\n Downloaded tracing v0.1.44\n Downloaded windows_x86_64_msvc v0.52.6\n Downloaded windows_i686_gnu v0.52.6\n Downloaded windows_x86_64_gnu v0.52.6\n Downloaded windows_aarch64_msvc v0.52.6\n Downloaded windows_i686_msvc v0.52.6\n Downloaded windows_x86_64_gnullvm v0.53.1\n Downloaded windows_aarch64_gnullvm v0.53.1\n Downloaded libc v0.2.183\n Downloaded windows_aarch64_msvc v0.53.1\n Downloaded windows_i686_gnullvm v0.53.1\n Downloaded windows_x86_64_gnu v0.53.1\n Downloaded windows_i686_msvc v0.53.1\n Downloaded windows_i686_gnu v0.53.1\n Downloaded ring v0.17.14\n Downloaded winapi-i686-pc-windows-gnu v0.4.0\n Downloaded winapi-x86_64-pc-windows-gnu v0.4.0\n Downloaded windows-sys v0.61.2\n Downloaded windows-sys v0.60.2\n Downloaded windows-sys v0.52.0\n Downloaded linux-raw-sys v0.12.1\n","timestamp":{"secs_since_epoch":1783919476,"nanos_since_epoch":325498420},"log_source":"Plan"}
{"type":"action_succeeded","action":"cargo_fetch","timestamp":{"secs_since_epoch":1783919476,"nanos_since_epoch":429782612},"log_source":"Plan"}
{"type":"execute_action","action":"tar_create","archive":"/dev/vde","directory":"/ci/cache","timestamp":{"secs_since_epoch":1783919476,"nanos_since_epoch":429914439},"log_source":"Plan"}
{"type":"action_succeeded","action":"tar_create","archive":"/dev/vde","directory":"/ci/cache","timestamp":{"secs_since_epoch":1783919476,"nanos_since_epoch":435426522},"log_source":"Plan"}
{"type":"execute_action","action":"tar_create","archive":"/dev/vdd","directory":"/ci/artifacts","timestamp":{"secs_since_epoch":1783919476,"nanos_since_epoch":435548116},"log_source":"Plan"}
{"type":"action_succeeded","action":"tar_create","archive":"/dev/vdd","directory":"/ci/artifacts","timestamp":{"secs_since_epoch":1783919476,"nanos_since_epoch":436958456},"log_source":"Plan"}
{"type":"execute_action","action":"tar_create","archive":"/dev/vdf","directory":"/ci/deps","timestamp":{"secs_since_epoch":1783919476,"nanos_since_epoch":436976684},"log_source":"Plan"}
{"type":"action_succeeded","action":"tar_create","archive":"/dev/vdf","directory":"/ci/deps","timestamp":{"secs_since_epoch":1783919478,"nanos_since_epoch":643131878},"log_source":"Plan"}
{"type":"plan_succeeded","timestamp":{"secs_since_epoch":1783919478,"nanos_since_epoch":646084590},"log_source":"Plan"}
{"type":"executor_ends_successfully","timestamp":{"secs_since_epoch":1783919478,"nanos_since_epoch":648306028},"log_source":"Plan"}
EXIT CODE: 0
ambient-execute-plan0.16.0@da3268dsteps:
- action: mkdir
pathname: /ci
- action: mkdir
pathname: /ci/artifacts
- action: mkdir
pathname: /ci/artifacts/debian
- action: mkdir
pathname: /ci/artifacts/rsync
- action: mkdir
pathname: /ci/secrets
- action: mkdir
pathname: /ci/deps
- 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: tar_extract
archive: /dev/vdd
directory: /ci/artifacts
- action: tar_extract
archive: /dev/vdg
directory: /ci/secrets
- action: shell
shell: ln -sf /ci /workspace
- action: create_file
filename: /root/.ssh/config
content: "Host *\nStrictHostKeyChecking accept-new\nIdentityFile /ci/secrets/ssh_key\n "
overwrite: true
- action: cargo_fmt
- action: cargo_clippy
- action: cargo_build
- action: cargo_test
- action: shell
shell: |
make doc
cp ./*.html doc/*.html /ci/artifacts
git reset --hard
git clean -fdx
- action: custom
name: dch
args:
debemail: liw@liw.fi
debfullname: Lars Wirzenius
- action: deb
packages: .
- 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
secrets_drive: null
workspace_dir: /ci
source_dir: /ci/src
deps_dir: /ci/deps
cache_dir: /ci/cache
artifacts_dir: /ci/artifacts
secrets_dir: null
envs: {}
- action: mkdir pathname: /ci
- action: mkdir pathname: /ci
- action: mkdir pathname: /ci/artifacts
- action: mkdir pathname: /ci/artifacts
- action: mkdir pathname: /ci/artifacts/debian
- action: mkdir pathname: /ci/artifacts/debian
- action: mkdir pathname: /ci/artifacts/rsync
- action: mkdir pathname: /ci/artifacts/rsync
- action: mkdir pathname: /ci/secrets
- action: mkdir pathname: /ci/secrets
- action: mkdir pathname: /ci/deps
- action: mkdir pathname: /ci/deps
- action: tar_extract archive: /dev/vdc directory: /ci/src
- action: tar_extract archive: /dev/vdc directory: /ci/src
- action: tar_extract archive: /dev/vdf directory: /ci/deps
- action: tar_extract archive: /dev/vdf directory: /ci/deps
- action: tar_extract archive: /dev/vde directory: /ci/cache
- action: tar_extract archive: /dev/vde directory: /ci/cache
- action: tar_extract archive: /dev/vdd directory: /ci/artifacts
- action: tar_extract archive: /dev/vdd directory: /ci/artifacts
- action: tar_extract archive: /dev/vdg directory: /ci/secrets
- action: tar_extract archive: /dev/vdg directory: /ci/secrets
- action: shell shell: ln -sf /ci /workspace
bash-cset -xeuo pipefail
ln -sf /ci /workspace
+ ln -sf /ci /workspace
- action: shell shell: ln -sf /ci /workspace
- action: create_file filename: /root/.ssh/config content: "Host *\nStrictHostKeyChecking accept-new\nIdentityFile /ci/secrets/ssh_key\n " overwrite: true
- action: create_file filename: /root/.ssh/config content: "Host *\nStrictHostKeyChecking accept-new\nIdentityFile /ci/secrets/ssh_key\n " overwrite: true
- action: cargo_fmt
cargo--versioncargo 1.97.0 (c980f4866 2026-06-30)
cargoclippy--versionclippy 0.1.97 (2d8144b788 2026-07-07)
rustc--versionrustc 1.97.0 (2d8144b78 2026-07-07)
cargofmt--checkDiff in /ci/src/src/action_impl/gomod.rs:57:
// the dependencies directory.
context.set_env("GOMODCACHE", &gomod_dir_str);
- super::spawn_in(context, &["go", "mod", "download"], tmp.path().to_path_buf())?;
+ super::spawn_in(
+ context,
+ &["go", "mod", "download"],
+ tmp.path().to_path_buf(),
+ )?;
// Set environment variables so the VM plan finds the cached
// modules without needing network access.
Diff in /ci/src/src/action_impl/pip.rs:51:
}
fn requirements_file(&self) -> &str {
- self.requirements
- .as_deref()
- .unwrap_or(DEFAULT_REQUIREMENTS)
+ self.requirements.as_deref().unwrap_or(DEFAULT_REQUIREMENTS)
}
fn allow_sdist(&self) -> bool {
- action: cargo_fmt
BdsDxe: failed to load Boot0001 "UEFI QEMU DVD-ROM QM00005 " from PciRoot(0x0)/Pci(0x1F,0x2)/Sata(0x2,0xFFFF,0x0): Not Found
BdsDxe: loading Boot0002 "UEFI Misc Device" from PciRoot(0x0)/Pci(0x2,0x0)
BdsDxe: starting Boot0002 "UEFI Misc Device" from PciRoot(0x0)/Pci(0x2,0x0)
Booting `Debian GNU/Linux'
Loading Linux 6.12.86+deb13-amd64 ...
Loading initial ramdisk ...
EFI stub: Loaded initrd from LINUX_EFI_INITRD_MEDIA_GUID device path
Loading, please wait...
Starting systemd-udevd version 257.13-1~deb13u1
Begin: Loading essential drivers ... done.
Begin: Running /scripts/init-premount ... done.
Begin: Mounting root file system ... Begin: Running /scripts/local-top ... done.
Begin: Running /scripts/local-premount ... done.
Begin: Will now check root file system ... fsck from util-linux 2.41
fsck: error 2 (No such file or directory) while executing fsck.ext4 for /dev/vda2
fsck exited with status code 8
done.
Warning: File system check failed but did not detect errors
done.
Begin: Running /scripts/local-bottom ... done.
Begin: Running /scripts/init-bottom ... done.
Welcome to Debian GNU/Linux 13 (trixie)!
[ OK ] Created slice system-getty.slice - Slice /system/getty.
[ OK ] Created slice system-modprobe.slice - Slice /system/modprobe.
[ OK ] Created slice system-serial\x2dget…slice - Slice /system/serial-getty.
[ OK ] Created slice user.slice - User and Session Slice.
[ OK ] Started systemd-ask-password-conso…equests to Console Directory Watch.
[ OK ] Started systemd-ask-password-wall.…d Requests to Wall Directory Watch.
[ OK ] Set up automount proc-sys-fs-binfm…ormats File System Automount Point.
Expecting device dev-ttyS0.device - /dev/ttyS0...
[ OK ] Reached target paths.target - Path Units.
[ OK ] Reached target remote-fs.target - Remote File Systems.
[ OK ] Reached target slices.target - Slice Units.
[ OK ] Reached target swap.target - Swaps.
[ OK ] Listening on systemd-creds.socket - Credential Encryption/Decryption.
[ OK ] Listening on systemd-initctl.socke…- initctl Compatibility Named Pipe.
[ OK ] Listening on systemd-journald-dev-…socket - Journal Socket (/dev/log).
[ OK ] Listening on systemd-journald.socket - Journal Sockets.
[ OK ] Listening on systemd-networkd.socket - Network Service Netlink Socket.
[ OK ] Listening on systemd-udevd-control.socket - udev Control Socket.
[ OK ] Listening on systemd-udevd-kernel.socket - udev Kernel Socket.
Mounting dev-hugepages.mount - Huge Pages File System...
Mounting dev-mqueue.mount - POSIX Message Queue File System...
Mounting run-lock.mount - Legacy Locks Directory /run/lock...
Mounting sys-kernel-debug.mount - Kernel Debug File System...
Mounting sys-kernel-tracing.mount - Kernel Trace File System...
Mounting tmp.mount - Temporary Directory /tmp...
Starting kmod-static-nodes.service…eate List of Static Device Nodes...
Starting modprobe@configfs.service - Load Kernel Module configfs...
Starting modprobe@drm.service - Load Kernel Module drm...
Starting modprobe@efi_pstore.servi… - Load Kernel Module efi_pstore...
Starting modprobe@fuse.service - Load Kernel Module fuse...
Starting systemd-journald.service - Journal Service...
Starting systemd-modules-load.service - Load Kernel Modules...
Starting systemd-network-generator…k Units from Kernel Command Line...
Starting systemd-remount-fs.servic…unt Root and Kernel File Systems...
Starting systemd-udev-load-credent…Load udev Rules from Credentials...
Starting systemd-udev-trigger.service - Coldplug All udev Devices...
[ OK ] Started systemd-journald.service - Journal Service.
[ OK ] Mounted dev-hugepages.mount - Huge Pages File System.
[ OK ] Mounted dev-mqueue.mount - POSIX Message Queue File System.
[ OK ] Mounted run-lock.mount - Legacy Locks Directory /run/lock.
[ OK ] Mounted sys-kernel-debug.mount - Kernel Debug File System.
[ OK ] Mounted sys-kernel-tracing.mount - Kernel Trace File System.
[ OK ] Mounted tmp.mount - Temporary Directory /tmp.
[ OK ] Finished kmod-static-nodes.service…Create List of Static Device Nodes.
[ OK ] Finished modprobe@configfs.service - Load Kernel Module configfs.
[ OK ] Finished modprobe@drm.service - Load Kernel Module drm.
[ OK ] Finished modprobe@efi_pstore.service - Load Kernel Module efi_pstore.
[ OK ] Finished modprobe@fuse.service - Load Kernel Module fuse.
[ OK ] Finished systemd-modules-load.service - Load Kernel Modules.
[ OK ] Finished systemd-network-generator…ork Units from Kernel Command Line.
[ OK ] Finished systemd-remount-fs.servic…mount Root and Kernel File Systems.
[ OK ] Finished systemd-udev-load-credent…- Load udev Rules from Credentials.
[ OK ] Reached target network-pre.target - Preparation for Network.
Mounting sys-fs-fuse-connections.mount - FUSE Control File System...
Mounting sys-kernel-config.mount - Kernel Configuration File System...
Starting systemd-journal-flush.ser…sh Journal to Persistent Storage...
Starting systemd-random-seed.service - Load/Save OS Random Seed...
Starting systemd-sysctl.service - Apply Kernel Variables...
Starting systemd-tmpfiles-setup-de… Device Nodes in /dev gracefully...
[ OK ] Mounted sys-fs-fuse-connections.mount - FUSE Control File System.
[ OK ] Mounted sys-kernel-config.mount - Kernel Configuration File System.
[ OK ] Finished systemd-udev-trigger.service - Coldplug All udev Devices.
[ OK ] Finished systemd-sysctl.service - Apply Kernel Variables.
[ OK ] Finished systemd-tmpfiles-setup-de…ic Device Nodes in /dev gracefully.
Starting systemd-sysusers.service - Create System Users...
[ OK ] Finished systemd-random-seed.service - Load/Save OS Random Seed.
[ OK ] Finished systemd-journal-flush.ser…lush Journal to Persistent Storage.
[ OK ] Finished systemd-sysusers.service - Create System Users.
Starting systemd-resolved.service - Network Name Resolution...
Starting systemd-tmpfiles-setup-de…eate Static Device Nodes in /dev...
[ OK ] Finished systemd-tmpfiles-setup-de…Create Static Device Nodes in /dev.
[ OK ] Reached target local-fs-pre.target…Preparation for Local File Systems.
[ OK ] Set up automount efi.automount - EFI System Partition Automount.
[ OK ] Reached target local-fs.target - Local File Systems.
[ OK ] Listening on systemd-sysext.socket… System Extension Image Management.
Starting systemd-binfmt.service - Set Up Additional Binary Formats...
Starting systemd-tmpfiles-setup.se…ate System Files and Directories...
Starting systemd-udevd.service - R…ager for Device Events and Files...
[ OK ] Started systemd-resolved.service - Network Name Resolution.
[ OK ] Reached target nss-lookup.target - Host and Network Name Lookups.
[ OK ] Finished systemd-tmpfiles-setup.se…reate System Files and Directories.
Starting ldconfig.service - Rebuild Dynamic Linker Cache...
Starting systemd-journal-catalog-u…ervice - Rebuild Journal Catalog...
[ OK ] Started systemd-udevd.service - Ru…anager for Device Events and Files.
Starting systemd-networkd.service - Network Configuration...
[ OK ] Finished systemd-journal-catalog-u….service - Rebuild Journal Catalog.
[ OK ] Found device dev-ttyS0.device - /dev/ttyS0.
[ OK ] Finished ldconfig.service - Rebuild Dynamic Linker Cache.
Starting systemd-update-done.service - Update is Completed...
[ OK ] Finished systemd-update-done.service - Update is Completed.
Mounting proc-sys-fs-binfmt_misc.m…cutable File Formats File System...
[ OK ] Mounted proc-sys-fs-binfmt_misc.mo…xecutable File Formats File System.
[ OK ] Finished systemd-binfmt.service - Set Up Additional Binary Formats.
[ OK ] Reached target sysinit.target - System Initialization.
[ OK ] Started apt-daily.timer - Daily apt download activities.
[ OK ] Started apt-daily-upgrade.timer - …y apt upgrade and clean activities.
[ OK ] Started dpkg-db-backup.timer - Daily dpkg database backup timer.
[ OK ] Started fstrim.timer - Discard unused filesystem blocks once a week.
[ OK ] Started man-db.timer - Daily man-db regeneration.
[ OK ] Started systemd-tmpfiles-clean.tim…y Cleanup of Temporary Directories.
[ OK ] Reached target timers.target - Timer Units.
[ OK ] Listening on dbus.socket - D-Bus System Message Bus Socket.
[ OK ] Listening on sshd-unix-local.socke…temd-ssh-generator, AF_UNIX Local).
[ OK ] Listening on systemd-hostnamed.socket - Hostname Service Socket.
[ OK ] Reached target sockets.target - Socket Units.
[ OK ] Reached target basic.target - Basic System.
Starting ambient.service - Run build job for Ambient CI...
Starting dbus.service - D-Bus System Message Bus...
Starting grub-common.service - Record successful boot for GRUB...
Starting systemd-logind.service - User Login Management...
[ OK ] Listening on systemd-rfkill.socket…ll Switch Status /dev/rfkill Watch.
[ OK ] Started dbus.service - D-Bus System Message Bus.
[ OK ] Finished grub-common.service - Record successful boot for GRUB.
[ OK ] Started systemd-logind.service - User Login Management.
[ OK ] Started systemd-networkd.service - Network Configuration.
[ OK ] Reached target network.target - Network.
Starting ssh.service - OpenBSD Secure Shell server...
Starting systemd-networkd-persiste…tent Storage in systemd-networkd...
Starting systemd-user-sessions.service - Permit User Sessions...
[ OK ] Finished systemd-user-sessions.service - Permit User Sessions.
[ OK ] Started getty@tty1.service - Getty on tty1.
[ OK ] Started serial-getty@ttyS0.service - Serial Getty on ttyS0.
[ OK ] Reached target getty.target - Login Prompts.
[ OK ] Finished systemd-networkd-persiste…istent Storage in systemd-networkd.
[ OK ] Started ssh.service - OpenBSD Secure Shell server.
[ OK ] Removed slice system-modprobe.slice - Slice /system/modprobe.
[ OK ] Stopped target getty.target - Login Prompts.
[ OK ] Stopped target nss-lookup.target - Host and Network Name Lookups.
[ OK ] Stopped target timers.target - Timer Units.
[ OK ] Stopped apt-daily-upgrade.timer - …y apt upgrade and clean activities.
[ OK ] Stopped apt-daily.timer - Daily apt download activities.
[ OK ] Stopped dpkg-db-backup.timer - Daily dpkg database backup timer.
[ OK ] Stopped fstrim.timer - Discard unused filesystem blocks once a week.
[ OK ] Stopped man-db.timer - Daily man-db regeneration.
[ OK ] Stopped systemd-tmpfiles-clean.tim…y Cleanup of Temporary Directories.
[ OK ] Closed systemd-rfkill.socket - Loa…ll Switch Status /dev/rfkill Watch.
Stopping dbus.service - D-Bus System Message Bus...
Stopping getty@tty1.service - Getty on tty1...
Stopping serial-getty@ttyS0.service - Serial Getty on ttyS0...
Stopping ssh.service - OpenBSD Secure Shell server...
Stopping systemd-logind.service - User Login Management...
Stopping systemd-networkd-persiste…tent Storage in systemd-networkd...
Stopping systemd-random-seed.service - Load/Save OS Random Seed...
[ OK ] Stopped systemd-udev-load-credenti…- Load udev Rules from Credentials.
[ OK ] Stopped dbus.service - D-Bus System Message Bus.
[ OK ] Stopped getty@tty1.service - Getty on tty1.
[ OK ] Stopped serial-getty@ttyS0.service - Serial Getty on ttyS0.
[ OK ] Stopped ssh.service - OpenBSD Secure Shell server.
[ OK ] Stopped ambient.service - Run build job for Ambient CI.
[ OK ] Stopped systemd-networkd-persisten…istent Storage in systemd-networkd.
[ OK ] Stopped systemd-logind.service - User Login Management.
[ OK ] Stopped systemd-random-seed.service - Load/Save OS Random Seed.
[ OK ] Removed slice system-getty.slice - Slice /system/getty.
[ OK ] Removed slice system-serial\x2dget…slice - Slice /system/serial-getty.
Stopping systemd-user-sessions.service - Permit User Sessions...
[ OK ] Stopped systemd-user-sessions.service - Permit User Sessions.
[ OK ] Stopped target basic.target - Basic System.
[ OK ] Stopped target network.target - Network.
[ OK ] Stopped target paths.target - Path Units.
[ OK ] Stopped systemd-ask-password-conso…equests to Console Directory Watch.
[ OK ] Stopped systemd-ask-password-wall.…d Requests to Wall Directory Watch.
[ OK ] Stopped target remote-fs.target - Remote File Systems.
[ OK ] Stopped target slices.target - Slice Units.
[ OK ] Removed slice user.slice - User and Session Slice.
[ OK ] Stopped target sockets.target - Socket Units.
[ OK ] Closed dbus.socket - D-Bus System Message Bus Socket.
[ OK ] Closed sshd-unix-local.socket - Op…temd-ssh-generator, AF_UNIX Local).
[ OK ] Closed systemd-hostnamed.socket - Hostname Service Socket.
[ OK ] Stopped target sysinit.target - System Initialization.
Stopping systemd-binfmt.service - Set Up Additional Binary Formats...
Stopping systemd-networkd.service - Network Configuration...
Stopping systemd-resolved.service - Network Name Resolution...
[ OK ] Stopped systemd-update-done.service - Update is Completed.
[ OK ] Stopped ldconfig.service - Rebuild Dynamic Linker Cache.
[ OK ] Stopped systemd-journal-catalog-up….service - Rebuild Journal Catalog.
[ OK ] Stopped systemd-tmpfiles-setup.ser…reate System Files and Directories.
[ OK ] Stopped systemd-resolved.service - Network Name Resolution.
[ OK ] Stopped systemd-networkd.service - Network Configuration.
[ OK ] Stopped systemd-binfmt.service - Set Up Additional Binary Formats.
[ OK ] Unset automount proc-sys-fs-binfmt…ormats File System Automount Point.
[ OK ] Stopped target local-fs.target - Local File Systems.
[ OK ] Unset automount efi.automount - EFI System Partition Automount.
[ OK ] Stopped target local-fs-pre.target…Preparation for Local File Systems.
[ OK ] Stopped target network-pre.target - Preparation for Network.
[ OK ] Closed systemd-networkd.socket - Network Service Netlink Socket.
Unmounting run-lock.mount - Legacy Locks Directory /run/lock...
Unmounting tmp.mount - Temporary Directory /tmp...
[ OK ] Stopped systemd-network-generator.…ork Units from Kernel Command Line.
[ OK ] Stopped systemd-sysctl.service - Apply Kernel Variables.
[ OK ] Stopped systemd-modules-load.service - Load Kernel Modules.
[ OK ] Stopped systemd-tmpfiles-setup-dev…Create Static Device Nodes in /dev.
[ OK ] Stopped systemd-sysusers.service - Create System Users.
[ OK ] Stopped systemd-remount-fs.service…mount Root and Kernel File Systems.
[ OK ] Stopped systemd-tmpfiles-setup-dev…ic Device Nodes in /dev gracefully.
[ OK ] Unmounted run-lock.mount - Legacy Locks Directory /run/lock.
[ OK ] Unmounted tmp.mount - Temporary Directory /tmp.
[ OK ] Stopped target swap.target - Swaps.
[ OK ] Reached target shutdown.target - System Shutdown.
[ OK ] Reached target umount.target - Unmount All Filesystems.
[ OK ] Reached target final.target - Late Shutdown Services.
[ OK ] Finished systemd-poweroff.service - System Power Off.
[ OK ] Reached target poweroff.target - System Power Off.
[ 10.623800] reboot: Power down
BdsDxe: failed to load Boot0001 "UEFI QEMU DVD-ROM QM00005 " from PciRoot(0x0)/Pci(0x1F,0x2)/Sata(0x2,0xFFFF,0x0): Not Found
BdsDxe: loading Boot0002 "UEFI Misc Device" from PciRoot(0x0)/Pci(0x2,0x0)
BdsDxe: starting Boot0002 "UEFI Misc Device" from PciRoot(0x0)/Pci(0x2,0x0)
EFI stub: Loaded initrd from LINUX_EFI_INITRD_MEDIA_GUID device path
INFO: Block devices
NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINTS
sr0 11:0 1 372K 0 rom
vda 254:0 0 100G 0 disk
├─vda1 254:1 0 953M 0 part
└─vda2 254:2 0 99.1G 0 part /
vdb 254:16 0 5.3M 1 disk
vdc 254:32 0 6.6M 1 disk
vdd 254:48 0 953.7M 0 disk
vde 254:64 0 27.9G 0 disk
vdf 254:80 0 100G 1 disk
vdg 254:96 0 10K 1 disk
INFO: Extracting tar archive from /dev/vdb
drwxr-xr-x _rad/_rad 0 2026-07-13 05:11 ./
-rw-r--r-- _rad/_rad 1538 2026-07-13 05:11 ./plan.yaml
-rwxr-xr-x _rad/_rad 5525824 2026-07-13 05:11 ./run-ci
INFO: Extracted files:
8 0 drwxr-xr-x 2 1000 1000 80 Jul 13 05:11 .
10 5400 -rwxr-xr-x 1 1000 1000 5525824 Jul 13 05:11 ./run-ci
9 4 -rw-r--r-- 1 1000 1000 1538 Jul 13 05:11 ./plan.yaml
INFO: Running run-ci from /dev/vdb
================================ BEGIN ================================
{"type":"executor_starts","name":"ambient-execute-plan","version":"0.16.0@da3268d","timestamp":{"secs_since_epoch":1783919488,"nanos_since_epoch":823270906},"log_source":"Plan"}
{"type":"runnable_plan","steps":[{"action":"mkdir","pathname":"/ci"},{"action":"mkdir","pathname":"/ci/artifacts"},{"action":"mkdir","pathname":"/ci/artifacts/debian"},{"action":"mkdir","pathname":"/ci/artifacts/rsync"},{"action":"mkdir","pathname":"/ci/secrets"},{"action":"mkdir","pathname":"/ci/deps"},{"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":"tar_extract","archive":"/dev/vdd","directory":"/ci/artifacts"},{"action":"tar_extract","archive":"/dev/vdg","directory":"/ci/secrets"},{"action":"shell","shell":"ln -sf /ci /workspace"},{"action":"create_file","filename":"/root/.ssh/config","content":"Host *\nStrictHostKeyChecking accept-new\nIdentityFile /ci/secrets/ssh_key\n ","overwrite":true},{"action":"cargo_fmt"},{"action":"cargo_clippy"},{"action":"cargo_build"},{"action":"cargo_test"},{"action":"shell","shell":"make doc\ncp ./*.html doc/*.html /ci/artifacts\ngit reset --hard\ngit clean -fdx\n"},{"action":"custom","name":"dch","args":{"debemail":"liw@liw.fi","debfullname":"Lars Wirzenius"}},{"action":"deb","packages":"."},{"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","secrets_drive":null,"workspace_dir":"/ci","source_dir":"/ci/src","deps_dir":"/ci/deps","cache_dir":"/ci/cache","artifacts_dir":"/ci/artifacts","secrets_dir":null,"envs":{},"timestamp":{"secs_since_epoch":1783919488,"nanos_since_epoch":828723168},"log_source":"Plan"}
{"type":"execute_action","action":"mkdir","pathname":"/ci","timestamp":{"secs_since_epoch":1783919488,"nanos_since_epoch":865009399},"log_source":"Plan"}
{"type":"action_succeeded","action":"mkdir","pathname":"/ci","timestamp":{"secs_since_epoch":1783919488,"nanos_since_epoch":865103826},"log_source":"Plan"}
{"type":"execute_action","action":"mkdir","pathname":"/ci/artifacts","timestamp":{"secs_since_epoch":1783919488,"nanos_since_epoch":865267934},"log_source":"Plan"}
{"type":"action_succeeded","action":"mkdir","pathname":"/ci/artifacts","timestamp":{"secs_since_epoch":1783919488,"nanos_since_epoch":865295936},"log_source":"Plan"}
{"type":"execute_action","action":"mkdir","pathname":"/ci/artifacts/debian","timestamp":{"secs_since_epoch":1783919488,"nanos_since_epoch":865480808},"log_source":"Plan"}
{"type":"action_succeeded","action":"mkdir","pathname":"/ci/artifacts/debian","timestamp":{"secs_since_epoch":1783919488,"nanos_since_epoch":865508732},"log_source":"Plan"}
{"type":"execute_action","action":"mkdir","pathname":"/ci/artifacts/rsync","timestamp":{"secs_since_epoch":1783919488,"nanos_since_epoch":865693599},"log_source":"Plan"}
{"type":"action_succeeded","action":"mkdir","pathname":"/ci/artifacts/rsync","timestamp":{"secs_since_epoch":1783919488,"nanos_since_epoch":865719856},"log_source":"Plan"}
{"type":"execute_action","action":"mkdir","pathname":"/ci/secrets","timestamp":{"secs_since_epoch":1783919488,"nanos_since_epoch":865906384},"log_source":"Plan"}
{"type":"action_succeeded","action":"mkdir","pathname":"/ci/secrets","timestamp":{"secs_since_epoch":1783919488,"nanos_since_epoch":865934986},"log_source":"Plan"}
{"type":"execute_action","action":"mkdir","pathname":"/ci/deps","timestamp":{"secs_since_epoch":1783919488,"nanos_since_epoch":866119305},"log_source":"Plan"}
{"type":"action_succeeded","action":"mkdir","pathname":"/ci/deps","timestamp":{"secs_since_epoch":1783919488,"nanos_since_epoch":866144304},"log_source":"Plan"}
{"type":"execute_action","action":"tar_extract","archive":"/dev/vdc","directory":"/ci/src","timestamp":{"secs_since_epoch":1783919488,"nanos_since_epoch":866349654},"log_source":"Plan"}
{"type":"action_succeeded","action":"tar_extract","archive":"/dev/vdc","directory":"/ci/src","timestamp":{"secs_since_epoch":1783919488,"nanos_since_epoch":910836748},"log_source":"Plan"}
{"type":"execute_action","action":"tar_extract","archive":"/dev/vdf","directory":"/ci/deps","timestamp":{"secs_since_epoch":1783919488,"nanos_since_epoch":910878651},"log_source":"Plan"}
{"type":"action_succeeded","action":"tar_extract","archive":"/dev/vdf","directory":"/ci/deps","timestamp":{"secs_since_epoch":1783919490,"nanos_since_epoch":130669905},"log_source":"Plan"}
{"type":"execute_action","action":"tar_extract","archive":"/dev/vde","directory":"/ci/cache","timestamp":{"secs_since_epoch":1783919490,"nanos_since_epoch":133368620},"log_source":"Plan"}
{"type":"action_succeeded","action":"tar_extract","archive":"/dev/vde","directory":"/ci/cache","timestamp":{"secs_since_epoch":1783919490,"nanos_since_epoch":138031296},"log_source":"Plan"}
{"type":"execute_action","action":"tar_extract","archive":"/dev/vdd","directory":"/ci/artifacts","timestamp":{"secs_since_epoch":1783919490,"nanos_since_epoch":140715189},"log_source":"Plan"}
{"type":"action_succeeded","action":"tar_extract","archive":"/dev/vdd","directory":"/ci/artifacts","timestamp":{"secs_since_epoch":1783919490,"nanos_since_epoch":144748277},"log_source":"Plan"}
{"type":"execute_action","action":"tar_extract","archive":"/dev/vdg","directory":"/ci/secrets","timestamp":{"secs_since_epoch":1783919490,"nanos_since_epoch":147555443},"log_source":"Plan"}
{"type":"action_succeeded","action":"tar_extract","archive":"/dev/vdg","directory":"/ci/secrets","timestamp":{"secs_since_epoch":1783919490,"nanos_since_epoch":151468826},"log_source":"Plan"}
{"type":"execute_action","action":"shell","shell":"ln -sf /ci /workspace","timestamp":{"secs_since_epoch":1783919490,"nanos_since_epoch":154158466},"log_source":"Plan"}
{"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":1783919490,"nanos_since_epoch":156576369},"log_source":"Plan"}
{"type":"program_succeeded","exit_code":0,"stdout":"","stderr":"+ ln -sf /ci /workspace\n","timestamp":{"secs_since_epoch":1783919490,"nanos_since_epoch":163692199},"log_source":"Plan"}
{"type":"action_succeeded","action":"shell","shell":"ln -sf /ci /workspace","timestamp":{"secs_since_epoch":1783919490,"nanos_since_epoch":166337872},"log_source":"Plan"}
{"type":"execute_action","action":"create_file","filename":"/root/.ssh/config","content":"Host *\nStrictHostKeyChecking accept-new\nIdentityFile /ci/secrets/ssh_key\n ","overwrite":true,"timestamp":{"secs_since_epoch":1783919490,"nanos_since_epoch":168736557},"log_source":"Plan"}
{"type":"action_succeeded","action":"create_file","filename":"/root/.ssh/config","content":"Host *\nStrictHostKeyChecking accept-new\nIdentityFile /ci/secrets/ssh_key\n ","overwrite":true,"timestamp":{"secs_since_epoch":1783919490,"nanos_since_epoch":173205610},"log_source":"Plan"}
{"type":"execute_action","action":"cargo_fmt","timestamp":{"secs_since_epoch":1783919490,"nanos_since_epoch":177360526},"log_source":"Plan"}
{"type":"start_program","argv":[{"Unix":[99,97,114,103,111]},{"Unix":[45,45,118,101,114,115,105,111,110]}],"timestamp":{"secs_since_epoch":1783919490,"nanos_since_epoch":179384939},"log_source":"Plan"}
{"type":"program_succeeded","exit_code":0,"stdout":"cargo 1.97.0 (c980f4866 2026-06-30)\n","stderr":"","timestamp":{"secs_since_epoch":1783919490,"nanos_since_epoch":203718625},"log_source":"Plan"}
{"type":"start_program","argv":[{"Unix":[99,97,114,103,111]},{"Unix":[99,108,105,112,112,121]},{"Unix":[45,45,118,101,114,115,105,111,110]}],"timestamp":{"secs_since_epoch":1783919490,"nanos_since_epoch":206555700},"log_source":"Plan"}
{"type":"program_succeeded","exit_code":0,"stdout":"clippy 0.1.97 (2d8144b788 2026-07-07)\n","stderr":"","timestamp":{"secs_since_epoch":1783919490,"nanos_since_epoch":254988567},"log_source":"Plan"}
{"type":"start_program","argv":[{"Unix":[114,117,115,116,99]},{"Unix":[45,45,118,101,114,115,105,111,110]}],"timestamp":{"secs_since_epoch":1783919490,"nanos_since_epoch":255033287},"log_source":"Plan"}
{"type":"program_succeeded","exit_code":0,"stdout":"rustc 1.97.0 (2d8144b78 2026-07-07)\n","stderr":"","timestamp":{"secs_since_epoch":1783919490,"nanos_since_epoch":275265719},"log_source":"Plan"}
{"type":"start_program","argv":[{"Unix":[99,97,114,103,111]},{"Unix":[102,109,116]},{"Unix":[45,45,99,104,101,99,107]}],"timestamp":{"secs_since_epoch":1783919490,"nanos_since_epoch":278057586},"log_source":"Plan"}
{"type":"program_failed","exit_code":1,"stdout":"Diff in /ci/src/src/action_impl/gomod.rs:57:\n // the dependencies directory.\n context.set_env(\"GOMODCACHE\", &gomod_dir_str);\n \n- super::spawn_in(context, &[\"go\", \"mod\", \"download\"], tmp.path().to_path_buf())?;\n+ super::spawn_in(\n+ context,\n+ &[\"go\", \"mod\", \"download\"],\n+ tmp.path().to_path_buf(),\n+ )?;\n \n // Set environment variables so the VM plan finds the cached\n // modules without needing network access.\nDiff in /ci/src/src/action_impl/pip.rs:51:\n }\n \n fn requirements_file(&self) -> &str {\n- self.requirements\n- .as_deref()\n- .unwrap_or(DEFAULT_REQUIREMENTS)\n+ self.requirements.as_deref().unwrap_or(DEFAULT_REQUIREMENTS)\n }\n \n fn allow_sdist(&self) -> bool {\n","stderr":"","timestamp":{"secs_since_epoch":1783919490,"nanos_since_epoch":410581096},"log_source":"Plan"}
{"type":"action_failed","action":"cargo_fmt","timestamp":{"secs_since_epoch":1783919490,"nanos_since_epoch":410623460},"log_source":"Plan"}
ERROR: failed to execute cargo
caused by: command failed: "cargo": exit code 1
{"type":"executor_ends_in_failure","exit_code":1,"timestamp":{"secs_since_epoch":1783919490,"nanos_since_epoch":410659735},"log_source":"Plan"}
EXIT CODE: 1
No log