rad:z27Mx16VDZt2nwGygkyPCbK9ppuB radicle-devcontainer-ci61c65ed2d7660960133cc13d72f363361da904bfdid:key:z6MkiaGEHcXc9v3ou5ZvfnRC8xBrGoEFWqvPQPTLEU8bUt8C)main{
"request": "trigger",
"version": 1,
"event_type": "push",
"repository": {
"id": "rad:z27Mx16VDZt2nwGygkyPCbK9ppuB",
"name": "radicle-devcontainer-ci",
"description": "Radicle CI broker adapter that runs jobs in a repository's devcontainer",
"private": false,
"default_branch": "main",
"delegates": [
"did:key:z6MkiaGEHcXc9v3ou5ZvfnRC8xBrGoEFWqvPQPTLEU8bUt8C"
]
},
"pusher": {
"id": "did:key:z6MkiaGEHcXc9v3ou5ZvfnRC8xBrGoEFWqvPQPTLEU8bUt8C",
"alias": "nolan"
},
"before": "61c65ed2d7660960133cc13d72f363361da904bf",
"after": "61c65ed2d7660960133cc13d72f363361da904bf",
"branch": "main",
"commits": [
"61c65ed2d7660960133cc13d72f363361da904bf"
]
}
$ rad clone rad:z27Mx16VDZt2nwGygkyPCbK9ppuB .
✓ Creating checkout in ./... ✓ Remote nolan@z6MkiaGEHcXc9v3ou5ZvfnRC8xBrGoEFWqvPQPTLEU8bUt8C added ✓ Remote-tracking branch nolan@z6MkiaGEHcXc9v3ou5ZvfnRC8xBrGoEFWqvPQPTLEU8bUt8C/main created for z6MkiaGEHcXc9v3ou5ZvfnRC8xBrGoEFWqvPQPTLEU8bUt8C ✓ Repository successfully cloned under /var/lib/radicle-ci/adapters/devcontainer/devcontainer/state/4c2e270b-49cd-4bde-9f9a-c7b096d6d7f9/w/ ╭─────────────────────────────────────────────────────────────────────────╮ │ radicle-devcontainer-ci │ │ Radicle CI broker adapter that runs jobs in a repository's devcontainer │ │ 0 issues · 0 patches │ ╰─────────────────────────────────────────────────────────────────────────╯ Run `cd ./.` to go to the repository directory.
$ git config advice.detachedHead false
$ git checkout 61c65ed2d7660960133cc13d72f363361da904bf
HEAD is now at 61c65ed chore: set up Mise and changelog generation
#!/usr/bin/env bash
set -xeuo pipefail
mise install
eval "$(mise activate bash --shims)"
cargo fmt --check
cargo clippy --all-targets
cargo test
# The Determinate installer's profile hook doesn't run in this non-login
# shell, and there is no nix daemon under --init none.
export PATH=/nix/var/nix/profiles/default/bin:$PATH
export NIX_REMOTE=local
nix fmt -- --ci
# Evaluates the NixOS module and its invariants. Must precede flake check:
# that command evaluates with a read-only store and fails on naersk's
# filtered sources ("path ... is not valid") until an ordinary eval has
# registered them.
nix eval --raw .#checks.x86_64-linux.nixos-module.drvPath
nix flake check --no-build
# Prove the module-rendered settings parse as the Rust Config: extract the
# 'ci' instance's config from the nixos-module check's JSON (valid YAML
# input, since YAML is a JSON superset) and run it through the adapter's
# own validator. Catches Nix<->Rust schema drift with no extra nix builds.
nix eval --raw .#checks.x86_64-linux.nixos-module.text --apply 'text: builtins.toJSON (builtins.fromJSON text).ci.config' > target/nixos-module-ci.yaml
cargo run -- --config target/nixos-module-ci.yaml config
# Full broker + adapter end-to-end test in NixOS VMs. Only worth running
# with hardware acceleration; hosts without /dev/kvm skip it (they cannot
# reach this point anyway while runArgs passes the device unconditionally).
if [ -e /dev/kvm ]; then
nix build -L .#checks.x86_64-linux.e2e
fi
mounting radicle-ci-cache-0f21906dcab9-2b3df4dad4fd479c at /workspaces/w/target mounting radicle-ci-cache-0f21906dcab9-37614f8a2c9b734f at /nix
$ /nix/store/h111xm96sylafdn3kgixgxyfs7af600r-podman-5.8.2/bin/podman volume create --label xyz.radicle.ci.cache=rad:z27Mx16VDZt2nwGygkyPCbK9ppuB radicle-ci-cache-0f21906dcab9-2b3df4dad4fd479c
radicle-ci-cache-0f21906dcab9-2b3df4dad4fd479c
$ /nix/store/h111xm96sylafdn3kgixgxyfs7af600r-podman-5.8.2/bin/podman volume create --label xyz.radicle.ci.cache=rad:z27Mx16VDZt2nwGygkyPCbK9ppuB radicle-ci-cache-0f21906dcab9-37614f8a2c9b734f
radicle-ci-cache-0f21906dcab9-37614f8a2c9b734f
$ /nix/store/ik0xcys4cqjr4hdywzinrylm9sm48bvc-devcontainer-0.87.0/bin/devcontainer up --docker-path /nix/store/h111xm96sylafdn3kgixgxyfs7af600r-podman-5.8.2/bin/podman --workspace-folder /var/lib/radicle-ci/adapters/devcontainer/devcontainer/state/4c2e270b-49cd-4bde-9f9a-c7b096d6d7f9/w --id-label devcontainer.local_folder=/var/lib/radicle-ci/adapters/devcontainer/devcontainer/state/4c2e270b-49cd-4bde-9f9a-c7b096d6d7f9/w --id-label xyz.radicle.ci.run=4c2e270b-49cd-4bde-9f9a-c7b096d6d7f9 --mount type=volume,source=radicle-ci-cache-0f21906dcab9-2b3df4dad4fd479c,target=/workspaces/w/target --mount type=volume,source=radicle-ci-cache-0f21906dcab9-37614f8a2c9b734f,target=/nix
[2026-07-07T02:33:34.137Z] @devcontainers/cli 0.87.0. Node.js v24.16.0. linux 6.18.37 x64.
(node:2399038) [DEP0169] DeprecationWarning: `url.parse()` behavior is not standardized and prone to errors that have security implications. Use the WHATWG URL API instead. CVEs are not issued for `url.parse()` vulnerabilities.
(Use `node --trace-deprecation ...` to show where the warning was created)
[2026-07-07T02:33:37.370Z] Resolving Feature dependencies for 'ghcr.io/devcontainers/features/rust:1'...
[2026-07-07T02:33:38.974Z] Resolving Feature dependencies for 'ghcr.io/devcontainers-extra/features/mise:1'...
[2026-07-07T02:33:39.697Z] Soft-dependency 'ghcr.io/devcontainers/features/common-utils' is not required. Removing from installation order...
[2026-07-07T02:33:39.697Z] Soft-dependency 'ghcr.io/devcontainers-extra/features/gh-release' is not required. Removing from installation order...
[2026-07-07T02:33:40.322Z] Files to omit: ''
[2026-07-07T02:33:40.839Z] Files to omit: ''
[2026-07-07T02:33:40.873Z] Start: Run: /nix/store/h111xm96sylafdn3kgixgxyfs7af600r-podman-5.8.2/bin/podman buildx build --load --build-arg BUILDKIT_INLINE_CACHE=1 --build-context dev_containers_feature_content_source=/tmp/devcontainercli-radicle/container-features/0.87.0-1783391617364 --build-arg _DEV_CONTAINERS_BASE_IMAGE=debian:13 --build-arg _DEV_CONTAINERS_IMAGE_USER=root --build-arg _DEV_CONTAINERS_FEATURE_CONTENT_SOURCE=dev_container_feature_content_temp --target dev_containers_target_stage -f /tmp/devcontainercli-radicle/container-features/0.87.0-1783391617364/Dockerfile.extended -t vsc-w-2184ab699f123f06eb77d125f333850bd2489eac0749b7383d3d6ea77d9aa9c4-features /tmp/devcontainercli-radicle/empty-folder
[2026-07-07T02:33:41.141Z] [1/2] STEP 1/4: FROM debian:13 AS dev_containers_feature_content_normalize
[2026-07-07T02:33:41.145Z] Resolving "debian" using unqualified-search registries (/etc/containers/registries.conf)
Trying to pull docker.io/library/debian:13...
[2026-07-07T02:33:42.846Z] Getting image source signatures
[2026-07-07T02:33:42.856Z] Copying blob sha256:aa3e9ef32f73c30e8b065800ee66429992d3bfea6a1fb8224afdd878ab5b994f
[2026-07-07T02:34:03.441Z] Copying config sha256:5ebdc6318df1a2972258091f50c531728be979a10ab0ce42b952b684bb513562
[2026-07-07T02:34:03.451Z] Writing manifest to image destination
[2026-07-07T02:34:03.484Z] [1/2] STEP 2/4: USER root
[2026-07-07T02:34:03.521Z] --> 66603368ba0a
[2026-07-07T02:34:03.530Z] [1/2] STEP 3/4: COPY --from=dev_containers_feature_content_source devcontainer-features.builtin.env /tmp/build-features/
[2026-07-07T02:34:03.736Z] --> 450ba763ed74
[2026-07-07T02:34:03.745Z] [1/2] STEP 4/4: RUN chmod -R 0755 /tmp/build-features/
[2026-07-07T02:34:04.346Z] --> fa697464e895
[2026-07-07T02:34:04.354Z] [2/2] STEP 1/13: FROM debian:13 AS dev_containers_target_stage
[2026-07-07T02:34:06.525Z] [2/2] STEP 2/13: USER root
[2026-07-07T02:34:06.526Z] --> Using cache 66603368ba0af0aad9e7659dc6bf66628388a3512261f9fcf4aecb484ea71283
--> 66603368ba0a
[2026-07-07T02:34:06.534Z] [2/2] STEP 3/13: RUN mkdir -p /tmp/dev-container-features
[2026-07-07T02:34:07.093Z] --> bafa148706fe
[2026-07-07T02:34:07.102Z] [2/2] STEP 4/13: COPY --from=dev_containers_feature_content_normalize /tmp/build-features/ /tmp/dev-container-features
[2026-07-07T02:34:07.363Z] --> db84ec134af7
[2026-07-07T02:34:07.374Z] [2/2] STEP 5/13: RUN echo "_CONTAINER_USER_HOME=$( (command -v getent >/dev/null 2>&1 && getent passwd 'root' || grep -E '^root|^[^:]*:[^:]*:root:' /etc/passwd || true) | cut -d: -f6)" >> /tmp/dev-container-features/devcontainer-features.builtin.env && echo "_REMOTE_USER_HOME=$( (command -v getent >/dev/null 2>&1 && getent passwd 'root' || grep -E '^root|^[^:]*:[^:]*:root:' /etc/passwd || true) | cut -d: -f6)" >> /tmp/dev-container-features/devcontainer-features.builtin.env
[2026-07-07T02:34:07.954Z] --> 9624121ed1da
[2026-07-07T02:34:07.963Z] [2/2] STEP 6/13: RUN --mount=type=bind,from=dev_containers_feature_content_source,source=mise_0,target=/tmp/build-features-src/mise_0 cp -ar /tmp/build-features-src/mise_0 /tmp/dev-container-features && chmod -R 0755 /tmp/dev-container-features/mise_0 && cd /tmp/dev-container-features/mise_0 && chmod +x ./devcontainer-features-install.sh && ./devcontainer-features-install.sh && rm -rf /tmp/dev-container-features/mise_0
[2026-07-07T02:34:08.377Z] ===========================================================================
Feature : Mise
Description : The front-end to your dev env
Id : ghcr.io/devcontainers-extra/features/mise
Version : 1.0.0
Documentation : https://github.com/devcontainers-extra/features/tree/main/src/mise
Options :
VERSION="latest"
===========================================================================
[2026-07-07T02:34:08.839Z] Get:1 http://deb.debian.org/debian trixie InRelease [140 kB]
[2026-07-07T02:34:09.190Z] Get:2 http://deb.debian.org/debian trixie-updates InRelease [47.3 kB]
[2026-07-07T02:34:09.321Z] Get:3 http://deb.debian.org/debian-security trixie-security InRelease [43.4 kB]
[2026-07-07T02:34:09.455Z] Get:4 http://deb.debian.org/debian trixie/main amd64 Packages [9671 kB]
[2026-07-07T02:34:10.119Z] Get:5 http://deb.debian.org/debian trixie-updates/main amd64 Packages [5412 B]
[2026-07-07T02:34:10.237Z] Get:6 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [224 kB]
[2026-07-07T02:34:10.607Z] Fetched 10.1 MB in 2s (4685 kB/s)
Reading package lists...
[2026-07-07T02:34:10.907Z]
[2026-07-07T02:34:10.940Z] Reading package lists...
[2026-07-07T02:34:11.251Z]
[2026-07-07T02:34:11.259Z] Building dependency tree...
[2026-07-07T02:34:11.322Z]
Reading state information...
[2026-07-07T02:34:11.411Z] The following additional packages will be installed:
[2026-07-07T02:34:11.411Z] libffi8 libgnutls30t64 libidn2-0 libp11-kit0 libpsl5t64 libtasn1-6
[2026-07-07T02:34:11.411Z] libunistring5 openssl
[2026-07-07T02:34:11.411Z] Suggested packages:
gnutls-bin
Recommended packages:
publicsuffix
[2026-07-07T02:34:11.467Z] The following NEW packages will be installed:
[2026-07-07T02:34:11.467Z] ca-certificates libffi8 libgnutls30t64 libidn2-0 libp11-kit0 libpsl5t64
[2026-07-07T02:34:11.467Z] libtasn1-6 libunistring5 openssl wget
[2026-07-07T02:34:11.732Z] 0 upgraded, 10 newly installed, 0 to remove and 0 not upgraded.
Need to get 5260 kB of archives.
After this operation, 15.3 MB of additional disk space will be used.
Get:1 http://deb.debian.org/debian-security trixie-security/main amd64 openssl amd64 3.5.6-1~deb13u2 [1503 kB]
[2026-07-07T02:34:12.515Z] Get:2 http://deb.debian.org/debian trixie/main amd64 ca-certificates all 20250419 [162 kB]
[2026-07-07T02:34:12.686Z] Get:3 http://deb.debian.org/debian trixie/main amd64 libunistring5 amd64 1.3-2 [477 kB]
[2026-07-07T02:34:12.831Z] Get:4 http://deb.debian.org/debian trixie/main amd64 libidn2-0 amd64 2.3.8-2 [109 kB]
[2026-07-07T02:34:12.834Z] Get:5 http://deb.debian.org/debian trixie/main amd64 libffi8 amd64 3.4.8-2 [24.1 kB]
[2026-07-07T02:34:12.835Z] Get:6 http://deb.debian.org/debian trixie/main amd64 libp11-kit0 amd64 0.25.5-3 [425 kB]
[2026-07-07T02:34:12.852Z] Get:7 http://deb.debian.org/debian trixie/main amd64 libtasn1-6 amd64 4.20.0-2 [49.9 kB]
[2026-07-07T02:34:12.979Z] Get:8 http://deb.debian.org/debian-security trixie-security/main amd64 libgnutls30t64 amd64 3.8.9-3+deb13u4 [1469 kB]
[2026-07-07T02:34:13.036Z] Get:9 http://deb.debian.org/debian trixie/main amd64 libpsl5t64 amd64 0.21.2-1.1+b1 [57.2 kB]
[2026-07-07T02:34:13.163Z] Get:10 http://deb.debian.org/debian trixie/main amd64 wget amd64 1.25.0-2 [984 kB]
[2026-07-07T02:34:13.290Z] debconf: unable to initialize frontend: Dialog
debconf: (TERM is not set, so the dialog frontend is not usable.)
debconf: falling back to frontend: Readline
[2026-07-07T02:34:13.290Z] debconf: unable to initialize frontend: Readline
debconf: (Can't locate Term/ReadLine.pm in @INC (you may need to install the Term::ReadLine module) (@INC entries checked: /etc/perl /usr/local/lib/x86_64-linux-gnu/perl/5.40.1 /usr/local/share/perl/5.40.1 /usr/lib/x86_64-linux-gnu/perl5/5.40 /usr/share/perl5 /usr/lib/x86_64-linux-gnu/perl-base /usr/lib/x86_64-linux-gnu/perl/5.40 /usr/share/perl/5.40 /usr/local/lib/site_perl) at /usr/share/perl5/Debconf/FrontEnd/Readline.pm line 8, <STDIN> line 10.)
debconf: falling back to frontend: Teletype
[2026-07-07T02:34:13.292Z] debconf: unable to initialize frontend: Teletype
debconf: (This frontend requires a controlling tty.)
debconf: falling back to frontend: Noninteractive
[2026-07-07T02:34:13.604Z] Preconfiguring packages ...
[2026-07-07T02:34:13.634Z] Fetched 5260 kB in 2s (3079 kB/s)
[2026-07-07T02:34:13.673Z] Selecting previously unselected package openssl.
(Reading database ...
[2026-07-07T02:34:13.675Z] (Reading database ... 5%
[2026-07-07T02:34:13.676Z] (Reading database ... 10%
[2026-07-07T02:34:13.676Z] (Reading database ... 15%
[2026-07-07T02:34:13.677Z] (Reading database ... 20%
[2026-07-07T02:34:13.677Z] (Reading database ... 25%
[2026-07-07T02:34:13.677Z] (Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 4936 files and directories currently installed.)
[2026-07-07T02:34:13.678Z] Preparing to unpack .../0-openssl_3.5.6-1~deb13u2_amd64.deb ...
[2026-07-07T02:34:13.678Z] Unpacking openssl (3.5.6-1~deb13u2) ...
[2026-07-07T02:34:13.734Z] Selecting previously unselected package ca-certificates.
[2026-07-07T02:34:13.734Z] Preparing to unpack .../1-ca-certificates_20250419_all.deb ...
[2026-07-07T02:34:13.734Z] Unpacking ca-certificates (20250419) ...
[2026-07-07T02:34:13.751Z] Selecting previously unselected package libunistring5:amd64.
[2026-07-07T02:34:13.751Z] Preparing to unpack .../2-libunistring5_1.3-2_amd64.deb ...
[2026-07-07T02:34:13.751Z] Unpacking libunistring5:amd64 (1.3-2) ...
[2026-07-07T02:34:13.776Z] Selecting previously unselected package libidn2-0:amd64.
[2026-07-07T02:34:13.776Z] Preparing to unpack .../3-libidn2-0_2.3.8-2_amd64.deb ...
[2026-07-07T02:34:13.777Z] Unpacking libidn2-0:amd64 (2.3.8-2) ...
[2026-07-07T02:34:13.801Z] Selecting previously unselected package libffi8:amd64.
[2026-07-07T02:34:13.802Z] Preparing to unpack .../4-libffi8_3.4.8-2_amd64.deb ...
[2026-07-07T02:34:13.802Z] Unpacking libffi8:amd64 (3.4.8-2) ...
[2026-07-07T02:34:13.819Z] Selecting previously unselected package libp11-kit0:amd64.
[2026-07-07T02:34:13.821Z] Preparing to unpack .../5-libp11-kit0_0.25.5-3_amd64.deb ...
[2026-07-07T02:34:13.822Z] Unpacking libp11-kit0:amd64 (0.25.5-3) ...
[2026-07-07T02:34:13.853Z] Selecting previously unselected package libtasn1-6:amd64.
[2026-07-07T02:34:13.853Z] Preparing to unpack .../6-libtasn1-6_4.20.0-2_amd64.deb ...
[2026-07-07T02:34:13.854Z] Unpacking libtasn1-6:amd64 (4.20.0-2) ...
[2026-07-07T02:34:13.880Z] Selecting previously unselected package libgnutls30t64:amd64.
[2026-07-07T02:34:13.882Z] Preparing to unpack .../7-libgnutls30t64_3.8.9-3+deb13u4_amd64.deb ...
[2026-07-07T02:34:13.882Z] Unpacking libgnutls30t64:amd64 (3.8.9-3+deb13u4) ...
[2026-07-07T02:34:13.937Z] Selecting previously unselected package libpsl5t64:amd64.
[2026-07-07T02:34:13.937Z] Preparing to unpack .../8-libpsl5t64_0.21.2-1.1+b1_amd64.deb ...
[2026-07-07T02:34:13.937Z] Unpacking libpsl5t64:amd64 (0.21.2-1.1+b1) ...
[2026-07-07T02:34:13.955Z] Selecting previously unselected package wget.
[2026-07-07T02:34:13.957Z] Preparing to unpack .../9-wget_1.25.0-2_amd64.deb ...
[2026-07-07T02:34:13.957Z] Unpacking wget (1.25.0-2) ...
[2026-07-07T02:34:14.014Z] Setting up libunistring5:amd64 (1.3-2) ...
[2026-07-07T02:34:14.014Z] Setting up libffi8:amd64 (3.4.8-2) ...
[2026-07-07T02:34:14.015Z] Setting up libtasn1-6:amd64 (4.20.0-2) ...
[2026-07-07T02:34:14.015Z] Setting up openssl (3.5.6-1~deb13u2) ...
[2026-07-07T02:34:14.016Z] Setting up libidn2-0:amd64 (2.3.8-2) ...
[2026-07-07T02:34:14.016Z] Setting up ca-certificates (20250419) ...
[2026-07-07T02:34:14.075Z] debconf: unable to initialize frontend: Dialog
debconf: (TERM is not set, so the dialog frontend is not usable.)
debconf: falling back to frontend: Readline
[2026-07-07T02:34:14.075Z] debconf: unable to initialize frontend: Readline
debconf: (Can't locate Term/ReadLine.pm in @INC (you may need to install the Term::ReadLine module) (@INC entries checked: /etc/perl /usr/local/lib/x86_64-linux-gnu/perl/5.40.1 /usr/local/share/perl/5.40.1 /usr/lib/x86_64-linux-gnu/perl5/5.40 /usr/share/perl5 /usr/lib/x86_64-linux-gnu/perl-base /usr/lib/x86_64-linux-gnu/perl/5.40 /usr/share/perl/5.40 /usr/local/lib/site_perl) at /usr/share/perl5/Debconf/FrontEnd/Readline.pm line 8.)
debconf: falling back to frontend: Teletype
[2026-07-07T02:34:14.078Z] debconf: unable to initialize frontend: Teletype
debconf: (This frontend requires a controlling tty.)
debconf: falling back to frontend: Noninteractive
[2026-07-07T02:34:15.038Z] Updating certificates in /etc/ssl/certs...
[2026-07-07T02:34:16.422Z] 150 added, 0 removed; done.
[2026-07-07T02:34:16.430Z] Setting up libp11-kit0:amd64 (0.25.5-3) ...
[2026-07-07T02:34:16.430Z] Setting up libgnutls30t64:amd64 (3.8.9-3+deb13u4) ...
[2026-07-07T02:34:16.430Z] Setting up libpsl5t64:amd64 (0.21.2-1.1+b1) ...
[2026-07-07T02:34:16.430Z] Setting up wget (1.25.0-2) ...
[2026-07-07T02:34:16.431Z] Processing triggers for libc-bin (2.41-12+deb13u3) ...
[2026-07-07T02:34:16.442Z] Processing triggers for ca-certificates (20250419) ...
[2026-07-07T02:34:16.449Z] Updating certificates in /etc/ssl/certs...
[2026-07-07T02:34:17.679Z] 0 added, 0 removed; done.
Running hooks in /etc/ca-certificates/update.d...
[2026-07-07T02:34:17.682Z] done.
[2026-07-07T02:34:19.231Z] removing wget
[2026-07-07T02:34:19.240Z] Reading package lists...
[2026-07-07T02:34:19.546Z]
[2026-07-07T02:34:19.553Z] Building dependency tree...
[2026-07-07T02:34:19.614Z]
Reading state information...
[2026-07-07T02:34:19.614Z]
[2026-07-07T02:34:19.707Z] The following packages will be REMOVED:
[2026-07-07T02:34:19.707Z] libffi8* libgnutls30t64* libp11-kit0* libpsl5t64* libtasn1-6* wget*
[2026-07-07T02:34:19.789Z] 0 upgraded, 0 newly installed, 6 to remove and 0 not upgraded.
After this operation, 9691 kB disk space will be freed.
[2026-07-07T02:34:19.795Z] (Reading database ...
[2026-07-07T02:34:19.798Z] (Reading database ... 5%
[2026-07-07T02:34:19.798Z] (Reading database ... 10%
[2026-07-07T02:34:19.799Z] (Reading database ... 15%
[2026-07-07T02:34:19.799Z] (Reading database ... 20%
[2026-07-07T02:34:19.799Z] (Reading database ... 25%
[2026-07-07T02:34:19.800Z] (Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 5698 files and directories currently installed.)
[2026-07-07T02:34:19.800Z] Removing wget (1.25.0-2) ...
[2026-07-07T02:34:19.805Z] Removing libgnutls30t64:amd64 (3.8.9-3+deb13u4) ...
[2026-07-07T02:34:19.806Z] Removing libp11-kit0:amd64 (0.25.5-3) ...
[2026-07-07T02:34:19.807Z] Removing libffi8:amd64 (3.4.8-2) ...
[2026-07-07T02:34:19.808Z] Removing libpsl5t64:amd64 (0.21.2-1.1+b1) ...
[2026-07-07T02:34:19.809Z] Removing libtasn1-6:amd64 (4.20.0-2) ...
[2026-07-07T02:34:19.815Z] Processing triggers for libc-bin (2.41-12+deb13u3) ...
[2026-07-07T02:34:19.848Z] (Reading database ...
[2026-07-07T02:34:19.850Z] (Reading database ... 5%
[2026-07-07T02:34:19.851Z] (Reading database ... 10%
[2026-07-07T02:34:19.851Z] (Reading database ... 15%
[2026-07-07T02:34:19.852Z] (Reading database ... 20%
[2026-07-07T02:34:19.852Z] (Reading database ... 25%
[2026-07-07T02:34:19.852Z] (Reading database ... 30%
[2026-07-07T02:34:19.852Z] (Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
[2026-07-07T02:34:19.852Z]
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 5544 files and directories currently installed.)
[2026-07-07T02:34:19.853Z] Purging configuration files for wget (1.25.0-2) ...
[2026-07-07T02:34:19.869Z] revert back apt lists
[2026-07-07T02:34:19.885Z] nanolayer
[2026-07-07T02:34:24.639Z] cd /tmp/tmph0dzuafe && chmod +x -R . && _REMOTE_USER="root" _REMOTE_USER_HOME="/root" REPO="jdx/mise" BINARYNAMES="mise" VERSION="latest" ASSETREGEX=".tar.gz$" RELEASETAGREGEX="" BINLOCATION="/usr/local/bin" LIBNAME="" LIBLOCATION="/usr/local/lib" ADDITIONALFLAGS="" NANOLAYER_VERBOSE="" NANOLAYER_FORCE_CLI_INSTALLATION="" NANOLAYER_PROPAGATE_CLI_LOCATION="1" NANOLAYER_CLI_LOCATION="/tmp/nanolayer-faIstUhN2k/nanolayer" bash -i +H ./install.sh
Found a pre-existing nanolayer which were given in env variable: /tmp/nanolayer-faIstUhN2k/nanolayer
[2026-07-07T02:34:24.771Z] skipping usage of pre-existing nanolayer. (required version v0.5.6 does not match existing version 0.5.6)
[2026-07-07T02:34:24.788Z]
0% [Working]
[2026-07-07T02:34:25.028Z]
Get:1 http://deb.debian.org/debian trixie InRelease [140 kB]
0% [1 InRelease 14.2 kB/140 kB 10%]
[2026-07-07T02:34:25.279Z]
0% [Waiting for headers]
[2026-07-07T02:34:25.315Z]
0% [Waiting for headers]
[2026-07-07T02:34:25.379Z]
Get:2 http://deb.debian.org/debian trixie-updates InRelease [47.3 kB]
0% [2 InRelease 2840 B/47.3 kB 6%]
[2026-07-07T02:34:25.393Z]
0% [Working]
[2026-07-07T02:34:25.409Z]
0% [Waiting for headers]
[2026-07-07T02:34:25.602Z]
Get:3 http://deb.debian.org/debian-security trixie-security InRelease [43.4 kB]
0% [3 InRelease 2840 B/43.4 kB 7%]
[2026-07-07T02:34:25.615Z]
0% [Working]
[2026-07-07T02:34:25.646Z]
15% [Waiting for headers]
[2026-07-07T02:34:25.734Z]
Get:4 http://deb.debian.org/debian trixie/main amd64 Packages [9671 kB]
15% [4 Packages 13.5 kB/9671 kB 0%]
[2026-07-07T02:34:26.235Z]
46% [4 Packages 3895 kB/9671 kB 40%]
[2026-07-07T02:34:26.388Z]
92% [Waiting for headers]
Get:5 http://deb.debian.org/debian trixie-updates/main amd64 Packages [5412 B]
92% [Working]
92% [4 Packages store 0 B] [Waiting for headers]
[2026-07-07T02:34:26.506Z]
Get:6 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [224 kB]
92% [4 Packages store 0 B] [6 Packages 0 B/224 kB 0%]
[2026-07-07T02:34:26.508Z]
93% [4 Packages store 0 B]
[2026-07-07T02:34:26.860Z]
96% [Working]
96% [5 Packages store 0 B]
[2026-07-07T02:34:26.860Z]
98% [Working]
[2026-07-07T02:34:26.860Z]
98% [6 Packages store 0 B]
[2026-07-07T02:34:26.871Z]
100% [Working]
Fetched 10.1 MB in 2s (4856 kB/s)
[2026-07-07T02:34:26.874Z]
Reading package lists... 0%
[2026-07-07T02:34:26.905Z]
Reading package lists... 0%
[2026-07-07T02:34:26.921Z]
Reading package lists... 0%
[2026-07-07T02:34:27.173Z]
Reading package lists... 97%
Reading package lists... 97%
[2026-07-07T02:34:27.174Z]
Reading package lists... 97%
Reading package lists... 97%
[2026-07-07T02:34:27.179Z]
Reading package lists... 99%
Reading package lists... 99%
[2026-07-07T02:34:27.183Z]
Reading package lists... Done
[2026-07-07T02:34:27.195Z]
Reading package lists... 0%
[2026-07-07T02:34:27.228Z]
Reading package lists... 0%
[2026-07-07T02:34:27.243Z]
Reading package lists... 0%
[2026-07-07T02:34:27.488Z]
Reading package lists... 97%
Reading package lists... 97%
[2026-07-07T02:34:27.488Z]
Reading package lists... 97%
Reading package lists... 97%
[2026-07-07T02:34:27.494Z]
Reading package lists... 99%
Reading package lists... 99%
[2026-07-07T02:34:27.498Z]
Reading package lists... Done
[2026-07-07T02:34:27.505Z]
Building dependency tree... 0%
Building dependency tree... 0%
[2026-07-07T02:34:27.516Z]
Building dependency tree... 50%
Building dependency tree... 50%
[2026-07-07T02:34:27.568Z]
Building dependency tree... Done
Reading state information... 0%
Reading state information... 1%
Reading state information... Done
[2026-07-07T02:34:27.576Z] ca-certificates is already the newest version (20250419).
[2026-07-07T02:34:27.655Z] The following additional packages will be installed:
[2026-07-07T02:34:27.656Z] libffi8 libgnutls30t64 libp11-kit0 libpsl5t64 libtasn1-6
[2026-07-07T02:34:27.656Z] Suggested packages:
gnutls-bin
Recommended packages:
publicsuffix
[2026-07-07T02:34:27.701Z] The following NEW packages will be installed:
[2026-07-07T02:34:27.701Z] libffi8 libgnutls30t64 libp11-kit0 libpsl5t64 libtasn1-6 wget
[2026-07-07T02:34:27.705Z] 0 upgraded, 6 newly installed, 0 to remove and 0 not upgraded.
[2026-07-07T02:34:27.707Z] Need to get 3010 kB of archives.
After this operation, 9691 kB of additional disk space will be used.
[2026-07-07T02:34:27.712Z]
0% [Working]
[2026-07-07T02:34:27.969Z]
Get:1 http://deb.debian.org/debian trixie/main amd64 libffi8 amd64 3.4.8-2 [24.1 kB]
0% [1 libffi8 14.2 kB/24.1 kB 59%]
[2026-07-07T02:34:27.982Z]
4% [Working]
[2026-07-07T02:34:28.116Z]
Get:2 http://deb.debian.org/debian trixie/main amd64 libp11-kit0 amd64 0.25.5-3 [425 kB]
4% [2 libp11-kit0 13.3 kB/425 kB 3%]
[2026-07-07T02:34:28.497Z]
19% [Waiting for headers]
Get:3 http://deb.debian.org/debian trixie/main amd64 libtasn1-6 amd64 4.20.0-2 [49.9 kB]
19% [3 libtasn1-6 3228 B/49.9 kB 6%]
[2026-07-07T02:34:28.509Z]
23% [Waiting for headers]
Get:4 http://deb.debian.org/debian-security trixie-security/main amd64 libgnutls30t64 amd64 3.8.9-3+deb13u4 [1469 kB]
23% [4 libgnutls30t64 775 B/1469 kB 0%]
[2026-07-07T02:34:28.751Z]
66% [Waiting for headers]
Get:5 http://deb.debian.org/debian trixie/main amd64 libpsl5t64 amd64 0.21.2-1.1+b1 [57.2 kB]
66% [5 libpsl5t64 20.6 kB/57.2 kB 36%]
[2026-07-07T02:34:28.753Z]
71% [Waiting for headers]
Get:6 http://deb.debian.org/debian trixie/main amd64 wget amd64 1.25.0-2 [984 kB]
71% [6 wget 3918 B/984 kB 0%]
[2026-07-07T02:34:28.802Z]
100% [Working]
Fetched 3010 kB in 1s (2753 kB/s)
[2026-07-07T02:34:29.188Z] Selecting previously unselected package libffi8:amd64.
(Reading database ...
[2026-07-07T02:34:29.191Z] (Reading database ... 5%
[2026-07-07T02:34:29.191Z] (Reading database ... 10%
[2026-07-07T02:34:29.192Z] (Reading database ... 15%
[2026-07-07T02:34:29.193Z] (Reading database ... 20%
[2026-07-07T02:34:29.193Z] (Reading database ... 25%
[2026-07-07T02:34:29.195Z] (Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 5543 files and directories currently installed.)
[2026-07-07T02:34:29.195Z] Preparing to unpack .../0-libffi8_3.4.8-2_amd64.deb ...
[2026-07-07T02:34:29.196Z] Unpacking libffi8:amd64 (3.4.8-2) ...
[2026-07-07T02:34:29.225Z] Selecting previously unselected package libp11-kit0:amd64.
[2026-07-07T02:34:29.226Z] Preparing to unpack .../1-libp11-kit0_0.25.5-3_amd64.deb ...
[2026-07-07T02:34:29.226Z] Unpacking libp11-kit0:amd64 (0.25.5-3) ...
[2026-07-07T02:34:29.269Z] Selecting previously unselected package libtasn1-6:amd64.
[2026-07-07T02:34:29.269Z] Preparing to unpack .../2-libtasn1-6_4.20.0-2_amd64.deb ...
[2026-07-07T02:34:29.269Z] Unpacking libtasn1-6:amd64 (4.20.0-2) ...
[2026-07-07T02:34:29.291Z] Selecting previously unselected package libgnutls30t64:amd64.
[2026-07-07T02:34:29.291Z] Preparing to unpack .../3-libgnutls30t64_3.8.9-3+deb13u4_amd64.deb ...
[2026-07-07T02:34:29.292Z] Unpacking libgnutls30t64:amd64 (3.8.9-3+deb13u4) ...
[2026-07-07T02:34:29.338Z] Selecting previously unselected package libpsl5t64:amd64.
[2026-07-07T02:34:29.339Z] Preparing to unpack .../4-libpsl5t64_0.21.2-1.1+b1_amd64.deb ...
[2026-07-07T02:34:29.339Z] Unpacking libpsl5t64:amd64 (0.21.2-1.1+b1) ...
[2026-07-07T02:34:29.348Z] Selecting previously unselected package wget.
[2026-07-07T02:34:29.349Z] Preparing to unpack .../5-wget_1.25.0-2_amd64.deb ...
[2026-07-07T02:34:29.349Z] Unpacking wget (1.25.0-2) ...
[2026-07-07T02:34:29.401Z] Setting up libpsl5t64:amd64 (0.21.2-1.1+b1) ...
[2026-07-07T02:34:29.401Z] Setting up libffi8:amd64 (3.4.8-2) ...
[2026-07-07T02:34:29.401Z] Setting up libtasn1-6:amd64 (4.20.0-2) ...
[2026-07-07T02:34:29.402Z] Setting up libp11-kit0:amd64 (0.25.5-3) ...
[2026-07-07T02:34:29.402Z] Setting up libgnutls30t64:amd64 (3.8.9-3+deb13u4) ...
[2026-07-07T02:34:29.402Z] Setting up wget (1.25.0-2) ...
[2026-07-07T02:34:29.403Z] Processing triggers for libc-bin (2.41-12+deb13u3) ...
[2026-07-07T02:34:31.076Z] removing wget
[2026-07-07T02:34:31.087Z]
Reading package lists... 0%
[2026-07-07T02:34:31.132Z]
Reading package lists... 0%
[2026-07-07T02:34:31.148Z]
Reading package lists... 0%
[2026-07-07T02:34:31.393Z]
Reading package lists... 97%
Reading package lists... 97%
[2026-07-07T02:34:31.393Z]
Reading package lists... 97%
Reading package lists... 97%
[2026-07-07T02:34:31.399Z]
Reading package lists... 99%
Reading package lists... 99%
[2026-07-07T02:34:31.403Z]
Reading package lists... Done
[2026-07-07T02:34:31.411Z]
Building dependency tree... 0%
Building dependency tree... 0%
[2026-07-07T02:34:31.421Z]
Building dependency tree... 50%
Building dependency tree... 50%
[2026-07-07T02:34:31.475Z]
Building dependency tree... Done
Reading state information... 0%
Reading state information... 1%
Reading state information... Done
[2026-07-07T02:34:31.568Z] The following packages will be REMOVED:
[2026-07-07T02:34:31.568Z] libffi8* libgnutls30t64* libp11-kit0* libpsl5t64* libtasn1-6* wget*
[2026-07-07T02:34:31.572Z] 0 upgraded, 0 newly installed, 6 to remove and 0 not upgraded.
[2026-07-07T02:34:31.575Z] After this operation, 9691 kB disk space will be freed.
[2026-07-07T02:34:31.660Z] (Reading database ...
[2026-07-07T02:34:31.662Z] (Reading database ... 5%
[2026-07-07T02:34:31.663Z] (Reading database ... 10%
[2026-07-07T02:34:31.663Z] (Reading database ... 15%
[2026-07-07T02:34:31.663Z] (Reading database ... 20%
[2026-07-07T02:34:31.664Z] (Reading database ... 25%
[2026-07-07T02:34:31.664Z] (Reading database ... 30%
[2026-07-07T02:34:31.664Z] (Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 5698 files and directories currently installed.)
[2026-07-07T02:34:31.664Z] Removing wget (1.25.0-2) ...
[2026-07-07T02:34:31.667Z] Removing libgnutls30t64:amd64 (3.8.9-3+deb13u4) ...
[2026-07-07T02:34:31.668Z] Removing libp11-kit0:amd64 (0.25.5-3) ...
[2026-07-07T02:34:31.669Z] Removing libffi8:amd64 (3.4.8-2) ...
[2026-07-07T02:34:31.670Z] Removing libpsl5t64:amd64 (0.21.2-1.1+b1) ...
[2026-07-07T02:34:31.671Z] Removing libtasn1-6:amd64 (4.20.0-2) ...
[2026-07-07T02:34:31.676Z] Processing triggers for libc-bin (2.41-12+deb13u3) ...
[2026-07-07T02:34:31.694Z] (Reading database ...
[2026-07-07T02:34:31.696Z] (Reading database ... 5%
[2026-07-07T02:34:31.697Z] (Reading database ... 10%
[2026-07-07T02:34:31.697Z] (Reading database ... 15%
[2026-07-07T02:34:31.698Z] (Reading database ... 20%
[2026-07-07T02:34:31.698Z] (Reading database ... 25%
[2026-07-07T02:34:31.699Z] (Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 5544 files and directories currently installed.)
[2026-07-07T02:34:31.699Z] Purging configuration files for wget (1.25.0-2) ...
[2026-07-07T02:34:31.726Z] revert back apt lists
[2026-07-07T02:34:31.745Z] nanolayer
[2026-07-07T02:34:34.742Z] 'install.sh' filtered by '.tar.gz$'
'install.sh.minisig' filtered by '.tar.gz$'
'install.sh.sig' filtered by '.tar.gz$'
'mise-v2026.7.0-linux-arm64' filtered by '.tar.gz$'
'mise-v2026.7.0-linux-arm64-musl' filtered by '.tar.gz$'
'mise-v2026.7.0-linux-arm64-musl.tar.xz' filtered by '.tar.gz$'
'mise-v2026.7.0-linux-arm64-musl.tar.zst' filtered by '.tar.gz$'
'mise-v2026.7.0-linux-arm64.tar.xz' filtered by '.tar.gz$'
'mise-v2026.7.0-linux-arm64.tar.zst' filtered by '.tar.gz$'
'mise-v2026.7.0-linux-armv7' filtered by '.tar.gz$'
'mise-v2026.7.0-linux-armv7-musl' filtered by '.tar.gz$'
'mise-v2026.7.0-linux-armv7-musl.tar.xz' filtered by '.tar.gz$'
'mise-v2026.7.0-linux-armv7-musl.tar.zst' filtered by '.tar.gz$'
'mise-v2026.7.0-linux-armv7.tar.xz' filtered by '.tar.gz$'
'mise-v2026.7.0-linux-armv7.tar.zst' filtered by '.tar.gz$'
'mise-v2026.7.0-linux-x64' filtered by '.tar.gz$'
'mise-v2026.7.0-linux-x64-musl' filtered by '.tar.gz$'
'mise-v2026.7.0-linux-x64-musl.tar.xz' filtered by '.tar.gz$'
'mise-v2026.7.0-linux-x64-musl.tar.zst' filtered by '.tar.gz$'
'mise-v2026.7.0-linux-x64.tar.xz' filtered by '.tar.gz$'
'mise-v2026.7.0-linux-x64.tar.zst' filtered by '.tar.gz$'
'mise-v2026.7.0-macos-arm64' filtered by '.tar.gz$'
'mise-v2026.7.0-macos-arm64.tar.xz' filtered by '.tar.gz$'
'mise-v2026.7.0-macos-arm64.tar.zst' filtered by '.tar.gz$'
'mise-v2026.7.0-macos-x64' filtered by '.tar.gz$'
'mise-v2026.7.0-macos-x64.tar.xz' filtered by '.tar.gz$'
'mise-v2026.7.0-macos-x64.tar.zst' filtered by '.tar.gz$'
'mise-v2026.7.0-windows-arm64.exe' filtered by '.tar.gz$'
'mise-v2026.7.0-windows-arm64.zip' filtered by '.tar.gz$'
'mise-v2026.7.0-windows-x64.exe' filtered by '.tar.gz$'
'mise-v2026.7.0-windows-x64.zip' filtered by '.tar.gz$'
'SHASUMS256.asc' filtered by '.tar.gz$'
'SHASUMS256.txt' filtered by '.tar.gz$'
'SHASUMS256.txt.minisig' filtered by '.tar.gz$'
'SHASUMS512.asc' filtered by '.tar.gz$'
'SHASUMS512.txt' filtered by '.tar.gz$'
'SHASUMS512.txt.minisig' filtered by '.tar.gz$'
'v2026.7.0.tar.gz.sig' filtered by '.tar.gz$'
[2026-07-07T02:34:34.743Z] asset regex: .tar.gz$ has filtered assets down to 8 candidates: ['mise-v2026.7.0-linux-arm64-musl.tar.gz', 'mise-v2026.7.0-linux-arm64.tar.gz', 'mise-v2026.7.0-linux-armv7-musl.tar.gz', 'mise-v2026.7.0-linux-armv7.tar.gz', 'mise-v2026.7.0-linux-x64-musl.tar.gz', 'mise-v2026.7.0-linux-x64.tar.gz', 'mise-v2026.7.0-macos-arm64.tar.gz', 'mise-v2026.7.0-macos-x64.tar.gz']. Proceding to builtin filters
[2026-07-07T02:34:34.748Z] 'mise-v2026.7.0-linux-arm64-musl.tar.gz' filtered by '([Aa]rm64|ARM64)' (negative)
'mise-v2026.7.0-linux-arm64.tar.gz' filtered by '([Aa]rm64|ARM64)' (negative)
'mise-v2026.7.0-linux-armv7-musl.tar.gz' filtered by '([Aa][Rr][Mm]v7)' (negative)
'mise-v2026.7.0-linux-armv7.tar.gz' filtered by '([Aa][Rr][Mm]v7)' (negative)
[2026-07-07T02:34:34.751Z] 'mise-v2026.7.0-macos-arm64.tar.gz' filtered by '([Aa]rm64|ARM64)' (negative)
'mise-v2026.7.0-macos-x64.tar.gz' filtered by '([Mm]ac[Oo][Ss]|[Mm]ac\-[Oo][Ss]|\-osx\-|_osx_|[Dd]arwin|\.dmg)' (negative)
[2026-07-07T02:34:34.752Z] 'mise-v2026.7.0-linux-x64-musl.tar.gz' filtered by '(?i)(debian)'
'mise-v2026.7.0-linux-x64.tar.gz' filtered by '(?i)(debian)'
'mise-v2026.7.0-linux-x64-musl.tar.gz' filtered by '.*static.*'
'mise-v2026.7.0-linux-x64.tar.gz' filtered by '.*static.*'
'mise-v2026.7.0-linux-x64-musl.tar.gz' filtered by '(?i)(debian)'
'mise-v2026.7.0-linux-x64.tar.gz' filtered by '(?i)(debian)'
[2026-07-07T02:34:34.753Z] 'mise-v2026.7.0-linux-x64-musl.tar.gz' filtered by '(?i)(alpine|musl)' (negative)
[2026-07-07T02:34:34.753Z] resolved asset: mise-v2026.7.0-linux-x64.tar.gz
[2026-07-07T02:34:35.489Z] asset recognized as an archive file
[2026-07-07T02:34:35.991Z] binary members found in archive are: ['mise/bin/mise']
[2026-07-07T02:34:36.489Z] archive recognized as library (contains additional files outside of requested binaries)
extracting mise-v2026.7.0-linux-x64.tar.gz into /usr/local/lib/mise
[2026-07-07T02:34:37.033Z] linking /usr/local/lib/mise/mise/bin/mise to /usr/local/bin/mise
[2026-07-07T02:34:37.084Z] Done!
[2026-07-07T02:34:38.145Z] --> 6494a6903206
[2026-07-07T02:34:38.155Z] [2/2] STEP 7/13: ENV CARGO_HOME="/usr/local/cargo"
[2026-07-07T02:34:38.189Z] --> 453aa6374849
[2026-07-07T02:34:38.198Z] [2/2] STEP 8/13: ENV RUSTUP_HOME="/usr/local/rustup"
[2026-07-07T02:34:38.233Z] --> 8bd587404275
[2026-07-07T02:34:38.242Z] [2/2] STEP 9/13: ENV PATH="/usr/local/cargo/bin:${PATH}"
[2026-07-07T02:34:38.279Z] --> abd0f6576b8a
[2026-07-07T02:34:38.289Z] [2/2] STEP 10/13: RUN --mount=type=bind,from=dev_containers_feature_content_source,source=rust_1,target=/tmp/build-features-src/rust_1 cp -ar /tmp/build-features-src/rust_1 /tmp/dev-container-features && chmod -R 0755 /tmp/dev-container-features/rust_1 && cd /tmp/dev-container-features/rust_1 && chmod +x ./devcontainer-features-install.sh && ./devcontainer-features-install.sh && rm -rf /tmp/dev-container-features/rust_1
[2026-07-07T02:34:38.712Z] ===========================================================================
Feature : Rust
Description : Installs Rust, common Rust utilities, and their required dependencies
Id : ghcr.io/devcontainers/features/rust
Version : 1.5.0
Documentation : https://github.com/devcontainers/features/tree/main/src/rust
Options :
VERSION="latest"
PROFILE="minimal"
TARGETS=""
COMPONENTS="rust-analyzer,rust-src,rustfmt,clippy"
===========================================================================
[2026-07-07T02:34:38.714Z] Detected package manager: apt
[2026-07-07T02:34:38.727Z] Installing required dependencies...
[2026-07-07T02:34:38.771Z] Running apt-get update...
[2026-07-07T02:34:39.187Z] Get:1 http://deb.debian.org/debian trixie InRelease [140 kB]
[2026-07-07T02:34:39.540Z] Get:2 http://deb.debian.org/debian trixie-updates InRelease [47.3 kB]
[2026-07-07T02:34:39.671Z] Get:3 http://deb.debian.org/debian-security trixie-security InRelease [43.4 kB]
[2026-07-07T02:34:39.803Z] Get:4 http://deb.debian.org/debian trixie/main amd64 Packages [9671 kB]
[2026-07-07T02:34:40.465Z] Get:5 http://deb.debian.org/debian trixie-updates/main amd64 Packages [5412 B]
[2026-07-07T02:34:40.582Z] Get:6 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [224 kB]
[2026-07-07T02:34:40.955Z] Fetched 10.1 MB in 2s (4702 kB/s)
Reading package lists...
[2026-07-07T02:34:41.254Z]
[2026-07-07T02:34:41.289Z] Reading package lists...
[2026-07-07T02:34:41.603Z]
[2026-07-07T02:34:41.610Z] Building dependency tree...
[2026-07-07T02:34:41.674Z]
Reading state information...
[2026-07-07T02:34:41.768Z] The following additional packages will be installed:
adduser binutils binutils-common binutils-x86-64-linux-gnu cpp cpp-14
cpp-14-x86-64-linux-gnu cpp-x86-64-linux-gnu dirmngr gcc-14
gcc-14-x86-64-linux-gnu gcc-x86-64-linux-gnu git-man gnupg gnupg-l10n gpg
gpg-agent gpgconf gpgsm libasan8 libassuan9 libatomic1 libbinutils
libbrotli1 libc-dev-bin libcc1-0 libcom-err2 libcrypt-dev libctf-nobfd0
libctf0 libcurl3t64-gnutls libcurl4t64 liberror-perl libexpat1 libffi8
libgcc-14-dev libgcrypt20 libgdbm-compat4t64 libgdbm6t64 libgnutls30t64
libgomp1 libgpg-error0 libgprofng0 libgssapi-krb5-2 libhwasan0 libisl23
libitm1 libjansson4 libk5crypto3 libkeyutils1 libkrb5-3 libkrb5support0
libksba8 libldap2 liblsan0 libmpc3 libmpfr6 libncursesw6 libnghttp2-14
libnghttp3-9 libngtcp2-16 libngtcp2-crypto-gnutls8 libnpth0t64 libp11-kit0
[2026-07-07T02:34:41.768Z] libperl5.40 libpsl5t64 libquadmath0 libreadline8t64 librtmp1 libsasl2-2
libsasl2-modules-db libsframe1 libssh2-1t64 libtasn1-6 libtsan2 libubsan1
linux-libc-dev perl perl-modules-5.40 pinentry-curses readline-common
[2026-07-07T02:34:41.768Z] rpcsvc-proto
[2026-07-07T02:34:41.769Z] Suggested packages:
liblocale-gettext-perl cron quota binutils-doc gprofng-gui binutils-gold
cpp-doc gcc-14-locales cpp-14-doc dbus-user-session libpam-systemd
pinentry-gnome3 tor gcc-multilib make manpages-dev autoconf automake libtool
flex bison gdb gcc-doc gcc-14-multilib gcc-14-doc gdb-x86-64-linux-gnu
gettext-base git-doc git-email git-gui gitk gitweb git-cvs git-mediawiki
git-svn gpg-wks-server parcimonie xloadimage scdaemon tpm2daemon
libc-devtools glibc-doc rng-tools gdbm-l10n gnutls-bin krb5-doc krb5-user
sensible-utils perl-doc libterm-readline-gnu-perl
| libterm-readline-perl-perl libtap-harness-archive-perl pinentry-doc
readline-doc
Recommended packages:
bash-completion patch less ssh-client gnupg-utils gpg-wks-client gpgv
manpages manpages-dev libgpg-error-l10n krb5-locales libldap-common libgpm2
publicsuffix libsasl2-modules netbase
[2026-07-07T02:34:41.983Z] The following NEW packages will be installed:
adduser binutils binutils-common binutils-x86-64-linux-gnu cpp cpp-14
cpp-14-x86-64-linux-gnu cpp-x86-64-linux-gnu curl dirmngr gcc gcc-14
gcc-14-x86-64-linux-gnu gcc-x86-64-linux-gnu git git-man gnupg gnupg-l10n
gnupg2 gpg gpg-agent gpgconf gpgsm libasan8 libassuan9 libatomic1
libbinutils libbrotli1 libc-dev-bin libc6-dev libcc1-0 libcom-err2
libcrypt-dev libctf-nobfd0 libctf0 libcurl3t64-gnutls libcurl4t64
liberror-perl libexpat1 libffi8 libgcc-14-dev libgcrypt20 libgdbm-compat4t64
[2026-07-07T02:34:41.983Z] libgdbm6t64 libgnutls30t64 libgomp1 libgpg-error0 libgprofng0
libgssapi-krb5-2 libhwasan0 libisl23 libitm1 libjansson4 libk5crypto3
libkeyutils1 libkrb5-3 libkrb5support0 libksba8 libldap2 liblsan0 libmpc3
libmpfr6 libncursesw6 libnghttp2-14 libnghttp3-9 libngtcp2-16
libngtcp2-crypto-gnutls8 libnpth0t64 libp11-kit0 libperl5.40 libpsl5t64
[2026-07-07T02:34:41.983Z] libquadmath0 libreadline8t64 librtmp1 libsasl2-2 libsasl2-modules-db
libsframe1 libssh2-1t64 libtasn1-6 libtsan2 libubsan1 linux-libc-dev perl
[2026-07-07T02:34:41.984Z] perl-modules-5.40 pinentry-curses readline-common rpcsvc-proto
[2026-07-07T02:34:42.238Z] 0 upgraded, 87 newly installed, 0 to remove and 0 not upgraded.
Need to get 85.5 MB of archives.
After this operation, 350 MB of additional disk space will be used.
Get:1 http://deb.debian.org/debian trixie/main amd64 libexpat1 amd64 2.7.1-2 [108 kB]
[2026-07-07T02:34:42.514Z] Get:2 http://deb.debian.org/debian trixie/main amd64 adduser all 3.152 [191 kB]
[2026-07-07T02:34:42.642Z] Get:3 http://deb.debian.org/debian trixie/main amd64 readline-common all 8.2-6 [69.4 kB]
[2026-07-07T02:34:42.660Z] Get:4 http://deb.debian.org/debian trixie/main amd64 perl-modules-5.40 all 5.40.1-6 [3019 kB]
[2026-07-07T02:34:43.017Z] Get:5 http://deb.debian.org/debian trixie/main amd64 libgdbm6t64 amd64 1.24-2 [75.2 kB]
[2026-07-07T02:34:43.020Z] Get:6 http://deb.debian.org/debian trixie/main amd64 libgdbm-compat4t64 amd64 1.24-2 [50.3 kB]
[2026-07-07T02:34:43.139Z] Get:7 http://deb.debian.org/debian trixie/main amd64 libperl5.40 amd64 5.40.1-6 [4341 kB]
[2026-07-07T02:34:43.382Z] Get:8 http://deb.debian.org/debian trixie/main amd64 perl amd64 5.40.1-6 [267 kB]
[2026-07-07T02:34:43.386Z] Get:9 http://deb.debian.org/debian trixie/main amd64 libsframe1 amd64 2.44-3 [78.4 kB]
[2026-07-07T02:34:43.501Z] Get:10 http://deb.debian.org/debian trixie/main amd64 binutils-common amd64 2.44-3 [2509 kB]
[2026-07-07T02:34:43.639Z] Get:11 http://deb.debian.org/debian trixie/main amd64 libbinutils amd64 2.44-3 [534 kB]
[2026-07-07T02:34:43.644Z] Get:12 http://deb.debian.org/debian trixie/main amd64 libgprofng0 amd64 2.44-3 [808 kB]
[2026-07-07T02:34:43.809Z] Get:13 http://deb.debian.org/debian trixie/main amd64 libctf-nobfd0 amd64 2.44-3 [156 kB]
[2026-07-07T02:34:43.811Z] Get:14 http://deb.debian.org/debian trixie/main amd64 libctf0 amd64 2.44-3 [88.6 kB]
[2026-07-07T02:34:43.812Z] Get:15 http://deb.debian.org/debian trixie/main amd64 libjansson4 amd64 2.14-2+b3 [39.8 kB]
[2026-07-07T02:34:43.929Z] Get:16 http://deb.debian.org/debian trixie/main amd64 binutils-x86-64-linux-gnu amd64 2.44-3 [1014 kB]
[2026-07-07T02:34:44.053Z] Get:17 http://deb.debian.org/debian trixie/main amd64 binutils amd64 2.44-3 [265 kB]
[2026-07-07T02:34:44.172Z] Get:18 http://deb.debian.org/debian trixie/main amd64 libisl23 amd64 0.27-1 [659 kB]
[2026-07-07T02:34:44.295Z] Get:19 http://deb.debian.org/debian trixie/main amd64 libmpfr6 amd64 4.2.2-1 [729 kB]
[2026-07-07T02:34:44.301Z] Get:20 http://deb.debian.org/debian trixie/main amd64 libmpc3 amd64 1.3.1-1+b3 [52.2 kB]
[2026-07-07T02:34:44.301Z] Get:21 http://deb.debian.org/debian trixie/main amd64 cpp-14-x86-64-linux-gnu amd64 14.2.0-19 [11.0 MB]
[2026-07-07T02:34:44.558Z] Get:22 http://deb.debian.org/debian trixie/main amd64 cpp-14 amd64 14.2.0-19 [1280 B]
Get:23 http://deb.debian.org/debian trixie/main amd64 cpp-x86-64-linux-gnu amd64 4:14.2.0-1 [4840 B]
Get:24 http://deb.debian.org/debian trixie/main amd64 cpp amd64 4:14.2.0-1 [1568 B]
Get:25 http://deb.debian.org/debian trixie/main amd64 libbrotli1 amd64 1.1.0-2+b7 [307 kB]
[2026-07-07T02:34:44.559Z] Get:26 http://deb.debian.org/debian-security trixie-security/main amd64 libkrb5support0 amd64 1.21.3-5+deb13u1 [33.1 kB]
[2026-07-07T02:34:44.560Z] Get:27 http://deb.debian.org/debian trixie/main amd64 libcom-err2 amd64 1.47.2-3+b11 [25.0 kB]
Get:28 http://deb.debian.org/debian-security trixie-security/main amd64 libk5crypto3 amd64 1.21.3-5+deb13u1 [81.2 kB]
[2026-07-07T02:34:44.560Z] Get:29 http://deb.debian.org/debian trixie/main amd64 libkeyutils1 amd64 1.6.3-6 [9456 B]
[2026-07-07T02:34:44.678Z] Get:30 http://deb.debian.org/debian-security trixie-security/main amd64 libkrb5-3 amd64 1.21.3-5+deb13u1 [326 kB]
[2026-07-07T02:34:44.800Z] Get:31 http://deb.debian.org/debian-security trixie-security/main amd64 libgssapi-krb5-2 amd64 1.21.3-5+deb13u1 [138 kB]
[2026-07-07T02:34:44.801Z] Get:32 http://deb.debian.org/debian trixie/main amd64 libsasl2-modules-db amd64 2.1.28+dfsg1-9 [19.8 kB]
[2026-07-07T02:34:44.802Z] Get:33 http://deb.debian.org/debian trixie/main amd64 libsasl2-2 amd64 2.1.28+dfsg1-9 [57.5 kB]
[2026-07-07T02:34:44.803Z] Get:34 http://deb.debian.org/debian trixie/main amd64 libldap2 amd64 2.6.10+dfsg-1 [194 kB]
[2026-07-07T02:34:44.807Z] Get:35 http://deb.debian.org/debian-security trixie-security/main amd64 libnghttp2-14 amd64 1.64.0-1.1+deb13u1 [76.2 kB]
[2026-07-07T02:34:44.807Z] Get:36 http://deb.debian.org/debian trixie/main amd64 libnghttp3-9 amd64 1.8.0-1 [67.7 kB]
[2026-07-07T02:34:44.808Z] Get:37 http://deb.debian.org/debian trixie/main amd64 libpsl5t64 amd64 0.21.2-1.1+b1 [57.2 kB]
[2026-07-07T02:34:44.809Z] Get:38 http://deb.debian.org/debian trixie/main amd64 libffi8 amd64 3.4.8-2 [24.1 kB]
[2026-07-07T02:34:44.923Z] Get:39 http://deb.debian.org/debian trixie/main amd64 libp11-kit0 amd64 0.25.5-3 [425 kB]
[2026-07-07T02:34:44.929Z] Get:40 http://deb.debian.org/debian trixie/main amd64 libtasn1-6 amd64 4.20.0-2 [49.9 kB]
[2026-07-07T02:34:45.027Z] Get:41 http://deb.debian.org/debian-security trixie-security/main amd64 libgnutls30t64 amd64 3.8.9-3+deb13u4 [1469 kB]
[2026-07-07T02:34:45.042Z] Get:42 http://deb.debian.org/debian trixie/main amd64 librtmp1 amd64 2.4+20151223.gitfa8646d.1-2+b5 [58.8 kB]
[2026-07-07T02:34:45.044Z] Get:43 http://deb.debian.org/debian-security trixie-security/main amd64 libssh2-1t64 amd64 1.11.1-1+deb13u1 [245 kB]
[2026-07-07T02:34:45.162Z] Get:44 http://deb.debian.org/debian trixie/main amd64 libcurl4t64 amd64 8.14.1-2+deb13u3 [391 kB]
[2026-07-07T02:34:45.282Z] Get:45 http://deb.debian.org/debian trixie/main amd64 curl amd64 8.14.1-2+deb13u3 [270 kB]
[2026-07-07T02:34:45.287Z] Get:46 http://deb.debian.org/debian trixie/main amd64 libgpg-error0 amd64 1.51-4 [82.1 kB]
[2026-07-07T02:34:45.287Z] Get:47 http://deb.debian.org/debian trixie/main amd64 libassuan9 amd64 3.0.2-2 [61.5 kB]
[2026-07-07T02:34:45.403Z] Get:48 http://deb.debian.org/debian-security trixie-security/main amd64 libgcrypt20 amd64 1.11.0-7+deb13u1 [843 kB]
[2026-07-07T02:34:45.528Z] Get:49 http://deb.debian.org/debian trixie/main amd64 libreadline8t64 amd64 8.2-6 [169 kB]
[2026-07-07T02:34:45.531Z] Get:50 http://deb.debian.org/debian trixie/main amd64 gpgconf amd64 2.4.7-21+deb13u1+b3 [129 kB]
[2026-07-07T02:34:45.647Z] Get:51 http://deb.debian.org/debian trixie/main amd64 libksba8 amd64 1.6.7-2+b1 [136 kB]
[2026-07-07T02:34:45.650Z] Get:52 http://deb.debian.org/debian trixie/main amd64 libnpth0t64 amd64 1.8-3 [23.2 kB]
[2026-07-07T02:34:45.651Z] Get:53 http://deb.debian.org/debian trixie/main amd64 dirmngr amd64 2.4.7-21+deb13u1+b3 [384 kB]
[2026-07-07T02:34:45.652Z] Get:54 http://deb.debian.org/debian trixie/main amd64 libcc1-0 amd64 14.2.0-19 [42.8 kB]
Get:55 http://deb.debian.org/debian trixie/main amd64 libgomp1 amd64 14.2.0-19 [137 kB]
[2026-07-07T02:34:45.653Z] Get:56 http://deb.debian.org/debian trixie/main amd64 libitm1 amd64 14.2.0-19 [26.0 kB]
[2026-07-07T02:34:45.653Z] Get:57 http://deb.debian.org/debian trixie/main amd64 libatomic1 amd64 14.2.0-19 [9308 B]
[2026-07-07T02:34:45.771Z] Get:58 http://deb.debian.org/debian trixie/main amd64 libasan8 amd64 14.2.0-19 [2725 kB]
[2026-07-07T02:34:45.911Z] Get:59 http://deb.debian.org/debian trixie/main amd64 liblsan0 amd64 14.2.0-19 [1204 kB]
[2026-07-07T02:34:46.039Z] Get:60 http://deb.debian.org/debian trixie/main amd64 libtsan2 amd64 14.2.0-19 [2460 kB]
[2026-07-07T02:34:46.059Z] Get:61 http://deb.debian.org/debian trixie/main amd64 libubsan1 amd64 14.2.0-19 [1074 kB]
[2026-07-07T02:34:46.187Z] Get:62 http://deb.debian.org/debian trixie/main amd64 libhwasan0 amd64 14.2.0-19 [1488 kB]
[2026-07-07T02:34:46.310Z] Get:63 http://deb.debian.org/debian trixie/main amd64 libquadmath0 amd64 14.2.0-19 [145 kB]
[2026-07-07T02:34:46.429Z] Get:64 http://deb.debian.org/debian trixie/main amd64 libgcc-14-dev amd64 14.2.0-19 [2672 kB]
[2026-07-07T02:34:46.569Z] Get:65 http://deb.debian.org/debian trixie/main amd64 gcc-14-x86-64-linux-gnu amd64 14.2.0-19 [21.4 MB]
[2026-07-07T02:34:47.000Z] Get:66 http://deb.debian.org/debian trixie/main amd64 gcc-14 amd64 14.2.0-19 [540 kB]
[2026-07-07T02:34:47.005Z] Get:67 http://deb.debian.org/debian trixie/main amd64 gcc-x86-64-linux-gnu amd64 4:14.2.0-1 [1436 B]
Get:68 http://deb.debian.org/debian trixie/main amd64 gcc amd64 4:14.2.0-1 [5136 B]
Get:69 http://deb.debian.org/debian trixie/main amd64 libngtcp2-16 amd64 1.11.0-1+deb13u1 [132 kB]
[2026-07-07T02:34:47.005Z] Get:70 http://deb.debian.org/debian trixie/main amd64 libngtcp2-crypto-gnutls8 amd64 1.11.0-1+deb13u1 [29.5 kB]
[2026-07-07T02:34:47.123Z] Get:71 http://deb.debian.org/debian trixie/main amd64 libcurl3t64-gnutls amd64 8.14.1-2+deb13u3 [384 kB]
[2026-07-07T02:34:47.128Z] Get:72 http://deb.debian.org/debian trixie/main amd64 liberror-perl all 0.17030-1 [26.9 kB]
[2026-07-07T02:34:47.262Z] Get:73 http://deb.debian.org/debian trixie/main amd64 git-man all 1:2.47.3-0+deb13u1 [2205 kB]
[2026-07-07T02:34:47.400Z] Get:74 http://deb.debian.org/debian trixie/main amd64 git amd64 1:2.47.3-0+deb13u1 [8862 kB]
[2026-07-07T02:34:47.774Z] Get:75 http://deb.debian.org/debian trixie/main amd64 gnupg-l10n all 2.4.7-21+deb13u1 [749 kB]
[2026-07-07T02:34:47.902Z] Get:76 http://deb.debian.org/debian trixie/main amd64 gpg amd64 2.4.7-21+deb13u1+b3 [635 kB]
[2026-07-07T02:34:48.028Z] Get:77 http://deb.debian.org/debian trixie/main amd64 libncursesw6 amd64 6.5+20250216-2 [135 kB]
[2026-07-07T02:34:48.030Z] Get:78 http://deb.debian.org/debian trixie/main amd64 pinentry-curses amd64 1.3.1-2 [86.4 kB]
[2026-07-07T02:34:48.148Z] Get:79 http://deb.debian.org/debian trixie/main amd64 gpg-agent amd64 2.4.7-21+deb13u1+b3 [271 kB]
[2026-07-07T02:34:48.267Z] Get:80 http://deb.debian.org/debian trixie/main amd64 gpgsm amd64 2.4.7-21+deb13u1+b3 [276 kB]
[2026-07-07T02:34:48.270Z] Get:81 http://deb.debian.org/debian trixie/main amd64 gnupg all 2.4.7-21+deb13u1 [417 kB]
[2026-07-07T02:34:48.273Z] Get:82 http://deb.debian.org/debian trixie/main amd64 gnupg2 all 2.4.7-21+deb13u1 [16.3 kB]
[2026-07-07T02:34:48.274Z] Get:83 http://deb.debian.org/debian trixie/main amd64 libc-dev-bin amd64 2.41-12+deb13u3 [59.8 kB]
[2026-07-07T02:34:48.391Z] Get:84 http://deb.debian.org/debian-security trixie-security/main amd64 linux-libc-dev all 6.12.95-1 [2852 kB]
[2026-07-07T02:34:48.417Z] Get:85 http://deb.debian.org/debian trixie/main amd64 libcrypt-dev amd64 1:4.4.38-1 [119 kB]
[2026-07-07T02:34:48.418Z] Get:86 http://deb.debian.org/debian trixie/main amd64 rpcsvc-proto amd64 1.4.3-1 [63.3 kB]
[2026-07-07T02:34:48.536Z] Get:87 http://deb.debian.org/debian trixie/main amd64 libc6-dev amd64 2.41-12+deb13u3 [1992 kB]
[2026-07-07T02:34:49.621Z] Fetched 85.5 MB in 7s (13.0 MB/s)
[2026-07-07T02:34:49.669Z] Selecting previously unselected package libexpat1:amd64.
(Reading database ...
[2026-07-07T02:34:49.673Z] (Reading database ... 5%
[2026-07-07T02:34:49.673Z] (Reading database ... 10%
[2026-07-07T02:34:49.674Z] (Reading database ... 15%
[2026-07-07T02:34:49.675Z] (Reading database ... 20%
[2026-07-07T02:34:49.675Z] (Reading database ... 25%
[2026-07-07T02:34:49.675Z] (Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
[2026-07-07T02:34:49.676Z] (Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
[2026-07-07T02:34:49.676Z] (Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 5543 files and directories currently installed.)
[2026-07-07T02:34:49.676Z] Preparing to unpack .../libexpat1_2.7.1-2_amd64.deb ...
[2026-07-07T02:34:49.676Z] Unpacking libexpat1:amd64 (2.7.1-2) ...
[2026-07-07T02:34:49.687Z] Selecting previously unselected package adduser.
[2026-07-07T02:34:49.687Z] Preparing to unpack .../archives/adduser_3.152_all.deb ...
[2026-07-07T02:34:49.688Z] Unpacking adduser (3.152) ...
[2026-07-07T02:34:49.713Z] Setting up adduser (3.152) ...
[2026-07-07T02:34:49.736Z] Selecting previously unselected package readline-common.
(Reading database ...
[2026-07-07T02:34:49.737Z] (Reading database ... 5%
[2026-07-07T02:34:49.738Z] (Reading database ... 10%
[2026-07-07T02:34:49.739Z] (Reading database ... 15%
[2026-07-07T02:34:49.739Z] (Reading database ... 20%
[2026-07-07T02:34:49.740Z] (Reading database ... 25%
[2026-07-07T02:34:49.741Z] (Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 5637 files and directories currently installed.)
[2026-07-07T02:34:49.741Z] Preparing to unpack .../00-readline-common_8.2-6_all.deb ...
[2026-07-07T02:34:49.742Z] Unpacking readline-common (8.2-6) ...
[2026-07-07T02:34:49.766Z] Selecting previously unselected package perl-modules-5.40.
[2026-07-07T02:34:49.767Z] Preparing to unpack .../01-perl-modules-5.40_5.40.1-6_all.deb ...
[2026-07-07T02:34:49.767Z] Unpacking perl-modules-5.40 (5.40.1-6) ...
[2026-07-07T02:34:49.918Z] Selecting previously unselected package libgdbm6t64:amd64.
[2026-07-07T02:34:49.919Z] Preparing to unpack .../02-libgdbm6t64_1.24-2_amd64.deb ...
[2026-07-07T02:34:49.919Z] Unpacking libgdbm6t64:amd64 (1.24-2) ...
[2026-07-07T02:34:49.927Z] Selecting previously unselected package libgdbm-compat4t64:amd64.
[2026-07-07T02:34:49.928Z] Preparing to unpack .../03-libgdbm-compat4t64_1.24-2_amd64.deb ...
[2026-07-07T02:34:49.928Z] Unpacking libgdbm-compat4t64:amd64 (1.24-2) ...
[2026-07-07T02:34:49.935Z] Selecting previously unselected package libperl5.40:amd64.
[2026-07-07T02:34:49.935Z] Preparing to unpack .../04-libperl5.40_5.40.1-6_amd64.deb ...
[2026-07-07T02:34:49.935Z] Unpacking libperl5.40:amd64 (5.40.1-6) ...
[2026-07-07T02:34:50.078Z] Selecting previously unselected package perl.
[2026-07-07T02:34:50.079Z] Preparing to unpack .../05-perl_5.40.1-6_amd64.deb ...
[2026-07-07T02:34:50.079Z] Unpacking perl (5.40.1-6) ...
[2026-07-07T02:34:50.097Z] Selecting previously unselected package libsframe1:amd64.
[2026-07-07T02:34:50.097Z] Preparing to unpack .../06-libsframe1_2.44-3_amd64.deb ...
[2026-07-07T02:34:50.097Z] Unpacking libsframe1:amd64 (2.44-3) ...
[2026-07-07T02:34:50.113Z] Selecting previously unselected package binutils-common:amd64.
[2026-07-07T02:34:50.115Z] Preparing to unpack .../07-binutils-common_2.44-3_amd64.deb ...
[2026-07-07T02:34:50.115Z] Unpacking binutils-common:amd64 (2.44-3) ...
[2026-07-07T02:34:50.219Z] Selecting previously unselected package libbinutils:amd64.
[2026-07-07T02:34:50.219Z] Preparing to unpack .../08-libbinutils_2.44-3_amd64.deb ...
[2026-07-07T02:34:50.219Z] Unpacking libbinutils:amd64 (2.44-3) ...
[2026-07-07T02:34:50.250Z] Selecting previously unselected package libgprofng0:amd64.
[2026-07-07T02:34:50.251Z] Preparing to unpack .../09-libgprofng0_2.44-3_amd64.deb ...
[2026-07-07T02:34:50.252Z] Unpacking libgprofng0:amd64 (2.44-3) ...
[2026-07-07T02:34:50.297Z] Selecting previously unselected package libctf-nobfd0:amd64.
[2026-07-07T02:34:50.297Z] Preparing to unpack .../10-libctf-nobfd0_2.44-3_amd64.deb ...
[2026-07-07T02:34:50.297Z] Unpacking libctf-nobfd0:amd64 (2.44-3) ...
[2026-07-07T02:34:50.313Z] Selecting previously unselected package libctf0:amd64.
[2026-07-07T02:34:50.315Z] Preparing to unpack .../11-libctf0_2.44-3_amd64.deb ...
[2026-07-07T02:34:50.316Z] Unpacking libctf0:amd64 (2.44-3) ...
[2026-07-07T02:34:50.334Z] Selecting previously unselected package libjansson4:amd64.
[2026-07-07T02:34:50.336Z] Preparing to unpack .../12-libjansson4_2.14-2+b3_amd64.deb ...
[2026-07-07T02:34:50.336Z] Unpacking libjansson4:amd64 (2.14-2+b3) ...
[2026-07-07T02:34:50.368Z] Selecting previously unselected package binutils-x86-64-linux-gnu.
[2026-07-07T02:34:50.370Z] Preparing to unpack .../13-binutils-x86-64-linux-gnu_2.44-3_amd64.deb ...
[2026-07-07T02:34:50.371Z] Unpacking binutils-x86-64-linux-gnu (2.44-3) ...
[2026-07-07T02:34:50.437Z] Selecting previously unselected package binutils.
[2026-07-07T02:34:50.437Z] Preparing to unpack .../14-binutils_2.44-3_amd64.deb ...
[2026-07-07T02:34:50.438Z] Unpacking binutils (2.44-3) ...
[2026-07-07T02:34:50.476Z] Selecting previously unselected package libisl23:amd64.
[2026-07-07T02:34:50.477Z] Preparing to unpack .../15-libisl23_0.27-1_amd64.deb ...
[2026-07-07T02:34:50.477Z] Unpacking libisl23:amd64 (0.27-1) ...
[2026-07-07T02:34:50.521Z] Selecting previously unselected package libmpfr6:amd64.
[2026-07-07T02:34:50.522Z] Preparing to unpack .../16-libmpfr6_4.2.2-1_amd64.deb ...
[2026-07-07T02:34:50.522Z] Unpacking libmpfr6:amd64 (4.2.2-1) ...
[2026-07-07T02:34:50.546Z] Selecting previously unselected package libmpc3:amd64.
[2026-07-07T02:34:50.547Z] Preparing to unpack .../17-libmpc3_1.3.1-1+b3_amd64.deb ...
[2026-07-07T02:34:50.548Z] Unpacking libmpc3:amd64 (1.3.1-1+b3) ...
[2026-07-07T02:34:50.574Z] Selecting previously unselected package cpp-14-x86-64-linux-gnu.
[2026-07-07T02:34:50.576Z] Preparing to unpack .../18-cpp-14-x86-64-linux-gnu_14.2.0-19_amd64.deb ...
[2026-07-07T02:34:50.577Z] Unpacking cpp-14-x86-64-linux-gnu (14.2.0-19) ...
[2026-07-07T02:34:50.866Z] Selecting previously unselected package cpp-14.
[2026-07-07T02:34:50.867Z] Preparing to unpack .../19-cpp-14_14.2.0-19_amd64.deb ...
[2026-07-07T02:34:50.867Z] Unpacking cpp-14 (14.2.0-19) ...
[2026-07-07T02:34:50.875Z] Selecting previously unselected package cpp-x86-64-linux-gnu.
[2026-07-07T02:34:50.876Z] Preparing to unpack .../20-cpp-x86-64-linux-gnu_4%3a14.2.0-1_amd64.deb ...
[2026-07-07T02:34:50.877Z] Unpacking cpp-x86-64-linux-gnu (4:14.2.0-1) ...
[2026-07-07T02:34:50.895Z] Selecting previously unselected package cpp.
[2026-07-07T02:34:50.897Z] Preparing to unpack .../21-cpp_4%3a14.2.0-1_amd64.deb ...
[2026-07-07T02:34:50.910Z] Unpacking cpp (4:14.2.0-1) ...
[2026-07-07T02:34:50.935Z] Selecting previously unselected package libbrotli1:amd64.
[2026-07-07T02:34:50.937Z] Preparing to unpack .../22-libbrotli1_1.1.0-2+b7_amd64.deb ...
[2026-07-07T02:34:50.938Z] Unpacking libbrotli1:amd64 (1.1.0-2+b7) ...
[2026-07-07T02:34:50.977Z] Selecting previously unselected package libkrb5support0:amd64.
[2026-07-07T02:34:50.978Z] Preparing to unpack .../23-libkrb5support0_1.21.3-5+deb13u1_amd64.deb ...
[2026-07-07T02:34:50.978Z] Unpacking libkrb5support0:amd64 (1.21.3-5+deb13u1) ...
[2026-07-07T02:34:50.994Z] Selecting previously unselected package libcom-err2:amd64.
[2026-07-07T02:34:50.995Z] Preparing to unpack .../24-libcom-err2_1.47.2-3+b11_amd64.deb ...
[2026-07-07T02:34:50.995Z] Unpacking libcom-err2:amd64 (1.47.2-3+b11) ...
[2026-07-07T02:34:51.021Z] Selecting previously unselected package libk5crypto3:amd64.
[2026-07-07T02:34:51.023Z] Preparing to unpack .../25-libk5crypto3_1.21.3-5+deb13u1_amd64.deb ...
[2026-07-07T02:34:51.024Z] Unpacking libk5crypto3:amd64 (1.21.3-5+deb13u1) ...
[2026-07-07T02:34:51.065Z] Selecting previously unselected package libkeyutils1:amd64.
[2026-07-07T02:34:51.067Z] Preparing to unpack .../26-libkeyutils1_1.6.3-6_amd64.deb ...
[2026-07-07T02:34:51.068Z] Unpacking libkeyutils1:amd64 (1.6.3-6) ...
[2026-07-07T02:34:51.093Z] Selecting previously unselected package libkrb5-3:amd64.
[2026-07-07T02:34:51.093Z] Preparing to unpack .../27-libkrb5-3_1.21.3-5+deb13u1_amd64.deb ...
[2026-07-07T02:34:51.093Z] Unpacking libkrb5-3:amd64 (1.21.3-5+deb13u1) ...
[2026-07-07T02:34:51.120Z] Selecting previously unselected package libgssapi-krb5-2:amd64.
[2026-07-07T02:34:51.121Z] Preparing to unpack .../28-libgssapi-krb5-2_1.21.3-5+deb13u1_amd64.deb ...
[2026-07-07T02:34:51.121Z] Unpacking libgssapi-krb5-2:amd64 (1.21.3-5+deb13u1) ...
[2026-07-07T02:34:51.162Z] Selecting previously unselected package libsasl2-modules-db:amd64.
[2026-07-07T02:34:51.165Z] Preparing to unpack .../29-libsasl2-modules-db_2.1.28+dfsg1-9_amd64.deb ...
[2026-07-07T02:34:51.166Z] Unpacking libsasl2-modules-db:amd64 (2.1.28+dfsg1-9) ...
[2026-07-07T02:34:51.194Z] Selecting previously unselected package libsasl2-2:amd64.
[2026-07-07T02:34:51.196Z] Preparing to unpack .../30-libsasl2-2_2.1.28+dfsg1-9_amd64.deb ...
[2026-07-07T02:34:51.197Z] Unpacking libsasl2-2:amd64 (2.1.28+dfsg1-9) ...
[2026-07-07T02:34:51.234Z] Selecting previously unselected package libldap2:amd64.
[2026-07-07T02:34:51.236Z] Preparing to unpack .../31-libldap2_2.6.10+dfsg-1_amd64.deb ...
[2026-07-07T02:34:51.237Z] Unpacking libldap2:amd64 (2.6.10+dfsg-1) ...
[2026-07-07T02:34:51.281Z] Selecting previously unselected package libnghttp2-14:amd64.
[2026-07-07T02:34:51.284Z] Preparing to unpack .../32-libnghttp2-14_1.64.0-1.1+deb13u1_amd64.deb ...
[2026-07-07T02:34:51.285Z] Unpacking libnghttp2-14:amd64 (1.64.0-1.1+deb13u1) ...
[2026-07-07T02:34:51.323Z] Selecting previously unselected package libnghttp3-9:amd64.
[2026-07-07T02:34:51.324Z] Preparing to unpack .../33-libnghttp3-9_1.8.0-1_amd64.deb ...
[2026-07-07T02:34:51.325Z] Unpacking libnghttp3-9:amd64 (1.8.0-1) ...
[2026-07-07T02:34:51.354Z] Selecting previously unselected package libpsl5t64:amd64.
[2026-07-07T02:34:51.356Z] Preparing to unpack .../34-libpsl5t64_0.21.2-1.1+b1_amd64.deb ...
[2026-07-07T02:34:51.357Z] Unpacking libpsl5t64:amd64 (0.21.2-1.1+b1) ...
[2026-07-07T02:34:51.390Z] Selecting previously unselected package libffi8:amd64.
[2026-07-07T02:34:51.392Z] Preparing to unpack .../35-libffi8_3.4.8-2_amd64.deb ...
[2026-07-07T02:34:51.393Z] Unpacking libffi8:amd64 (3.4.8-2) ...
[2026-07-07T02:34:51.421Z] Selecting previously unselected package libp11-kit0:amd64.
[2026-07-07T02:34:51.425Z] Preparing to unpack .../36-libp11-kit0_0.25.5-3_amd64.deb ...
[2026-07-07T02:34:51.426Z] Unpacking libp11-kit0:amd64 (0.25.5-3) ...
[2026-07-07T02:34:51.460Z] Selecting previously unselected package libtasn1-6:amd64.
[2026-07-07T02:34:51.461Z] Preparing to unpack .../37-libtasn1-6_4.20.0-2_amd64.deb ...
[2026-07-07T02:34:51.461Z] Unpacking libtasn1-6:amd64 (4.20.0-2) ...
[2026-07-07T02:34:51.493Z] Selecting previously unselected package libgnutls30t64:amd64.
[2026-07-07T02:34:51.497Z] Preparing to unpack .../38-libgnutls30t64_3.8.9-3+deb13u4_amd64.deb ...
[2026-07-07T02:34:51.498Z] Unpacking libgnutls30t64:amd64 (3.8.9-3+deb13u4) ...
[2026-07-07T02:34:51.554Z] Selecting previously unselected package librtmp1:amd64.
[2026-07-07T02:34:51.554Z] Preparing to unpack .../39-librtmp1_2.4+20151223.gitfa8646d.1-2+b5_amd64.deb ...
[2026-07-07T02:34:51.554Z] Unpacking librtmp1:amd64 (2.4+20151223.gitfa8646d.1-2+b5) ...
[2026-07-07T02:34:51.564Z] Selecting previously unselected package libssh2-1t64:amd64.
[2026-07-07T02:34:51.565Z] Preparing to unpack .../40-libssh2-1t64_1.11.1-1+deb13u1_amd64.deb ...
[2026-07-07T02:34:51.565Z] Unpacking libssh2-1t64:amd64 (1.11.1-1+deb13u1) ...
[2026-07-07T02:34:51.597Z] Selecting previously unselected package libcurl4t64:amd64.
[2026-07-07T02:34:51.600Z] Preparing to unpack .../41-libcurl4t64_8.14.1-2+deb13u3_amd64.deb ...
[2026-07-07T02:34:51.601Z] Unpacking libcurl4t64:amd64 (8.14.1-2+deb13u3) ...
[2026-07-07T02:34:51.631Z] Selecting previously unselected package curl.
[2026-07-07T02:34:51.632Z] Preparing to unpack .../42-curl_8.14.1-2+deb13u3_amd64.deb ...
[2026-07-07T02:34:51.632Z] Unpacking curl (8.14.1-2+deb13u3) ...
[2026-07-07T02:34:51.662Z] Selecting previously unselected package libgpg-error0:amd64.
[2026-07-07T02:34:51.664Z] Preparing to unpack .../43-libgpg-error0_1.51-4_amd64.deb ...
[2026-07-07T02:34:51.664Z] Unpacking libgpg-error0:amd64 (1.51-4) ...
[2026-07-07T02:34:51.684Z] Selecting previously unselected package libassuan9:amd64.
[2026-07-07T02:34:51.685Z] Preparing to unpack .../44-libassuan9_3.0.2-2_amd64.deb ...
Unpacking libassuan9:amd64 (3.0.2-2) ...
[2026-07-07T02:34:51.707Z] Selecting previously unselected package libgcrypt20:amd64.
[2026-07-07T02:34:51.708Z] Preparing to unpack .../45-libgcrypt20_1.11.0-7+deb13u1_amd64.deb ...
[2026-07-07T02:34:51.708Z] Unpacking libgcrypt20:amd64 (1.11.0-7+deb13u1) ...
[2026-07-07T02:34:51.746Z] Selecting previously unselected package libreadline8t64:amd64.
[2026-07-07T02:34:51.747Z] Preparing to unpack .../46-libreadline8t64_8.2-6_amd64.deb ...
[2026-07-07T02:34:51.751Z] Adding 'diversion of /lib/x86_64-linux-gnu/libhistory.so.8 to /lib/x86_64-linux-gnu/libhistory.so.8.usr-is-merged by libreadline8t64'
[2026-07-07T02:34:51.777Z] Adding 'diversion of /lib/x86_64-linux-gnu/libhistory.so.8.2 to /lib/x86_64-linux-gnu/libhistory.so.8.2.usr-is-merged by libreadline8t64'
[2026-07-07T02:34:51.781Z] Adding 'diversion of /lib/x86_64-linux-gnu/libreadline.so.8 to /lib/x86_64-linux-gnu/libreadline.so.8.usr-is-merged by libreadline8t64'
[2026-07-07T02:34:51.785Z] Adding 'diversion of /lib/x86_64-linux-gnu/libreadline.so.8.2 to /lib/x86_64-linux-gnu/libreadline.so.8.2.usr-is-merged by libreadline8t64'
[2026-07-07T02:34:51.786Z] Unpacking libreadline8t64:amd64 (8.2-6) ...
[2026-07-07T02:34:51.799Z] Selecting previously unselected package gpgconf.
[2026-07-07T02:34:51.800Z] Preparing to unpack .../47-gpgconf_2.4.7-21+deb13u1+b3_amd64.deb ...
[2026-07-07T02:34:51.800Z] Unpacking gpgconf (2.4.7-21+deb13u1+b3) ...
[2026-07-07T02:34:51.823Z] Selecting previously unselected package libksba8:amd64.
[2026-07-07T02:34:51.825Z] Preparing to unpack .../48-libksba8_1.6.7-2+b1_amd64.deb ...
[2026-07-07T02:34:51.825Z] Unpacking libksba8:amd64 (1.6.7-2+b1) ...
[2026-07-07T02:34:51.865Z] Selecting previously unselected package libnpth0t64:amd64.
[2026-07-07T02:34:51.868Z] Preparing to unpack .../49-libnpth0t64_1.8-3_amd64.deb ...
[2026-07-07T02:34:51.868Z] Unpacking libnpth0t64:amd64 (1.8-3) ...
[2026-07-07T02:34:51.893Z] Selecting previously unselected package dirmngr.
[2026-07-07T02:34:51.894Z] Preparing to unpack .../50-dirmngr_2.4.7-21+deb13u1+b3_amd64.deb ...
[2026-07-07T02:34:51.917Z] Unpacking dirmngr (2.4.7-21+deb13u1+b3) ...
[2026-07-07T02:34:51.961Z] Selecting previously unselected package libcc1-0:amd64.
[2026-07-07T02:34:51.962Z] Preparing to unpack .../51-libcc1-0_14.2.0-19_amd64.deb ...
[2026-07-07T02:34:51.962Z] Unpacking libcc1-0:amd64 (14.2.0-19) ...
[2026-07-07T02:34:51.971Z] Selecting previously unselected package libgomp1:amd64.
[2026-07-07T02:34:51.972Z] Preparing to unpack .../52-libgomp1_14.2.0-19_amd64.deb ...
[2026-07-07T02:34:51.972Z] Unpacking libgomp1:amd64 (14.2.0-19) ...
[2026-07-07T02:34:51.997Z] Selecting previously unselected package libitm1:amd64.
[2026-07-07T02:34:52.000Z] Preparing to unpack .../53-libitm1_14.2.0-19_amd64.deb ...
[2026-07-07T02:34:52.001Z] Unpacking libitm1:amd64 (14.2.0-19) ...
[2026-07-07T02:34:52.026Z] Selecting previously unselected package libatomic1:amd64.
[2026-07-07T02:34:52.028Z] Preparing to unpack .../54-libatomic1_14.2.0-19_amd64.deb ...
[2026-07-07T02:34:52.029Z] Unpacking libatomic1:amd64 (14.2.0-19) ...
[2026-07-07T02:34:52.057Z] Selecting previously unselected package libasan8:amd64.
[2026-07-07T02:34:52.059Z] Preparing to unpack .../55-libasan8_14.2.0-19_amd64.deb ...
[2026-07-07T02:34:52.059Z] Unpacking libasan8:amd64 (14.2.0-19) ...
[2026-07-07T02:34:52.167Z] Selecting previously unselected package liblsan0:amd64.
[2026-07-07T02:34:52.168Z] Preparing to unpack .../56-liblsan0_14.2.0-19_amd64.deb ...
Unpacking liblsan0:amd64 (14.2.0-19) ...
[2026-07-07T02:34:52.216Z] Selecting previously unselected package libtsan2:amd64.
[2026-07-07T02:34:52.217Z] Preparing to unpack .../57-libtsan2_14.2.0-19_amd64.deb ...
[2026-07-07T02:34:52.217Z] Unpacking libtsan2:amd64 (14.2.0-19) ...
[2026-07-07T02:34:52.309Z] Selecting previously unselected package libubsan1:amd64.
[2026-07-07T02:34:52.310Z] Preparing to unpack .../58-libubsan1_14.2.0-19_amd64.deb ...
[2026-07-07T02:34:52.310Z] Unpacking libubsan1:amd64 (14.2.0-19) ...
[2026-07-07T02:34:52.351Z] Selecting previously unselected package libhwasan0:amd64.
[2026-07-07T02:34:52.352Z] Preparing to unpack .../59-libhwasan0_14.2.0-19_amd64.deb ...
[2026-07-07T02:34:52.352Z] Unpacking libhwasan0:amd64 (14.2.0-19) ...
[2026-07-07T02:34:52.417Z] Selecting previously unselected package libquadmath0:amd64.
[2026-07-07T02:34:52.417Z] Preparing to unpack .../60-libquadmath0_14.2.0-19_amd64.deb ...
[2026-07-07T02:34:52.417Z] Unpacking libquadmath0:amd64 (14.2.0-19) ...
[2026-07-07T02:34:52.430Z] Selecting previously unselected package libgcc-14-dev:amd64.
[2026-07-07T02:34:52.431Z] Preparing to unpack .../61-libgcc-14-dev_14.2.0-19_amd64.deb ...
[2026-07-07T02:34:52.431Z] Unpacking libgcc-14-dev:amd64 (14.2.0-19) ...
[2026-07-07T02:34:52.526Z] Selecting previously unselected package gcc-14-x86-64-linux-gnu.
[2026-07-07T02:34:52.526Z] Preparing to unpack .../62-gcc-14-x86-64-linux-gnu_14.2.0-19_amd64.deb ...
[2026-07-07T02:34:52.527Z] Unpacking gcc-14-x86-64-linux-gnu (14.2.0-19) ...
[2026-07-07T02:34:52.848Z] Selecting previously unselected package gcc-14.
[2026-07-07T02:34:52.849Z] Preparing to unpack .../63-gcc-14_14.2.0-19_amd64.deb ...
[2026-07-07T02:34:52.849Z] Unpacking gcc-14 (14.2.0-19) ...
[2026-07-07T02:34:52.865Z] Selecting previously unselected package gcc-x86-64-linux-gnu.
[2026-07-07T02:34:52.867Z] Preparing to unpack .../64-gcc-x86-64-linux-gnu_4%3a14.2.0-1_amd64.deb ...
[2026-07-07T02:34:52.867Z] Unpacking gcc-x86-64-linux-gnu (4:14.2.0-1) ...
[2026-07-07T02:34:52.885Z] Selecting previously unselected package gcc.
[2026-07-07T02:34:52.887Z] Preparing to unpack .../65-gcc_4%3a14.2.0-1_amd64.deb ...
[2026-07-07T02:34:52.888Z] Unpacking gcc (4:14.2.0-1) ...
[2026-07-07T02:34:52.917Z] Selecting previously unselected package libngtcp2-16:amd64.
[2026-07-07T02:34:52.918Z] Preparing to unpack .../66-libngtcp2-16_1.11.0-1+deb13u1_amd64.deb ...
[2026-07-07T02:34:52.918Z] Unpacking libngtcp2-16:amd64 (1.11.0-1+deb13u1) ...
[2026-07-07T02:34:52.962Z] Selecting previously unselected package libngtcp2-crypto-gnutls8:amd64.
[2026-07-07T02:34:52.965Z] Preparing to unpack .../67-libngtcp2-crypto-gnutls8_1.11.0-1+deb13u1_amd64.deb ...
[2026-07-07T02:34:52.965Z] Unpacking libngtcp2-crypto-gnutls8:amd64 (1.11.0-1+deb13u1) ...
[2026-07-07T02:34:52.994Z] Selecting previously unselected package libcurl3t64-gnutls:amd64.
[2026-07-07T02:34:52.996Z] Preparing to unpack .../68-libcurl3t64-gnutls_8.14.1-2+deb13u3_amd64.deb ...
[2026-07-07T02:34:52.997Z] Unpacking libcurl3t64-gnutls:amd64 (8.14.1-2+deb13u3) ...
[2026-07-07T02:34:53.038Z] Selecting previously unselected package liberror-perl.
[2026-07-07T02:34:53.039Z] Preparing to unpack .../69-liberror-perl_0.17030-1_all.deb ...
[2026-07-07T02:34:53.039Z] Unpacking liberror-perl (0.17030-1) ...
[2026-07-07T02:34:53.057Z] Selecting previously unselected package git-man.
[2026-07-07T02:34:53.059Z] Preparing to unpack .../70-git-man_1%3a2.47.3-0+deb13u1_all.deb ...
[2026-07-07T02:34:53.060Z] Unpacking git-man (1:2.47.3-0+deb13u1) ...
[2026-07-07T02:34:53.116Z] Selecting previously unselected package git.
[2026-07-07T02:34:53.117Z] Preparing to unpack .../71-git_1%3a2.47.3-0+deb13u1_amd64.deb ...
[2026-07-07T02:34:53.120Z] Unpacking git (1:2.47.3-0+deb13u1) ...
[2026-07-07T02:34:53.332Z] Selecting previously unselected package gnupg-l10n.
[2026-07-07T02:34:53.333Z] Preparing to unpack .../72-gnupg-l10n_2.4.7-21+deb13u1_all.deb ...
[2026-07-07T02:34:53.333Z] Unpacking gnupg-l10n (2.4.7-21+deb13u1) ...
[2026-07-07T02:34:53.368Z] Selecting previously unselected package gpg.
[2026-07-07T02:34:53.368Z] Preparing to unpack .../73-gpg_2.4.7-21+deb13u1+b3_amd64.deb ...
[2026-07-07T02:34:53.368Z] Unpacking gpg (2.4.7-21+deb13u1+b3) ...
[2026-07-07T02:34:53.398Z] Selecting previously unselected package libncursesw6:amd64.
[2026-07-07T02:34:53.399Z] Preparing to unpack .../74-libncursesw6_6.5+20250216-2_amd64.deb ...
[2026-07-07T02:34:53.399Z] Unpacking libncursesw6:amd64 (6.5+20250216-2) ...
[2026-07-07T02:34:53.418Z] Selecting previously unselected package pinentry-curses.
[2026-07-07T02:34:53.421Z] Preparing to unpack .../75-pinentry-curses_1.3.1-2_amd64.deb ...
[2026-07-07T02:34:53.421Z] Unpacking pinentry-curses (1.3.1-2) ...
[2026-07-07T02:34:53.449Z] Selecting previously unselected package gpg-agent.
[2026-07-07T02:34:53.451Z] Preparing to unpack .../76-gpg-agent_2.4.7-21+deb13u1+b3_amd64.deb ...
[2026-07-07T02:34:53.452Z] Unpacking gpg-agent (2.4.7-21+deb13u1+b3) ...
[2026-07-07T02:34:53.484Z] Selecting previously unselected package gpgsm.
[2026-07-07T02:34:53.484Z] Preparing to unpack .../77-gpgsm_2.4.7-21+deb13u1+b3_amd64.deb ...
[2026-07-07T02:34:53.485Z] Unpacking gpgsm (2.4.7-21+deb13u1+b3) ...
[2026-07-07T02:34:53.528Z] Selecting previously unselected package gnupg.
[2026-07-07T02:34:53.531Z] Preparing to unpack .../78-gnupg_2.4.7-21+deb13u1_all.deb ...
[2026-07-07T02:34:53.531Z] Unpacking gnupg (2.4.7-21+deb13u1) ...
[2026-07-07T02:34:53.565Z] Selecting previously unselected package gnupg2.
[2026-07-07T02:34:53.566Z] Preparing to unpack .../79-gnupg2_2.4.7-21+deb13u1_all.deb ...
[2026-07-07T02:34:53.566Z] Unpacking gnupg2 (2.4.7-21+deb13u1) ...
[2026-07-07T02:34:53.584Z] Selecting previously unselected package libc-dev-bin.
[2026-07-07T02:34:53.586Z] Preparing to unpack .../80-libc-dev-bin_2.41-12+deb13u3_amd64.deb ...
[2026-07-07T02:34:53.587Z] Unpacking libc-dev-bin (2.41-12+deb13u3) ...
[2026-07-07T02:34:53.612Z] Selecting previously unselected package linux-libc-dev.
[2026-07-07T02:34:53.613Z] Preparing to unpack .../81-linux-libc-dev_6.12.95-1_all.deb ...
[2026-07-07T02:34:53.613Z] Unpacking linux-libc-dev (6.12.95-1) ...
[2026-07-07T02:34:53.738Z] Selecting previously unselected package libcrypt-dev:amd64.
[2026-07-07T02:34:53.739Z] Preparing to unpack .../82-libcrypt-dev_1%3a4.4.38-1_amd64.deb ...
[2026-07-07T02:34:53.742Z] Unpacking libcrypt-dev:amd64 (1:4.4.38-1) ...
[2026-07-07T02:34:53.751Z] Selecting previously unselected package rpcsvc-proto.
[2026-07-07T02:34:53.754Z] Preparing to unpack .../83-rpcsvc-proto_1.4.3-1_amd64.deb ...
[2026-07-07T02:34:53.754Z] Unpacking rpcsvc-proto (1.4.3-1) ...
[2026-07-07T02:34:53.773Z] Selecting previously unselected package libc6-dev:amd64.
[2026-07-07T02:34:53.774Z] Preparing to unpack .../84-libc6-dev_2.41-12+deb13u3_amd64.deb ...
[2026-07-07T02:34:53.774Z] Unpacking libc6-dev:amd64 (2.41-12+deb13u3) ...
[2026-07-07T02:34:53.854Z] Setting up libexpat1:amd64 (2.7.1-2) ...
[2026-07-07T02:34:53.855Z] Setting up libnpth0t64:amd64 (1.8-3) ...
[2026-07-07T02:34:53.855Z] Setting up libkeyutils1:amd64 (1.6.3-6) ...
[2026-07-07T02:34:53.856Z] Setting up libgdbm6t64:amd64 (1.24-2) ...
[2026-07-07T02:34:53.857Z] Setting up libgpg-error0:amd64 (1.51-4) ...
[2026-07-07T02:34:53.857Z] Setting up libgdbm-compat4t64:amd64 (1.24-2) ...
[2026-07-07T02:34:53.858Z] Setting up libbrotli1:amd64 (1.1.0-2+b7) ...
[2026-07-07T02:34:53.859Z] Setting up binutils-common:amd64 (2.44-3) ...
[2026-07-07T02:34:53.859Z] Setting up libpsl5t64:amd64 (0.21.2-1.1+b1) ...
[2026-07-07T02:34:53.860Z] Setting up libnghttp2-14:amd64 (1.64.0-1.1+deb13u1) ...
[2026-07-07T02:34:53.861Z] Setting up linux-libc-dev (6.12.95-1) ...
[2026-07-07T02:34:53.861Z] Setting up libctf-nobfd0:amd64 (2.44-3) ...
[2026-07-07T02:34:53.862Z] Setting up libgcrypt20:amd64 (1.11.0-7+deb13u1) ...
[2026-07-07T02:34:53.863Z] Setting up libcom-err2:amd64 (1.47.2-3+b11) ...
[2026-07-07T02:34:53.864Z] Setting up libgomp1:amd64 (14.2.0-19) ...
[2026-07-07T02:34:53.864Z] Setting up libsframe1:amd64 (2.44-3) ...
[2026-07-07T02:34:53.865Z] Setting up libjansson4:amd64 (2.14-2+b3) ...
[2026-07-07T02:34:53.865Z] Setting up libkrb5support0:amd64 (1.21.3-5+deb13u1) ...
[2026-07-07T02:34:53.865Z] Setting up libsasl2-modules-db:amd64 (2.1.28+dfsg1-9) ...
[2026-07-07T02:34:53.865Z] Setting up rpcsvc-proto (1.4.3-1) ...
[2026-07-07T02:34:53.866Z] Setting up libmpfr6:amd64 (4.2.2-1) ...
[2026-07-07T02:34:53.866Z] Setting up gnupg-l10n (2.4.7-21+deb13u1) ...
[2026-07-07T02:34:53.866Z] Setting up libquadmath0:amd64 (14.2.0-19) ...
[2026-07-07T02:34:53.866Z] Setting up libmpc3:amd64 (1.3.1-1+b3) ...
[2026-07-07T02:34:53.866Z] Setting up libatomic1:amd64 (14.2.0-19) ...
[2026-07-07T02:34:53.867Z] Setting up libncursesw6:amd64 (6.5+20250216-2) ...
[2026-07-07T02:34:53.867Z] Setting up libk5crypto3:amd64 (1.21.3-5+deb13u1) ...
[2026-07-07T02:34:53.867Z] Setting up libsasl2-2:amd64 (2.1.28+dfsg1-9) ...
[2026-07-07T02:34:53.867Z] Setting up libnghttp3-9:amd64 (1.8.0-1) ...
[2026-07-07T02:34:53.867Z] Setting up libubsan1:amd64 (14.2.0-19) ...
[2026-07-07T02:34:53.868Z] Setting up libffi8:amd64 (3.4.8-2) ...
[2026-07-07T02:34:53.868Z] Setting up perl-modules-5.40 (5.40.1-6) ...
[2026-07-07T02:34:53.868Z] Setting up libhwasan0:amd64 (14.2.0-19) ...
[2026-07-07T02:34:53.868Z] Setting up libcrypt-dev:amd64 (1:4.4.38-1) ...
[2026-07-07T02:34:53.874Z] Setting up libasan8:amd64 (14.2.0-19) ...
[2026-07-07T02:34:53.874Z] Setting up libassuan9:amd64 (3.0.2-2) ...
[2026-07-07T02:34:53.874Z] Setting up libtasn1-6:amd64 (4.20.0-2) ...
[2026-07-07T02:34:53.874Z] Setting up git-man (1:2.47.3-0+deb13u1) ...
[2026-07-07T02:34:53.874Z] Setting up libngtcp2-16:amd64 (1.11.0-1+deb13u1) ...
[2026-07-07T02:34:53.875Z] Setting up libkrb5-3:amd64 (1.21.3-5+deb13u1) ...
[2026-07-07T02:34:53.876Z] Setting up libssh2-1t64:amd64 (1.11.1-1+deb13u1) ...
Setting up libtsan2:amd64 (14.2.0-19) ...
Setting up libbinutils:amd64 (2.44-3) ...
Setting up libisl23:amd64 (0.27-1) ...
[2026-07-07T02:34:53.876Z] Setting up libc-dev-bin (2.41-12+deb13u3) ...
[2026-07-07T02:34:53.876Z] Setting up readline-common (8.2-6) ...
[2026-07-07T02:34:53.879Z] Setting up libcc1-0:amd64 (14.2.0-19) ...
[2026-07-07T02:34:53.880Z] Setting up libldap2:amd64 (2.6.10+dfsg-1) ...
[2026-07-07T02:34:53.880Z] Setting up liblsan0:amd64 (14.2.0-19) ...
[2026-07-07T02:34:53.880Z] Setting up libitm1:amd64 (14.2.0-19) ...
[2026-07-07T02:34:53.880Z] Setting up libctf0:amd64 (2.44-3) ...
[2026-07-07T02:34:53.881Z] Setting up libksba8:amd64 (1.6.7-2+b1) ...
[2026-07-07T02:34:53.881Z] Setting up pinentry-curses (1.3.1-2) ...
[2026-07-07T02:34:53.886Z] Setting up libperl5.40:amd64 (5.40.1-6) ...
[2026-07-07T02:34:53.886Z] Setting up perl (5.40.1-6) ...
[2026-07-07T02:34:53.890Z] Setting up libgprofng0:amd64 (2.44-3) ...
[2026-07-07T02:34:53.890Z] Setting up libp11-kit0:amd64 (0.25.5-3) ...
[2026-07-07T02:34:53.891Z] Setting up libgssapi-krb5-2:amd64 (1.21.3-5+deb13u1) ...
[2026-07-07T02:34:53.893Z] Setting up cpp-14-x86-64-linux-gnu (14.2.0-19) ...
[2026-07-07T02:34:53.893Z] Setting up cpp-14 (14.2.0-19) ...
[2026-07-07T02:34:53.894Z] Setting up libreadline8t64:amd64 (8.2-6) ...
[2026-07-07T02:34:53.894Z] Setting up gpgconf (2.4.7-21+deb13u1+b3) ...
[2026-07-07T02:34:53.895Z] Setting up libc6-dev:amd64 (2.41-12+deb13u3) ...
[2026-07-07T02:34:53.895Z] Setting up libgcc-14-dev:amd64 (14.2.0-19) ...
[2026-07-07T02:34:53.896Z] Setting up gpg (2.4.7-21+deb13u1+b3) ...
[2026-07-07T02:34:53.970Z] Setting up binutils-x86-64-linux-gnu (2.44-3) ...
[2026-07-07T02:34:53.970Z] Setting up cpp-x86-64-linux-gnu (4:14.2.0-1) ...
[2026-07-07T02:34:53.971Z] Setting up libgnutls30t64:amd64 (3.8.9-3+deb13u4) ...
Setting up gpg-agent (2.4.7-21+deb13u1+b3) ...
[2026-07-07T02:34:54.247Z] Setting up gpgsm (2.4.7-21+deb13u1+b3) ...
Setting up binutils (2.44-3) ...
[2026-07-07T02:34:54.247Z] Setting up liberror-perl (0.17030-1) ...
[2026-07-07T02:34:54.247Z] Setting up dirmngr (2.4.7-21+deb13u1+b3) ...
[2026-07-07T02:34:54.317Z] Setting up librtmp1:amd64 (2.4+20151223.gitfa8646d.1-2+b5) ...
[2026-07-07T02:34:54.317Z] Setting up cpp (4:14.2.0-1) ...
[2026-07-07T02:34:54.321Z] Setting up gnupg (2.4.7-21+deb13u1) ...
[2026-07-07T02:34:54.321Z] Setting up gcc-14-x86-64-linux-gnu (14.2.0-19) ...
[2026-07-07T02:34:54.321Z] Setting up libngtcp2-crypto-gnutls8:amd64 (1.11.0-1+deb13u1) ...
[2026-07-07T02:34:54.321Z] Setting up gnupg2 (2.4.7-21+deb13u1) ...
[2026-07-07T02:34:54.321Z] Setting up gcc-x86-64-linux-gnu (4:14.2.0-1) ...
[2026-07-07T02:34:54.321Z] Setting up libcurl4t64:amd64 (8.14.1-2+deb13u3) ...
[2026-07-07T02:34:54.322Z] Setting up libcurl3t64-gnutls:amd64 (8.14.1-2+deb13u3) ...
[2026-07-07T02:34:54.322Z] Setting up gcc-14 (14.2.0-19) ...
[2026-07-07T02:34:54.325Z] Setting up git (1:2.47.3-0+deb13u1) ...
[2026-07-07T02:34:54.329Z] Setting up curl (8.14.1-2+deb13u3) ...
[2026-07-07T02:34:54.329Z] Setting up gcc (4:14.2.0-1) ...
[2026-07-07T02:34:54.333Z] Processing triggers for libc-bin (2.41-12+deb13u3) ...
[2026-07-07T02:34:54.396Z] Reading package lists...
[2026-07-07T02:34:54.725Z]
[2026-07-07T02:34:54.733Z] Building dependency tree...
[2026-07-07T02:34:54.795Z]
Reading state information...
[2026-07-07T02:34:54.910Z] The following additional packages will be installed:
fontconfig-config fonts-dejavu-core fonts-dejavu-mono libclang-cpp19
libedit2 libexpat1-dev libfontconfig1 libfreetype6 libipt2 liblldb-19
[2026-07-07T02:34:54.910Z] libllvm19 libncurses6 libpng16-16t64 libtcl8.6 libtk8.6 libx11-6 libx11-data
libxau6 libxcb1 libxdmcp6 libxext6 libxft2 libxml2 libxrender1 libxss1
[2026-07-07T02:34:54.910Z] libz3-4 lldb-19 media-types net-tools netbase python3-lldb-19 python3.13
python3.13-minimal x11-common zlib1g-dev
[2026-07-07T02:34:54.911Z] Suggested packages:
python3-gdbm python3-tk tcl8.6 tk8.6 python3.13-venv python3.13-doc
binfmt-support
Recommended packages:
libgpm2
[2026-07-07T02:34:55.165Z] The following NEW packages will be installed:
fontconfig-config fonts-dejavu-core fonts-dejavu-mono libclang-cpp19
libedit2 libexpat1-dev libfontconfig1 libfreetype6 libipt2 liblldb-19
libllvm19 libncurses6 libpng16-16t64 libpython3-all-dbg libpython3-all-dev
libpython3-dbg libpython3-dev libpython3-stdlib libpython3.13
libpython3.13-dbg libpython3.13-dev libpython3.13-minimal
[2026-07-07T02:34:55.165Z] libpython3.13-stdlib libpython3.13-testsuite libtcl8.6 libtk8.6 libx11-6
libx11-data libxau6 libxcb1 libxdmcp6 libxext6 libxft2 libxml2 libxrender1
[2026-07-07T02:34:55.165Z] libxss1 libz3-4 lldb lldb-19 media-types net-tools netbase python3-lldb-19
python3-minimal python3.13 python3.13-minimal x11-common zlib1g-dev
[2026-07-07T02:34:55.418Z] 0 upgraded, 48 newly installed, 0 to remove and 0 not upgraded.
Need to get 103 MB of archives.
After this operation, 482 MB of additional disk space will be used.
Get:1 http://deb.debian.org/debian trixie/main amd64 libpython3.13-minimal amd64 3.13.5-2+deb13u2 [862 kB]
[2026-07-07T02:34:56.057Z] Get:2 http://deb.debian.org/debian trixie/main amd64 python3.13-minimal amd64 3.13.5-2+deb13u2 [2217 kB]
[2026-07-07T02:34:56.230Z] Get:3 http://deb.debian.org/debian trixie/main amd64 python3-minimal amd64 3.13.5-1 [27.2 kB]
Get:4 http://deb.debian.org/debian trixie/main amd64 netbase all 6.5 [12.4 kB]
[2026-07-07T02:34:56.231Z] Get:5 http://deb.debian.org/debian trixie/main amd64 media-types all 13.0.0 [29.3 kB]
[2026-07-07T02:34:56.352Z] Get:6 http://deb.debian.org/debian trixie/main amd64 fonts-dejavu-mono all 2.37-8 [489 kB]
[2026-07-07T02:34:56.477Z] Get:7 http://deb.debian.org/debian trixie/main amd64 fonts-dejavu-core all 2.37-8 [840 kB]
[2026-07-07T02:34:56.609Z] Get:8 http://deb.debian.org/debian trixie/main amd64 fontconfig-config amd64 2.15.0-2.3 [318 kB]
[2026-07-07T02:34:56.615Z] Get:9 http://deb.debian.org/debian trixie/main amd64 libedit2 amd64 3.1-20250104-1 [93.8 kB]
[2026-07-07T02:34:56.616Z] Get:10 http://deb.debian.org/debian trixie/main amd64 libxml2 amd64 2.12.7+dfsg+really2.9.14-2.1+deb13u2 [698 kB]
[2026-07-07T02:34:56.747Z] Get:11 http://deb.debian.org/debian trixie/main amd64 libz3-4 amd64 4.13.3-1 [8560 kB]
[2026-07-07T02:34:57.044Z] Get:12 http://deb.debian.org/debian trixie/main amd64 libllvm19 amd64 1:19.1.7-3+b1 [26.0 MB]
[2026-07-07T02:34:57.639Z] Get:13 http://deb.debian.org/debian trixie/main amd64 libclang-cpp19 amd64 1:19.1.7-3+b1 [13.2 MB]
[2026-07-07T02:34:57.983Z] Get:14 http://deb.debian.org/debian trixie/main amd64 libexpat1-dev amd64 2.7.1-2 [161 kB]
[2026-07-07T02:34:58.103Z] Get:15 http://deb.debian.org/debian trixie/main amd64 libpng16-16t64 amd64 1.6.48-1+deb13u5 [283 kB]
[2026-07-07T02:34:58.223Z] Get:16 http://deb.debian.org/debian trixie/main amd64 libfreetype6 amd64 2.13.3+dfsg-1+deb13u1 [452 kB]
[2026-07-07T02:34:58.345Z] Get:17 http://deb.debian.org/debian trixie/main amd64 libfontconfig1 amd64 2.15.0-2.3 [392 kB]
[2026-07-07T02:34:58.350Z] Get:18 http://deb.debian.org/debian trixie/main amd64 libipt2 amd64 2.1.2-1 [47.8 kB]
[2026-07-07T02:34:58.350Z] Get:19 http://deb.debian.org/debian trixie/main amd64 libncurses6 amd64 6.5+20250216-2 [105 kB]
[2026-07-07T02:34:58.467Z] Get:20 http://deb.debian.org/debian trixie/main amd64 libpython3.13-stdlib amd64 3.13.5-2+deb13u2 [1958 kB]
[2026-07-07T02:34:58.564Z] Get:21 http://deb.debian.org/debian trixie/main amd64 libpython3.13 amd64 3.13.5-2+deb13u2 [2159 kB]
[2026-07-07T02:34:58.713Z] Get:22 http://deb.debian.org/debian trixie/main amd64 liblldb-19 amd64 1:19.1.7-3+b1 [4165 kB]
[2026-07-07T02:34:58.866Z] Get:23 http://deb.debian.org/debian trixie/main amd64 libtcl8.6 amd64 8.6.16+dfsg-1 [1042 kB]
[2026-07-07T02:34:58.877Z] Get:24 http://deb.debian.org/debian trixie/main amd64 libxau6 amd64 1:1.0.11-1 [20.4 kB]
[2026-07-07T02:34:58.877Z] Get:25 http://deb.debian.org/debian trixie/main amd64 libxdmcp6 amd64 1:1.1.5-1 [27.8 kB]
[2026-07-07T02:34:58.993Z] Get:26 http://deb.debian.org/debian trixie/main amd64 libxcb1 amd64 1.17.0-2+b1 [144 kB]
[2026-07-07T02:34:58.995Z] Get:27 http://deb.debian.org/debian trixie/main amd64 libx11-data all 2:1.8.12-1 [343 kB]
[2026-07-07T02:34:59.125Z] Get:28 http://deb.debian.org/debian trixie/main amd64 libx11-6 amd64 2:1.8.12-1 [815 kB]
[2026-07-07T02:34:59.133Z] Get:29 http://deb.debian.org/debian trixie/main amd64 libxrender1 amd64 1:0.9.12-1 [27.9 kB]
[2026-07-07T02:34:59.136Z] Get:30 http://deb.debian.org/debian trixie/main amd64 libxft2 amd64 2.3.6-1+b4 [54.5 kB]
[2026-07-07T02:34:59.137Z] Get:31 http://deb.debian.org/debian trixie/main amd64 libxext6 amd64 2:1.3.4-1+b3 [50.4 kB]
[2026-07-07T02:34:59.255Z] Get:32 http://deb.debian.org/debian trixie/main amd64 x11-common all 1:7.7+24+deb13u1 [217 kB]
[2026-07-07T02:34:59.259Z] Get:33 http://deb.debian.org/debian trixie/main amd64 libxss1 amd64 1:1.2.3-1+b3 [17.0 kB]
[2026-07-07T02:34:59.260Z] Get:34 http://deb.debian.org/debian trixie/main amd64 libtk8.6 amd64 8.6.16-1 [793 kB]
[2026-07-07T02:34:59.382Z] Get:35 http://deb.debian.org/debian trixie/main amd64 libpython3.13-dbg amd64 3.13.5-2+deb13u2 [23.1 MB]
[2026-07-07T02:34:59.780Z] Get:36 http://deb.debian.org/debian trixie/main amd64 libpython3-dbg amd64 3.13.5-1 [10.4 kB]
Get:37 http://deb.debian.org/debian trixie/main amd64 libpython3-all-dbg amd64 3.13.5-1 [1064 B]
[2026-07-07T02:34:59.898Z] Get:38 http://deb.debian.org/debian trixie/main amd64 zlib1g-dev amd64 1:1.3.dfsg+really1.3.1-1+b1 [920 kB]
[2026-07-07T02:35:00.023Z] Get:39 http://deb.debian.org/debian trixie/main amd64 libpython3.13-dev amd64 3.13.5-2+deb13u2 [5276 kB]
[2026-07-07T02:35:00.068Z] Get:40 http://deb.debian.org/debian trixie/main amd64 libpython3-dev amd64 3.13.5-1 [10.4 kB]
[2026-07-07T02:35:00.068Z] Get:41 http://deb.debian.org/debian trixie/main amd64 libpython3-all-dev amd64 3.13.5-1 [1068 B]
Get:42 http://deb.debian.org/debian trixie/main amd64 libpython3-stdlib amd64 3.13.5-1 [10.2 kB]
[2026-07-07T02:35:00.187Z] Get:43 http://deb.debian.org/debian trixie/main amd64 python3.13 amd64 3.13.5-2+deb13u2 [757 kB]
[2026-07-07T02:35:00.310Z] Get:44 http://deb.debian.org/debian trixie/main amd64 net-tools amd64 2.10-1.3 [245 kB]
[2026-07-07T02:35:00.430Z] Get:45 http://deb.debian.org/debian trixie/main amd64 libpython3.13-testsuite all 3.13.5-2+deb13u2 [4836 kB]
[2026-07-07T02:35:00.591Z] Get:46 http://deb.debian.org/debian trixie/main amd64 python3-lldb-19 amd64 1:19.1.7-3+b1 [159 kB]
[2026-07-07T02:35:00.593Z] Get:47 http://deb.debian.org/debian trixie/main amd64 lldb-19 amd64 1:19.1.7-3+b1 [1217 kB]
[2026-07-07T02:35:00.604Z] Get:48 http://deb.debian.org/debian trixie/main amd64 lldb amd64 1:19.0-63 [6072 B]
[2026-07-07T02:35:01.277Z] Preconfiguring packages ...
[2026-07-07T02:35:01.305Z] Fetched 103 MB in 5s (19.0 MB/s)
[2026-07-07T02:35:01.316Z] Selecting previously unselected package libpython3.13-minimal:amd64.
(Reading database ...
[2026-07-07T02:35:01.317Z] (Reading database ... 5%
[2026-07-07T02:35:01.318Z] (Reading database ... 10%
[2026-07-07T02:35:01.318Z] (Reading database ... 15%
[2026-07-07T02:35:01.320Z] (Reading database ... 20%
[2026-07-07T02:35:01.321Z] (Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
[2026-07-07T02:35:01.321Z] (Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 13492 files and directories currently installed.)
[2026-07-07T02:35:01.322Z] Preparing to unpack .../libpython3.13-minimal_3.13.5-2+deb13u2_amd64.deb ...
[2026-07-07T02:35:01.322Z] Unpacking libpython3.13-minimal:amd64 (3.13.5-2+deb13u2) ...
[2026-07-07T02:35:01.364Z] Selecting previously unselected package python3.13-minimal.
[2026-07-07T02:35:01.365Z] Preparing to unpack .../python3.13-minimal_3.13.5-2+deb13u2_amd64.deb ...
[2026-07-07T02:35:01.367Z] Unpacking python3.13-minimal (3.13.5-2+deb13u2) ...
[2026-07-07T02:35:01.449Z] Setting up libpython3.13-minimal:amd64 (3.13.5-2+deb13u2) ...
[2026-07-07T02:35:01.450Z] Setting up python3.13-minimal (3.13.5-2+deb13u2) ...
[2026-07-07T02:35:01.868Z] Selecting previously unselected package python3-minimal.
(Reading database ...
[2026-07-07T02:35:01.870Z] (Reading database ... 5%
[2026-07-07T02:35:01.871Z] (Reading database ... 10%
[2026-07-07T02:35:01.872Z] (Reading database ... 15%
[2026-07-07T02:35:01.873Z] (Reading database ... 20%
[2026-07-07T02:35:01.874Z] (Reading database ... 25%
[2026-07-07T02:35:01.874Z] (Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
[2026-07-07T02:35:01.874Z] (Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 13817 files and directories currently installed.)
[2026-07-07T02:35:01.874Z] Preparing to unpack .../00-python3-minimal_3.13.5-1_amd64.deb ...
[2026-07-07T02:35:01.874Z] Unpacking python3-minimal (3.13.5-1) ...
[2026-07-07T02:35:01.889Z] Selecting previously unselected package netbase.
[2026-07-07T02:35:01.891Z] Preparing to unpack .../01-netbase_6.5_all.deb ...
[2026-07-07T02:35:01.891Z] Unpacking netbase (6.5) ...
[2026-07-07T02:35:01.913Z] Selecting previously unselected package media-types.
[2026-07-07T02:35:01.913Z] Preparing to unpack .../02-media-types_13.0.0_all.deb ...
Unpacking media-types (13.0.0) ...
[2026-07-07T02:35:01.944Z] Selecting previously unselected package fonts-dejavu-mono.
[2026-07-07T02:35:01.947Z] Preparing to unpack .../03-fonts-dejavu-mono_2.37-8_all.deb ...
[2026-07-07T02:35:01.947Z] Unpacking fonts-dejavu-mono (2.37-8) ...
[2026-07-07T02:35:01.990Z] Selecting previously unselected package fonts-dejavu-core.
[2026-07-07T02:35:01.991Z] Preparing to unpack .../04-fonts-dejavu-core_2.37-8_all.deb ...
[2026-07-07T02:35:02.007Z] Unpacking fonts-dejavu-core (2.37-8) ...
[2026-07-07T02:35:02.050Z] Selecting previously unselected package fontconfig-config.
[2026-07-07T02:35:02.051Z] Preparing to unpack .../05-fontconfig-config_2.15.0-2.3_amd64.deb ...
Unpacking fontconfig-config (2.15.0-2.3) ...
[2026-07-07T02:35:02.067Z] Selecting previously unselected package libedit2:amd64.
[2026-07-07T02:35:02.068Z] Preparing to unpack .../06-libedit2_3.1-20250104-1_amd64.deb ...
[2026-07-07T02:35:02.069Z] Unpacking libedit2:amd64 (3.1-20250104-1) ...
[2026-07-07T02:35:02.090Z] Selecting previously unselected package libxml2:amd64.
[2026-07-07T02:35:02.092Z] Preparing to unpack .../07-libxml2_2.12.7+dfsg+really2.9.14-2.1+deb13u2_amd64.deb ...
[2026-07-07T02:35:02.092Z] Unpacking libxml2:amd64 (2.12.7+dfsg+really2.9.14-2.1+deb13u2) ...
[2026-07-07T02:35:02.134Z] Selecting previously unselected package libz3-4:amd64.
[2026-07-07T02:35:02.135Z] Preparing to unpack .../08-libz3-4_4.13.3-1_amd64.deb ...
[2026-07-07T02:35:02.135Z] Unpacking libz3-4:amd64 (4.13.3-1) ...
[2026-07-07T02:35:02.369Z] Selecting previously unselected package libllvm19:amd64.
[2026-07-07T02:35:02.369Z] Preparing to unpack .../09-libllvm19_1%3a19.1.7-3+b1_amd64.deb ...
[2026-07-07T02:35:02.369Z] Unpacking libllvm19:amd64 (1:19.1.7-3+b1) ...
[2026-07-07T02:35:02.718Z] Selecting previously unselected package libclang-cpp19.
[2026-07-07T02:35:02.718Z] Preparing to unpack .../10-libclang-cpp19_1%3a19.1.7-3+b1_amd64.deb ...
[2026-07-07T02:35:02.718Z] Unpacking libclang-cpp19 (1:19.1.7-3+b1) ...
[2026-07-07T02:35:02.942Z] Selecting previously unselected package libexpat1-dev:amd64.
[2026-07-07T02:35:02.943Z] Preparing to unpack .../11-libexpat1-dev_2.7.1-2_amd64.deb ...
[2026-07-07T02:35:02.943Z] Unpacking libexpat1-dev:amd64 (2.7.1-2) ...
[2026-07-07T02:35:02.957Z] Selecting previously unselected package libpng16-16t64:amd64.
[2026-07-07T02:35:02.958Z] Preparing to unpack .../12-libpng16-16t64_1.6.48-1+deb13u5_amd64.deb ...
[2026-07-07T02:35:02.958Z] Unpacking libpng16-16t64:amd64 (1.6.48-1+deb13u5) ...
[2026-07-07T02:35:02.984Z] Selecting previously unselected package libfreetype6:amd64.
[2026-07-07T02:35:02.987Z] Preparing to unpack .../13-libfreetype6_2.13.3+dfsg-1+deb13u1_amd64.deb ...
[2026-07-07T02:35:02.988Z] Unpacking libfreetype6:amd64 (2.13.3+dfsg-1+deb13u1) ...
[2026-07-07T02:35:03.025Z] Selecting previously unselected package libfontconfig1:amd64.
[2026-07-07T02:35:03.025Z] Preparing to unpack .../14-libfontconfig1_2.15.0-2.3_amd64.deb ...
[2026-07-07T02:35:03.026Z] Unpacking libfontconfig1:amd64 (2.15.0-2.3) ...
[2026-07-07T02:35:03.044Z] Selecting previously unselected package libipt2.
[2026-07-07T02:35:03.046Z] Preparing to unpack .../15-libipt2_2.1.2-1_amd64.deb ...
[2026-07-07T02:35:03.046Z] Unpacking libipt2 (2.1.2-1) ...
[2026-07-07T02:35:03.071Z] Selecting previously unselected package libncurses6:amd64.
[2026-07-07T02:35:03.074Z] Preparing to unpack .../16-libncurses6_6.5+20250216-2_amd64.deb ...
[2026-07-07T02:35:03.075Z] Unpacking libncurses6:amd64 (6.5+20250216-2) ...
[2026-07-07T02:35:03.118Z] Selecting previously unselected package libpython3.13-stdlib:amd64.
[2026-07-07T02:35:03.121Z] Preparing to unpack .../17-libpython3.13-stdlib_3.13.5-2+deb13u2_amd64.deb ...
[2026-07-07T02:35:03.121Z] Unpacking libpython3.13-stdlib:amd64 (3.13.5-2+deb13u2) ...
[2026-07-07T02:35:03.206Z] Selecting previously unselected package libpython3.13:amd64.
[2026-07-07T02:35:03.206Z] Preparing to unpack .../18-libpython3.13_3.13.5-2+deb13u2_amd64.deb ...
Unpacking libpython3.13:amd64 (3.13.5-2+deb13u2) ...
[2026-07-07T02:35:03.278Z] Selecting previously unselected package liblldb-19.
[2026-07-07T02:35:03.279Z] Preparing to unpack .../19-liblldb-19_1%3a19.1.7-3+b1_amd64.deb ...
Unpacking liblldb-19 (1:19.1.7-3+b1) ...
[2026-07-07T02:35:03.415Z] Selecting previously unselected package libtcl8.6:amd64.
[2026-07-07T02:35:03.415Z] Preparing to unpack .../20-libtcl8.6_8.6.16+dfsg-1_amd64.deb ...
Unpacking libtcl8.6:amd64 (8.6.16+dfsg-1) ...
[2026-07-07T02:35:03.460Z] Selecting previously unselected package libxau6:amd64.
[2026-07-07T02:35:03.461Z] Preparing to unpack .../21-libxau6_1%3a1.0.11-1_amd64.deb ...
[2026-07-07T02:35:03.461Z] Unpacking libxau6:amd64 (1:1.0.11-1) ...
[2026-07-07T02:35:03.475Z] Selecting previously unselected package libxdmcp6:amd64.
[2026-07-07T02:35:03.477Z] Preparing to unpack .../22-libxdmcp6_1%3a1.1.5-1_amd64.deb ...
[2026-07-07T02:35:03.477Z] Unpacking libxdmcp6:amd64 (1:1.1.5-1) ...
[2026-07-07T02:35:03.504Z] Selecting previously unselected package libxcb1:amd64.
[2026-07-07T02:35:03.506Z] Preparing to unpack .../23-libxcb1_1.17.0-2+b1_amd64.deb ...
[2026-07-07T02:35:03.506Z] Unpacking libxcb1:amd64 (1.17.0-2+b1) ...
[2026-07-07T02:35:03.543Z] Selecting previously unselected package libx11-data.
[2026-07-07T02:35:03.548Z] Preparing to unpack .../24-libx11-data_2%3a1.8.12-1_all.deb ...
[2026-07-07T02:35:03.548Z] Unpacking libx11-data (2:1.8.12-1) ...
[2026-07-07T02:35:03.583Z] Selecting previously unselected package libx11-6:amd64.
[2026-07-07T02:35:03.584Z] Preparing to unpack .../25-libx11-6_2%3a1.8.12-1_amd64.deb ...
[2026-07-07T02:35:03.584Z] Unpacking libx11-6:amd64 (2:1.8.12-1) ...
[2026-07-07T02:35:03.617Z] Selecting previously unselected package libxrender1:amd64.
[2026-07-07T02:35:03.617Z] Preparing to unpack .../26-libxrender1_1%3a0.9.12-1_amd64.deb ...
[2026-07-07T02:35:03.617Z] Unpacking libxrender1:amd64 (1:0.9.12-1) ...
[2026-07-07T02:35:03.633Z] Selecting previously unselected package libxft2:amd64.
[2026-07-07T02:35:03.637Z] Preparing to unpack .../27-libxft2_2.3.6-1+b4_amd64.deb ...
[2026-07-07T02:35:03.638Z] Unpacking libxft2:amd64 (2.3.6-1+b4) ...
[2026-07-07T02:35:03.665Z] Selecting previously unselected package libxext6:amd64.
[2026-07-07T02:35:03.668Z] Preparing to unpack .../28-libxext6_2%3a1.3.4-1+b3_amd64.deb ...
[2026-07-07T02:35:03.668Z] Unpacking libxext6:amd64 (2:1.3.4-1+b3) ...
[2026-07-07T02:35:03.687Z] Selecting previously unselected package x11-common.
[2026-07-07T02:35:03.688Z] Preparing to unpack .../29-x11-common_1%3a7.7+24+deb13u1_all.deb ...
[2026-07-07T02:35:03.689Z] Unpacking x11-common (1:7.7+24+deb13u1) ...
[2026-07-07T02:35:03.711Z] Selecting previously unselected package libxss1:amd64.
[2026-07-07T02:35:03.712Z] Preparing to unpack .../30-libxss1_1%3a1.2.3-1+b3_amd64.deb ...
[2026-07-07T02:35:03.713Z] Unpacking libxss1:amd64 (1:1.2.3-1+b3) ...
[2026-07-07T02:35:03.736Z] Selecting previously unselected package libtk8.6:amd64.
[2026-07-07T02:35:03.741Z] Preparing to unpack .../31-libtk8.6_8.6.16-1_amd64.deb ...
[2026-07-07T02:35:03.742Z] Unpacking libtk8.6:amd64 (8.6.16-1) ...
[2026-07-07T02:35:03.794Z] Selecting previously unselected package libpython3.13-dbg:amd64.
[2026-07-07T02:35:03.795Z] Preparing to unpack .../32-libpython3.13-dbg_3.13.5-2+deb13u2_amd64.deb ...
[2026-07-07T02:35:03.795Z] Unpacking libpython3.13-dbg:amd64 (3.13.5-2+deb13u2) ...
[2026-07-07T02:35:04.112Z] Selecting previously unselected package libpython3-dbg:amd64.
[2026-07-07T02:35:04.112Z] Preparing to unpack .../33-libpython3-dbg_3.13.5-1_amd64.deb ...
[2026-07-07T02:35:04.112Z] Unpacking libpython3-dbg:amd64 (3.13.5-1) ...
[2026-07-07T02:35:04.120Z] Selecting previously unselected package libpython3-all-dbg:amd64.
[2026-07-07T02:35:04.121Z] Preparing to unpack .../34-libpython3-all-dbg_3.13.5-1_amd64.deb ...
[2026-07-07T02:35:04.121Z] Unpacking libpython3-all-dbg:amd64 (3.13.5-1) ...
[2026-07-07T02:35:04.127Z] Selecting previously unselected package zlib1g-dev:amd64.
[2026-07-07T02:35:04.128Z] Preparing to unpack .../35-zlib1g-dev_1%3a1.3.dfsg+really1.3.1-1+b1_amd64.deb ...
[2026-07-07T02:35:04.128Z] Unpacking zlib1g-dev:amd64 (1:1.3.dfsg+really1.3.1-1+b1) ...
[2026-07-07T02:35:04.154Z] Selecting previously unselected package libpython3.13-dev:amd64.
[2026-07-07T02:35:04.155Z] Preparing to unpack .../36-libpython3.13-dev_3.13.5-2+deb13u2_amd64.deb ...
[2026-07-07T02:35:04.156Z] Unpacking libpython3.13-dev:amd64 (3.13.5-2+deb13u2) ...
[2026-07-07T02:35:04.330Z] Selecting previously unselected package libpython3-dev:amd64.
[2026-07-07T02:35:04.330Z] Preparing to unpack .../37-libpython3-dev_3.13.5-1_amd64.deb ...
[2026-07-07T02:35:04.331Z] Unpacking libpython3-dev:amd64 (3.13.5-1) ...
[2026-07-07T02:35:04.340Z] Selecting previously unselected package libpython3-all-dev:amd64.
[2026-07-07T02:35:04.342Z] Preparing to unpack .../38-libpython3-all-dev_3.13.5-1_amd64.deb ...
[2026-07-07T02:35:04.342Z] Unpacking libpython3-all-dev:amd64 (3.13.5-1) ...
[2026-07-07T02:35:04.364Z] Selecting previously unselected package libpython3-stdlib:amd64.
[2026-07-07T02:35:04.369Z] Preparing to unpack .../39-libpython3-stdlib_3.13.5-1_amd64.deb ...
[2026-07-07T02:35:04.370Z] Unpacking libpython3-stdlib:amd64 (3.13.5-1) ...
[2026-07-07T02:35:04.397Z] Selecting previously unselected package python3.13.
[2026-07-07T02:35:04.400Z] Preparing to unpack .../40-python3.13_3.13.5-2+deb13u2_amd64.deb ...
[2026-07-07T02:35:04.401Z] Unpacking python3.13 (3.13.5-2+deb13u2) ...
[2026-07-07T02:35:04.446Z] Selecting previously unselected package net-tools.
[2026-07-07T02:35:04.449Z] Preparing to unpack .../41-net-tools_2.10-1.3_amd64.deb ...
[2026-07-07T02:35:04.450Z] Unpacking net-tools (2.10-1.3) ...
[2026-07-07T02:35:04.492Z] Selecting previously unselected package libpython3.13-testsuite.
[2026-07-07T02:35:04.493Z] Preparing to unpack .../42-libpython3.13-testsuite_3.13.5-2+deb13u2_all.deb ...
[2026-07-07T02:35:04.493Z] Unpacking libpython3.13-testsuite (3.13.5-2+deb13u2) ...
[2026-07-07T02:35:04.632Z] Selecting previously unselected package python3-lldb-19.
[2026-07-07T02:35:04.633Z] Preparing to unpack .../43-python3-lldb-19_1%3a19.1.7-3+b1_amd64.deb ...
[2026-07-07T02:35:04.633Z] Unpacking python3-lldb-19 (1:19.1.7-3+b1) ...
[2026-07-07T02:35:04.655Z] Selecting previously unselected package lldb-19.
[2026-07-07T02:35:04.657Z] Preparing to unpack .../44-lldb-19_1%3a19.1.7-3+b1_amd64.deb ...
[2026-07-07T02:35:04.657Z] Unpacking lldb-19 (1:19.1.7-3+b1) ...
[2026-07-07T02:35:04.709Z] Selecting previously unselected package lldb:amd64.
[2026-07-07T02:35:04.710Z] Preparing to unpack .../45-lldb_1%3a19.0-63_amd64.deb ...
[2026-07-07T02:35:04.710Z] Unpacking lldb:amd64 (1:19.0-63) ...
[2026-07-07T02:35:04.725Z] Setting up media-types (13.0.0) ...
[2026-07-07T02:35:04.727Z] Setting up libxau6:amd64 (1:1.0.11-1) ...
[2026-07-07T02:35:04.727Z] Setting up net-tools (2.10-1.3) ...
[2026-07-07T02:35:04.728Z] Setting up libxdmcp6:amd64 (1:1.1.5-1) ...
[2026-07-07T02:35:04.729Z] Setting up libxcb1:amd64 (1.17.0-2+b1) ...
[2026-07-07T02:35:04.729Z] Setting up libedit2:amd64 (3.1-20250104-1) ...
[2026-07-07T02:35:04.730Z] Setting up x11-common (1:7.7+24+deb13u1) ...
[2026-07-07T02:35:04.769Z] invoke-rc.d: could not determine current runlevel
[2026-07-07T02:35:04.772Z] invoke-rc.d: policy-rc.d denied execution of start.
[2026-07-07T02:35:04.774Z] Setting up libz3-4:amd64 (4.13.3-1) ...
[2026-07-07T02:35:04.774Z] Setting up libexpat1-dev:amd64 (2.7.1-2) ...
[2026-07-07T02:35:04.774Z] Setting up libx11-data (2:1.8.12-1) ...
[2026-07-07T02:35:04.774Z] Setting up libncurses6:amd64 (6.5+20250216-2) ...
[2026-07-07T02:35:04.774Z] Setting up fonts-dejavu-mono (2.37-8) ...
[2026-07-07T02:35:04.775Z] Setting up libpng16-16t64:amd64 (1.6.48-1+deb13u5) ...
[2026-07-07T02:35:04.775Z] Setting up libtcl8.6:amd64 (8.6.16+dfsg-1) ...
[2026-07-07T02:35:04.775Z] Setting up libipt2 (2.1.2-1) ...
[2026-07-07T02:35:04.775Z] Setting up fonts-dejavu-core (2.37-8) ...
[2026-07-07T02:35:04.805Z] Setting up zlib1g-dev:amd64 (1:1.3.dfsg+really1.3.1-1+b1) ...
[2026-07-07T02:35:04.806Z] Setting up libx11-6:amd64 (2:1.8.12-1) ...
[2026-07-07T02:35:04.807Z] Setting up netbase (6.5) ...
[2026-07-07T02:35:04.814Z] Setting up python3-minimal (3.13.5-1) ...
[2026-07-07T02:35:04.901Z] Setting up libpython3.13-stdlib:amd64 (3.13.5-2+deb13u2) ...
[2026-07-07T02:35:04.902Z] Setting up libxml2:amd64 (2.12.7+dfsg+really2.9.14-2.1+deb13u2) ...
[2026-07-07T02:35:04.902Z] Setting up libpython3-stdlib:amd64 (3.13.5-1) ...
[2026-07-07T02:35:04.902Z] Setting up libpython3.13:amd64 (3.13.5-2+deb13u2) ...
[2026-07-07T02:35:04.902Z] Setting up libllvm19:amd64 (1:19.1.7-3+b1) ...
[2026-07-07T02:35:04.902Z] Setting up libxrender1:amd64 (1:0.9.12-1) ...
[2026-07-07T02:35:04.902Z] Setting up python3.13 (3.13.5-2+deb13u2) ...
[2026-07-07T02:35:05.356Z] Setting up fontconfig-config (2.15.0-2.3) ...
[2026-07-07T02:35:05.406Z] Setting up libxext6:amd64 (2:1.3.4-1+b3) ...
[2026-07-07T02:35:05.407Z] Setting up libpython3.13-testsuite (3.13.5-2+deb13u2) ...
[2026-07-07T02:35:07.571Z] Setting up libfreetype6:amd64 (2.13.3+dfsg-1+deb13u1) ...
[2026-07-07T02:35:07.571Z] Setting up libpython3.13-dev:amd64 (3.13.5-2+deb13u2) ...
[2026-07-07T02:35:07.571Z] Setting up libxss1:amd64 (1:1.2.3-1+b3) ...
[2026-07-07T02:35:07.571Z] Setting up libfontconfig1:amd64 (2.15.0-2.3) ...
[2026-07-07T02:35:07.571Z] Setting up libclang-cpp19 (1:19.1.7-3+b1) ...
[2026-07-07T02:35:07.571Z] Setting up libxft2:amd64 (2.3.6-1+b4) ...
[2026-07-07T02:35:07.572Z] Setting up libpython3-dev:amd64 (3.13.5-1) ...
[2026-07-07T02:35:07.572Z] Setting up libtk8.6:amd64 (8.6.16-1) ...
[2026-07-07T02:35:07.572Z] Setting up liblldb-19 (1:19.1.7-3+b1) ...
[2026-07-07T02:35:07.572Z] Setting up libpython3-all-dev:amd64 (3.13.5-1) ...
[2026-07-07T02:35:07.572Z] Setting up libpython3.13-dbg:amd64 (3.13.5-2+deb13u2) ...
[2026-07-07T02:35:07.572Z] Setting up python3-lldb-19 (1:19.1.7-3+b1) ...
[2026-07-07T02:35:07.572Z] Setting up libpython3-dbg:amd64 (3.13.5-1) ...
[2026-07-07T02:35:07.573Z] Setting up libpython3-all-dbg:amd64 (3.13.5-1) ...
[2026-07-07T02:35:07.573Z] Setting up lldb-19 (1:19.1.7-3+b1) ...
[2026-07-07T02:35:07.576Z] Setting up lldb:amd64 (1:19.0-63) ...
[2026-07-07T02:35:07.577Z] Processing triggers for libc-bin (2.41-12+deb13u3) ...
[2026-07-07T02:35:07.686Z] Installing Rust...
[2026-07-07T02:35:09.759Z] ./rustup-init: OK
[2026-07-07T02:35:09.766Z] warn: It looks like you have an existing rustup settings file at:
warn: /usr/local/rustup/settings.toml
warn: Rustup will install the default toolchain as specified in the settings file,
warn: instead of the one inferred from the default host triple.
[2026-07-07T02:35:09.768Z] info: profile set to minimal
info: default host triple is x86_64-unknown-linux-gnu
[2026-07-07T02:35:09.768Z] info: syncing channel updates for stable-x86_64-unknown-linux-gnu
[2026-07-07T02:35:10.958Z] info: latest update on 2026-06-30 for version 1.96.1 (31fca3adb 2026-06-26)
[2026-07-07T02:35:10.958Z] info: downloading 3 components
[2026-07-07T02:35:22.961Z] info: default toolchain set to stable-x86_64-unknown-linux-gnu
[2026-07-07T02:35:22.978Z] stable-x86_64-unknown-linux-gnu installed - rustc 1.96.1 (31fca3adb 2026-06-26)
[2026-07-07T02:35:22.978Z]
Rust is installed now. Great!
To get started you need Cargo's bin directory (/usr/local/cargo/bin) in your
PATH
environment variable. This has not been done automatically.
To configure your current shell, you need to source
the corresponding env file under /usr/local/cargo.
This is usually done by running one of the following (note the leading DOT):
. "/usr/local/cargo/env" # For sh/bash/zsh/ash/dash/pdksh
source "/usr/local/cargo/env.fish" # For fish
source "/usr/local/cargo/env.nu" # For nushell
source "/usr/local/cargo/env.tcsh" # For tcsh
. "/usr/local/cargo/env.ps1" # For pwsh
source "/usr/local/cargo/env.xsh" # For xonsh
[2026-07-07T02:35:22.990Z] Installing Rust components...
Installing Rust component: rust-analyzer
[2026-07-07T02:35:23.044Z] info: downloading component rust-analyzer
[2026-07-07T02:35:25.156Z] Installing Rust component: rust-src
[2026-07-07T02:35:25.193Z] info: downloading component rust-src
[2026-07-07T02:35:26.634Z] Installing Rust component: rustfmt
[2026-07-07T02:35:26.681Z] info: downloading component rustfmt
[2026-07-07T02:35:27.889Z] Installing Rust component: clippy
[2026-07-07T02:35:27.938Z] info: downloading component clippy
[2026-07-07T02:35:29.621Z] Updating shell configuration files...
[2026-07-07T02:35:29.659Z] Done!
[2026-07-07T02:35:45.772Z] --> 4dc1aff3e936
[2026-07-07T02:35:45.779Z] [2/2] STEP 11/13: ARG _DEV_CONTAINERS_IMAGE_USER=root
[2026-07-07T02:35:45.812Z] --> e96a495c7b1a
[2026-07-07T02:35:45.822Z] [2/2] STEP 12/13: USER $_DEV_CONTAINERS_IMAGE_USER
[2026-07-07T02:35:45.860Z] --> b4fe84370f55
[2026-07-07T02:35:45.870Z] [2/2] STEP 13/13: LABEL devcontainer.metadata="[ {\"id\":\"ghcr.io/devcontainers-extra/features/mise:1\"}, {\"id\":\"ghcr.io/devcontainers/features/rust:1\",\"capAdd\":[\"SYS_PTRACE\"],\"securityOpt\":[\"seccomp=unconfined\"],\"customizations\":{\"vscode\":{\"extensions\":[\"vadimcn.vscode-lldb\",\"rust-lang.rust-analyzer\",\"tamasfe.even-better-toml\"],\"settings\":{\"files.watcherExclude\":{\"**/target/**\":true},\"github.copilot.chat.codeGeneration.instructions\":[{\"text\":\"This dev container includes Rust, common Rust utilities, and needed dependencies pre-installed and available on the `PATH`, along with the Rust language extension for Rust development.\"}]}}}}, {\"postCreateCommand\":\"sh .devcontainer/post-create.sh\"} ]"
[2/2] COMMIT vsc-w-2184ab699f123f06eb77d125f333850bd2489eac0749b7383d3d6ea77d9aa9c4-features
[2026-07-07T02:35:45.905Z] --> 1f141192719e
[Warning] one or more build args were not consumed: [BUILDKIT_INLINE_CACHE _DEV_CONTAINERS_FEATURE_CONTENT_SOURCE]
[2026-07-07T02:35:45.905Z] Successfully tagged localhost/vsc-w-2184ab699f123f06eb77d125f333850bd2489eac0749b7383d3d6ea77d9aa9c4-features:latest
[2026-07-07T02:35:46.253Z] 1f141192719e6ebcc40a0c7fc97882ddc6c0ca968f76ac430cd4b0514bc1f2c9
[2026-07-07T02:35:46.257Z] Start: Run: /nix/store/h111xm96sylafdn3kgixgxyfs7af600r-podman-5.8.2/bin/podman run --sig-proxy=false -a STDOUT -a STDERR --mount type=bind,source=/var/lib/radicle-ci/adapters/devcontainer/devcontainer/state/4c2e270b-49cd-4bde-9f9a-c7b096d6d7f9/w,target=/workspaces/w --mount type=volume,src=radicle-ci-cache-0f21906dcab9-2b3df4dad4fd479c,dst=/workspaces/w/target --mount type=volume,src=radicle-ci-cache-0f21906dcab9-37614f8a2c9b734f,dst=/nix -l devcontainer.local_folder=/var/lib/radicle-ci/adapters/devcontainer/devcontainer/state/4c2e270b-49cd-4bde-9f9a-c7b096d6d7f9/w -l xyz.radicle.ci.run=4c2e270b-49cd-4bde-9f9a-c7b096d6d7f9 --security-opt label=disable --device=/dev/kvm --cap-add SYS_PTRACE --security-opt seccomp=unconfined --entrypoint /bin/sh vsc-w-2184ab699f123f06eb77d125f333850bd2489eac0749b7383d3d6ea77d9aa9c4-features -c echo Container started
[2026-07-07T02:35:46.530Z] Container started
[2026-07-07T02:35:46.988Z] Running the postCreateCommand from devcontainer.json...
[2026-07-07T02:35:48.044Z] info: downloading the Determinate Nix Installer
[2026-07-07T02:35:50.758Z] INFO nix-installer v3.21.2
[2026-07-07T02:35:51.291Z] INFO Step: Create directory `/nix`
INFO Step: Install Determinate Nixd
[2026-07-07T02:35:51.330Z] INFO Step: Provision Nix
[2026-07-07T02:35:52.951Z] INFO Step: Create build users (UID 30001-30032) and group (GID 30000)
[2026-07-07T02:35:54.776Z] INFO Step: Configure Nix
[2026-07-07T02:35:55.493Z] INFO Step: Create directory `/etc/tmpfiles.d`
INFO Step: Configure the Determinate Nix daemon
[2026-07-07T02:35:55.493Z] INFO Step: Cleanup
[2026-07-07T02:35:55.496Z] INFO Running self test for shell sh
[2026-07-07T02:35:55.520Z] INFO Running self test for shell bash
[2026-07-07T02:35:55.539Z] WARN SelfTest([ShellFailed { shell: Sh, command: "\"sh\" \"-lc\" \"exec nix build --option substitute false --option post-build-hook '' --no-link --expr 'derivation { name = \\\"self-test-sh-1783391755496\\\"; system = \\\"x86_64-linux\\\"; builder = \\\"/bin/sh\\\"; args = [\\\"-c\\\" \\\"echo hello > \\\\$out\\\"]; }'\"", output: Output { status: ExitStatus(unix_wait_status(256)), stdout: "", stderr: "error: cannot connect to socket at '/nix/var/nix/daemon-socket/socket': No such file or directory\n" } }, ShellFailed { shell: Bash, command: "\"bash\" \"-lc\" \"exec nix build --option substitute false --option post-build-hook '' --no-link --expr 'derivation { name = \\\"self-test-bash-1783391755520\\\"; system = \\\"x86_64-linux\\\"; builder = \\\"/bin/sh\\\"; args = [\\\"-c\\\" \\\"echo hello > \\\\$out\\\"]; }'\"", output: Output { status: ExitStatus(unix_wait_status(256)), stdout: "", stderr: "error: cannot connect to socket at '/nix/var/nix/daemon-socket/socket': No such file or directory\n" } }])
[2026-07-07T02:35:55.561Z] Nix was installed successfully!
To get started using Nix, open a new shell or run `. /nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh`
{"outcome":"success","containerId":"6f910f1281e730c186677736926320c7241f796639843cff29db94c6f2260e20","remoteUser":"root","remoteWorkspaceFolder":"/workspaces/w"}
$ /nix/store/ik0xcys4cqjr4hdywzinrylm9sm48bvc-devcontainer-0.87.0/bin/devcontainer exec --docker-path /nix/store/h111xm96sylafdn3kgixgxyfs7af600r-podman-5.8.2/bin/podman --workspace-folder /var/lib/radicle-ci/adapters/devcontainer/devcontainer/state/4c2e270b-49cd-4bde-9f9a-c7b096d6d7f9/w --id-label devcontainer.local_folder=/var/lib/radicle-ci/adapters/devcontainer/devcontainer/state/4c2e270b-49cd-4bde-9f9a-c7b096d6d7f9/w --id-label xyz.radicle.ci.run=4c2e270b-49cd-4bde-9f9a-c7b096d6d7f9 --remote-env RADICLE_CI_RUN_ID=4c2e270b-49cd-4bde-9f9a-c7b096d6d7f9 --remote-env RADICLE_CI_EVENT=push --remote-env RADICLE_CI_COMMIT=61c65ed2d7660960133cc13d72f363361da904bf --remote-env RADICLE_CI_REPOSITORY=rad:z27Mx16VDZt2nwGygkyPCbK9ppuB --remote-env RADICLE_CI_AUTHOR=did:key:z6MkiaGEHcXc9v3ou5ZvfnRC8xBrGoEFWqvPQPTLEU8bUt8C --remote-env RADICLE_CI_AUTHOR_ALIAS=nolan --remote-env RADICLE_CI_BRANCH=main /bin/sh -c script="$(mktemp)" && cat >"$script" && chmod +x "$script" && exec "$script"
+ mise install
mise cargo-release@1.1.2 [1/3] install
mise git-cliff@2.13.1 [1/3] install
mise cargo-release@1.1.2 [1/3] download cargo-release-v1.1.2-x86_64-unknown-linux-musl.tar.gz
mise cargo-release@1.1.2 [2/3] checksum cargo-release-v1.1.2-x86_64-unknown-linux-musl.tar.gz
mise cargo-release@1.1.2 [2/3] verify GitHub artifact attestations
mise cargo-release@1.1.2 [2/3] verify SLSA provenance
mise cargo-release@1.1.2 [3/3] extract cargo-release-v1.1.2-x86_64-unknown-linux-musl.tar.gz
mise cargo-release@1.1.2 ✓ installed
mise git-cliff@2.13.1 [1/3] download git-cliff-2.13.1-x86_64-unknown-linux-musl.tar.gz
mise git-cliff@2.13.1 [2/3] checksum git-cliff-2.13.1-x86_64-unknown-linux-musl.tar.gz
mise git-cliff@2.13.1 [3/3] extract git-cliff-2.13.1-x86_64-unknown-linux-musl.tar.gz
mise git-cliff@2.13.1 ✓ installed
++ mise activate bash --shims
+ eval 'export PATH="/root/.local/share/mise/shims:$PATH"'
++ export PATH=/root/.local/share/mise/shims:/usr/local/cargo/bin:/root/.nix-profile/bin:/nix/var/nix/profiles/default/bin:/usr/local/cargo/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
++ PATH=/root/.local/share/mise/shims:/usr/local/cargo/bin:/root/.nix-profile/bin:/nix/var/nix/profiles/default/bin:/usr/local/cargo/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
+ cargo fmt --check
+ cargo clippy --all-targets
Updating crates.io index
Downloading crates ...
Downloaded aead v0.5.2
Downloaded adler2 v2.0.1
Downloaded anstyle-query v1.1.5
Downloaded fast-glob v0.3.3
Downloaded ff v0.13.1
Downloaded askama_escape v0.10.3
Downloaded base-x v0.2.11
Downloaded ahash v0.8.12
Downloaded crypto-common v0.1.7
Downloaded errno v0.3.14
Downloaded cypheraddr v0.4.1
Downloaded doc-comment v0.3.4
Downloaded cfg-if v1.0.4
Downloaded base256emoji v1.0.2
Downloaded cpufeatures v0.2.17
Downloaded nonempty v0.11.0
Downloaded base32 v0.4.0
Downloaded num-iter v0.1.45
Downloaded ct-codecs v1.1.7
Downloaded dunce v1.0.5
Downloaded culpa-macros v1.0.2
Downloaded html-page v0.5.0
Downloaded data-encoding-macro v0.1.20
Downloaded data-encoding-macro-internal v0.1.18
Downloaded block-buffer v0.10.4
Downloaded ctrlc v3.5.2
Downloaded base16ct v0.2.0
Downloaded cfg_aliases v0.2.1
Downloaded culpa v1.0.2
Downloaded equivalent v1.0.2
Downloaded cyphergraphy v0.3.0
Downloaded base45 v3.2.0
Downloaded block-padding v0.3.3
Downloaded derive_builder_macro v0.20.2
Downloaded dyn-clone v1.0.20
Downloaded colorchoice v1.0.5
Downloaded cvt v0.1.2
Downloaded clap_lex v1.1.0
Downloaded filetime v0.2.29
Downloaded opaque-debug v0.3.1
Downloaded descape v3.0.0
Downloaded darling_macro v0.20.11
Downloaded pbkdf2 v0.12.2
Downloaded ghash v0.5.1
Downloaded bcrypt-pbkdf v0.10.0
Downloaded askama_parser v0.2.1
Downloaded askama v0.12.1
Downloaded amplify_syn v2.0.1
Downloaded mime v0.3.17
Downloaded arraydeque v0.5.1
Downloaded askama_derive v0.12.5
Downloaded nonempty v0.9.0
Downloaded amplify_num v0.5.4
Downloaded nonempty v0.12.0
Downloaded anstyle v1.0.14
Downloaded duration-str v0.21.0
Downloaded data-encoding v2.11.0
Downloaded const-str v0.4.3
Downloaded diligent-date-parser v0.1.5
Downloaded cipher v0.4.4
Downloaded itoa v1.0.18
Downloaded digest v0.10.7
Downloaded crossbeam-deque v0.8.6
Downloaded ctr v0.9.2
Downloaded ecdsa v0.16.9
Downloaded byteorder v1.5.0
Downloaded cbc v0.1.2
Downloaded blowfish v0.9.1
Downloaded ec25519 v0.1.0
Downloaded chacha20 v0.9.1
Downloaded deranged v0.5.8
Downloaded derive_builder_core v0.20.2
Downloaded potential_utf v0.1.5
Downloaded ascii v1.1.0
Downloaded arrayvec v0.7.7
Downloaded autocfg v1.5.1
Downloaded powerfmt v0.2.0
Downloaded pkg-config v0.3.33
Downloaded pkcs8 v0.10.2
Downloaded proc-macro2-diagnostics v0.10.1
Downloaded anstyle-parse v1.0.0
Downloaded anstream v1.0.0
Downloaded displaydoc v0.2.6
Downloaded atom_syndication v0.12.8
Downloaded erased-serde v0.4.10
Downloaded clap_derive v4.6.1
Downloaded line-col v0.2.1
Downloaded ed25519 v1.5.3
Downloaded crossbeam-epoch v0.9.18
Downloaded derive_builder v0.20.2
Downloaded match-lookup v0.1.2
Downloaded keccak v0.1.6
Downloaded const-oid v0.9.6
Downloaded ident_case v1.0.1
Downloaded darling v0.20.11
Downloaded amplify_derive v4.0.1
Downloaded anyhow v1.0.103
Downloaded pear_codegen v0.2.9
Downloaded amplify v4.9.0
Downloaded bytesize v2.4.0
Downloaded base64ct v1.8.3
Downloaded is_terminal_polyfill v1.70.2
Downloaded globwalk v0.9.1
Downloaded pulldown-cmark-escape v0.11.0
Downloaded matchers v0.2.0
Downloaded primeorder v0.13.6
Downloaded ppv-lite86 v0.2.21
Downloaded num-conv v0.2.2
Downloaded proc-macro-error2 v2.0.1
Downloaded idna_adapter v1.2.2
Downloaded basic-toml v0.1.10
Downloaded fs2 v0.4.3
Downloaded elliptic-curve v0.13.8
Downloaded proc-macro-error-attr2 v2.0.0
Downloaded radicle-git-ext v0.12.0
Downloaded radicle-dag v0.10.0
Downloaded git-ref-format-core v0.6.0
Downloaded pkcs1 v0.7.5
Downloaded crossbeam-utils v0.8.21
Downloaded clap v4.6.1
Downloaded darling_core v0.20.11
Downloaded radicle-git-metadata v0.1.0
Downloaded cc v1.2.65
Downloaded inout v0.1.4
Downloaded proc-macro2 v1.0.106
Downloaded radicle-git-metadata v0.2.0
Downloaded radicle-localtime v0.1.0
Downloaded radicle-git-ref-format v0.1.0
Downloaded radicle-cob v0.19.0
Downloaded radicle-ssh v0.10.0
Downloaded radicle-oid v0.1.0
Downloaded crypto-bigint v0.5.5
Downloaded radicle-crypto v0.16.0
Downloaded aes v0.8.4
Downloaded ref-cast v1.0.25
Downloaded rand_chacha v0.3.1
Downloaded aes-gcm v0.10.3
Downloaded rand_core v0.6.4
Downloaded radicle-job v0.5.2
Downloaded radicle-std-ext v0.2.0
Downloaded der v0.7.10
Downloaded cyphernet v0.5.3
Downloaded lazy_static v1.5.0
Downloaded git-ref-format v0.6.0
Downloaded generic-array v0.14.7
Downloaded form_urlencoded v1.2.2
Downloaded crossbeam-channel v0.5.15
Downloaded roadmap v0.7.0
Downloaded deunicode v1.6.2
Downloaded clap_builder v4.6.0
Downloaded same-file v1.0.6
Downloaded rand v0.8.6
Downloaded git-ref-format-macro v0.6.0
Downloaded pulldown-cmark v0.13.4
Downloaded pear v0.2.9
Downloaded num-integer v0.1.46
Downloaded fastrand v2.4.1
Downloaded aho-corasick v1.1.4
Downloaded find-msvc-tools v0.1.9
Downloaded base64 v0.21.7
Downloaded base64 v0.22.1
Downloaded ref-cast-impl v1.0.25
Downloaded radicle-core v0.2.0
Downloaded fnv v1.0.7
Downloaded percent-encoding v2.3.2
Downloaded pem-rfc7468 v0.7.0
Downloaded crc32fast v1.5.0
Downloaded bitflags v2.13.0
Downloaded getopts v0.2.24
Downloaded globset v0.4.18
Downloaded foldhash v0.1.5
Downloaded heck v0.5.0
Downloaded hashlink v0.9.1
Downloaded group v0.13.0
Downloaded pin-project-lite v0.2.17
Downloaded rss v2.0.13
Downloaded serde_spanned v0.6.9
Downloaded rsa v0.9.10
Downloaded serde_derive_internals v0.29.1
Downloaded radicle-surf v0.27.1
Downloaded serde-untagged v0.1.9
Downloaded marked-yaml v0.7.2
Downloaded signature v1.6.4
Downloaded schemars v1.2.1
Downloaded sha2 v0.10.9
Downloaded simd-adler32 v0.3.9
Downloaded slug v0.1.6
Downloaded serde_yaml v0.9.34+deprecated
Downloaded ssh-cipher v0.2.0
Downloaded bstr v1.12.3
Downloaded smawk v0.3.3
Downloaded sqlite v0.37.0
Downloaded stable_deref_trait v1.2.1
Downloaded ssh-encoding v0.2.0
Downloaded smallvec v1.15.2
Downloaded subtle v2.6.1
Downloaded strsim v0.11.1
Downloaded subplotlib v0.14.0
Downloaded synstructure v0.13.2
Downloaded subplotlib-derive v0.14.0
Downloaded state v0.6.0
Downloaded sqlite3-sys v0.18.0
Downloaded thiserror-impl v2.0.18
Downloaded regex-syntax v0.8.11
Downloaded textwrap v0.16.2
Downloaded ssh-key v0.6.7
Downloaded pest_generator v2.8.6
Downloaded time-core v0.1.9
Downloaded litemap v0.8.2
Downloaded inlinable_string v0.1.15
Downloaded getrandom v0.2.17
Downloaded jobserver v0.1.34
Downloaded rustix v1.1.4
Downloaded tinyvec_macros v0.1.1
Downloaded figment v0.10.19
Downloaded serde_path_to_error v0.1.20
Downloaded sec1 v0.7.3
Downloaded tinyvec v1.11.0
Downloaded p256 v0.13.2
Downloaded syn v1.0.109
Downloaded icu_provider v2.2.0
Downloaded getrandom v0.4.3
Downloaded icu_normalizer_data v2.2.0
Downloaded icu_normalizer v2.2.0
Downloaded once_cell v1.21.4
Downloaded tracing-attributes v0.1.31
Downloaded typeid v1.0.3
Downloaded tracing-log v0.2.0
Downloaded tracing-serde v0.2.0
Downloaded toml_write v0.1.2
Downloaded toml_edit v0.22.27
Downloaded thiserror-impl v1.0.69
Downloaded regex-automata v0.4.14
Downloaded yoke-derive v0.8.2
Downloaded uncased v0.9.10
Downloaded toml_datetime v0.6.11
Downloaded time v0.3.53
Downloaded radicle-ci-broker v0.29.0
Downloaded utf8parse v0.2.2
Downloaded utf8-width v0.1.8
Downloaded uuid v1.23.4
Downloaded walkdir v2.5.0
Downloaded unicode-width v0.2.2
Downloaded zerofrom v0.1.8
Downloaded yaml-rust2 v0.10.4
Downloaded winnow v0.7.15
Downloaded encoding_rs v0.8.35
Downloaded yansi v1.0.1
Downloaded yaml-rust2 v0.9.0
Downloaded flate2 v1.1.9
Downloaded zerovec-derive v0.11.3
Downloaded zmij v1.0.21
Downloaded zerofrom-derive v0.1.7
Downloaded xattr v1.6.1
Downloaded zerotrie v0.2.4
Downloaded writeable v0.6.3
Downloaded zerovec v0.11.6
Downloaded vcpkg v0.2.15
Downloaded thiserror v2.0.18
Downloaded ryu v1.0.23
Downloaded version_check v0.9.5
Downloaded unicase v2.9.0
Downloaded url v2.5.8
Downloaded unicode-linebreak v0.1.5
Downloaded tracing v0.1.44
Downloaded sha3 v0.10.9
Downloaded unsafe-libyaml-norway v0.2.15
Downloaded unicode-normalization v0.1.25
Downloaded utf8_iter v1.0.4
Downloaded universal-hash v0.5.1
Downloaded unicode-segmentation v1.13.3
Downloaded unicode-ident v1.0.24
Downloaded ucd-trie v0.1.7
Downloaded tracing-subscriber v0.3.23
Downloaded thread_local v1.1.9
Downloaded tempfile v3.27.0
Downloaded miniz_oxide v0.8.9
Downloaded icu_properties v2.2.0
Downloaded pikchr v0.1.4
Downloaded pest_meta v2.8.6
Downloaded icu_locale_core v2.2.0
Downloaded num-traits v0.2.19
Downloaded nu-ansi-term v0.50.3
Downloaded tinystr v0.8.3
Downloaded log v0.4.33
Downloaded schemars_derive v1.2.1
Downloaded ignore v0.4.27
Downloaded terminal_size v0.4.4
Downloaded remove_dir_all v1.0.0
Downloaded pest_derive v2.8.6
Downloaded fs_at v0.2.1
Downloaded subplot v0.14.0
Downloaded hmac v0.12.1
Downloaded normpath v1.5.1
Downloaded minimal-lexical v0.2.1
Downloaded quote v1.0.46
Downloaded zeroize v1.9.0
Downloaded yoke v0.8.3
Downloaded tera v1.20.1
Downloaded pest v2.8.6
Downloaded typenum v1.20.1
Downloaded libm v0.2.16
Downloaded p384 v0.13.1
Downloaded icu_properties_data v2.2.0
Downloaded hashbrown v0.17.1
Downloaded git2 v0.20.4
Downloaded regex v1.12.4
Downloaded syn v2.0.118
Downloaded zerocopy v0.8.52
Downloaded nix v0.29.0
Downloaded nix v0.31.3
Downloaded idna v1.1.0
Downloaded p521 v0.13.3
Downloaded hashbrown v0.15.5
Downloaded hashbrown v0.14.5
Downloaded num-bigint-dig v0.8.6
Downloaded unsafe-libyaml v0.2.11
Downloaded tracing-core v0.1.36
Downloaded tar v0.4.46
Downloaded nom v7.1.3
Downloaded memchr v2.8.2
Downloaded indexmap v2.14.0
Downloaded icu_collections v2.2.0
Downloaded toml v0.8.23
Downloaded time-macros v0.2.31
Downloaded qcheck v1.0.0
Downloaded polyval v0.6.2
Downloaded poly1305 v0.8.0
Downloaded html-escape v0.2.13
Downloaded thiserror v1.0.69
Downloaded serde_json v1.0.150
Downloaded spki v0.7.3
Downloaded spin v0.9.8
Downloaded socks5-client v0.4.3
Downloaded radicle v0.22.1
Downloaded siphasher v1.0.3
Downloaded rust_decimal v1.42.1
Downloaded libc v0.2.186
Downloaded signature v2.2.0
Downloaded libz-sys v1.1.29
Downloaded shlex v2.0.1
Downloaded sharded-slab v0.1.7
Downloaded serde_norway v0.9.42
Downloaded serde_derive v1.0.228
Downloaded serde v1.0.228
Downloaded serde_core v1.0.228
Downloaded rfc6979 v0.4.0
Downloaded shell-words v1.1.1
Downloaded quick-xml v0.39.4
Downloaded multibase v0.9.3
Downloaded marked-yaml v0.8.0
Downloaded humansize v2.1.3
Downloaded mime_guess v2.0.5
Downloaded chrono v0.4.45
Downloaded hashlink v0.10.0
Downloaded libgit2-sys v0.18.5+1.9.4
Downloaded linux-raw-sys v0.12.1
Downloaded sqlite3-src v0.7.0
Compiling proc-macro2 v1.0.106
Compiling unicode-ident v1.0.24
Compiling quote v1.0.46
Compiling version_check v0.9.5
Compiling libc v0.2.186
Checking cfg-if v1.0.4
Compiling serde_core v1.0.228
Checking typenum v1.20.1
Compiling serde v1.0.228
Compiling shlex v2.0.1
Compiling find-msvc-tools v0.1.9
Checking subtle v2.6.1
Checking stable_deref_trait v1.2.1
Compiling memchr v2.8.2
Compiling pkg-config v0.3.33
Checking bitflags v2.13.0
Compiling thiserror v1.0.69
Checking cpufeatures v0.2.17
Compiling zerocopy v0.8.52
Checking litemap v0.8.2
Compiling thiserror v2.0.18
Compiling zmij v1.0.21
Checking writeable v0.6.3
Compiling syn v1.0.109
Compiling icu_normalizer_data v2.2.0
Checking utf8_iter v1.0.4
Compiling icu_properties_data v2.2.0
Compiling crossbeam-utils v0.8.21
Compiling generic-array v0.14.7
Compiling vcpkg v0.2.15
Checking smallvec v1.15.2
Checking hashbrown v0.17.1
Checking equivalent v1.0.2
Compiling rustix v1.1.4
Compiling anyhow v1.0.103
Compiling once_cell v1.21.4
Compiling getrandom v0.4.3
Checking percent-encoding v2.3.2
Compiling linux-raw-sys v0.12.1
Checking signature v1.6.4
Compiling autocfg v1.5.1
Checking opaque-debug v0.3.1
Checking ed25519 v1.5.3
Compiling ahash v0.8.12
Checking log v0.4.33
Compiling cfg_aliases v0.2.1
Checking ascii v1.1.0
Checking ct-codecs v1.1.7
Checking amplify_num v0.5.4
Compiling libm v0.2.16
Checking itoa v1.0.18
Checking form_urlencoded v1.2.2
Compiling aho-corasick v1.1.4
Compiling unicase v2.9.0
Compiling same-file v1.0.6
Checking base64ct v1.8.3
Checking keccak v0.1.6
Compiling regex-syntax v0.8.11
Compiling walkdir v2.5.0
Compiling num-traits v0.2.19
Compiling encoding_rs v0.8.35
Compiling data-encoding v2.11.0
Compiling syn v2.0.118
Compiling ident_case v1.0.1
Checking pem-rfc7468 v0.7.0
Compiling arraydeque v0.5.1
Compiling doc-comment v0.3.4
Checking base32 v0.4.0
Checking byteorder v1.5.0
Checking crypto-common v0.1.7
Checking block-padding v0.3.3
Checking block-buffer v0.10.4
Checking inout v0.1.4
Checking universal-hash v0.5.1
Compiling jobserver v0.1.34
Checking aead v0.5.2
Compiling fnv v1.0.7
Checking digest v0.10.7
Checking cipher v0.4.4
Checking polyval v0.6.2
Checking fastrand v2.4.1
Compiling serde_json v1.0.150
Compiling strsim v0.11.1
Checking ghash v0.5.1
Checking sha2 v0.10.9
Checking sha3 v0.10.9
Compiling cc v1.2.65
Compiling ucd-trie v0.1.7
Checking ctr v0.9.2
Checking getrandom v0.2.17
Checking aes v0.8.4
Compiling pest v2.8.6
Checking chacha20 v0.9.1
Checking cbc v0.1.2
Checking blowfish v0.9.1
Checking ec25519 v0.1.0
Checking rand_core v0.6.4
Checking ssh-encoding v0.2.0
Checking pbkdf2 v0.12.2
Checking poly1305 v0.8.0
Compiling crossbeam-epoch v0.9.18
Compiling bstr v1.12.3
Compiling unicode-width v0.2.2
Compiling foldhash v0.1.5
Checking aes-gcm v0.10.3
Checking const-str v0.4.3
Checking zeroize v1.9.0
Compiling hashbrown v0.15.5
Checking ssh-cipher v0.2.0
Compiling crossbeam-deque v0.8.6
Checking bcrypt-pbkdf v0.10.0
Checking rand v0.8.6
Compiling ref-cast v1.0.25
Compiling crc32fast v1.5.0
Compiling typeid v1.0.3
Checking indexmap v2.14.0
Checking signature v2.2.0
Checking base45 v3.2.0
Checking base-x v0.2.11
Checking ssh-key v0.6.7
Checking chrono v0.4.45
Compiling proc-macro-error-attr2 v2.0.0
Compiling serde_path_to_error v0.1.20
Compiling amplify_syn v2.0.1
Compiling nix v0.29.0
Checking qcheck v1.0.0
Compiling hashlink v0.10.0
Compiling regex-automata v0.4.14
Compiling pest_meta v2.8.6
Compiling simd-adler32 v0.3.9
Compiling unicode-linebreak v0.1.5
Checking utf8parse v0.2.2
Compiling adler2 v2.0.1
Compiling erased-serde v0.4.10
Compiling smawk v0.3.3
Compiling deunicode v1.6.2
Compiling pulldown-cmark v0.13.4
Compiling tempfile v3.27.0
Compiling miniz_oxide v0.8.9
Compiling textwrap v0.16.2
Checking anstyle-parse v1.0.0
Compiling yaml-rust2 v0.10.4
Compiling slug v0.1.6
Compiling xattr v1.6.1
Compiling getopts v0.2.24
Compiling libz-sys v1.1.29
Compiling libgit2-sys v0.18.5+1.9.4
Compiling sqlite3-src v0.7.0
Compiling pikchr v0.1.4
Compiling filetime v0.2.29
Compiling subplot v0.14.0
Checking tracing-core v0.1.36
Compiling amplify_derive v4.0.1
Compiling proc-macro2-diagnostics v0.10.1
Compiling num-conv v0.2.2
Compiling humansize v2.1.3
Compiling unicode-segmentation v1.13.3
Compiling lazy_static v1.5.0
Checking anstyle-query v1.1.5
Checking colorchoice v1.0.5
Compiling utf8-width v0.1.8
Checking is_terminal_polyfill v1.70.2
Compiling pin-project-lite v0.2.17
Compiling pulldown-cmark-escape v0.11.0
Compiling time-core v0.1.9
Checking anstyle v1.0.14
Checking dyn-clone v1.0.20
Checking winnow v0.7.15
Checking tinyvec_macros v0.1.1
Checking tinyvec v1.11.0
Checking anstream v1.0.0
Compiling time-macros v0.2.31
Compiling html-escape v0.2.13
Compiling tar v0.4.46
Compiling flate2 v1.1.9
Checking terminal_size v0.4.4
Checking radicle-dag v0.10.0
Compiling mime_guess v2.0.5
Compiling ppv-lite86 v0.2.21
Compiling hashbrown v0.14.5
Checking cvt v0.1.2
Checking ryu v1.0.23
Compiling minimal-lexical v0.2.1
Compiling descape v3.0.0
Checking deranged v0.5.8
Compiling rand_chacha v0.3.1
Checking clap_lex v1.1.0
Compiling line-col v0.2.1
Compiling rust_decimal v1.42.1
Compiling base64 v0.22.1
Compiling yansi v1.0.1
Compiling heck v0.5.0
Checking powerfmt v0.2.0
Compiling hashlink v0.9.1
Checking base64 v0.21.7
Compiling radicle-surf v0.27.1
Checking clap_builder v4.6.0
Compiling synstructure v0.13.2
Compiling darling_core v0.20.11
Compiling globset v0.4.18
Compiling pest_generator v2.8.6
Compiling serde_derive_internals v0.29.1
Compiling proc-macro-error2 v2.0.1
Compiling yaml-rust2 v0.9.0
Compiling regex v1.12.4
Checking quick-xml v0.39.4
Checking fs_at v0.2.1
Compiling ignore v0.4.27
Checking time v0.3.53
Checking amplify v4.9.0
Compiling nom v7.1.3
Checking crossbeam-channel v0.5.15
Checking serde-untagged v0.1.9
Checking unicode-normalization v0.1.25
Checking diligent-date-parser v0.1.5
Checking bytesize v2.4.0
Compiling nix v0.31.3
Compiling uncased v0.9.10
Checking cyphergraphy v0.3.0
Checking arrayvec v0.7.7
Checking fast-glob v0.3.3
Compiling mime v0.3.17
Checking siphasher v1.0.3
Checking toml_write v0.1.2
Checking cypheraddr v0.4.1
Checking dunce v1.0.5
Compiling subplotlib v0.14.0
Checking normpath v1.5.1
Checking radicle-std-ext v0.2.0
Checking sharded-slab v0.1.7
Checking remove_dir_all v1.0.0
Checking tracing-log v0.2.0
Checking uuid v1.23.4
Checking fs2 v0.4.3
Checking socks5-client v0.4.3
Compiling figment v0.10.19
Checking thread_local v1.1.9
Compiling globwalk v0.9.1
Checking nonempty v0.11.0
Checking cyphernet v0.5.3
Checking unsafe-libyaml v0.2.11
Compiling radicle-ci-broker v0.29.0
Checking nu-ansi-term v0.50.3
Checking inlinable_string v0.1.15
Checking unsafe-libyaml-norway v0.2.15
Checking state v0.6.0
Checking shell-words v1.1.1
Checking matchers v0.2.0
Checking askama_escape v0.10.3
Checking nonempty v0.12.0
Checking html-page v0.5.0
Compiling serde_derive v1.0.228
Compiling zerofrom-derive v0.1.7
Compiling yoke-derive v0.8.2
Compiling zerovec-derive v0.11.3
Compiling displaydoc v0.2.6
Compiling thiserror-impl v1.0.69
Compiling thiserror-impl v2.0.18
Compiling data-encoding-macro-internal v0.1.18
Compiling match-lookup v0.1.2
Compiling tracing-attributes v0.1.31
Compiling ref-cast-impl v1.0.25
Compiling schemars_derive v1.2.1
Compiling culpa-macros v1.0.2
Compiling pest_derive v2.8.6
Checking base256emoji v1.0.2
Compiling clap_derive v4.6.1
Checking data-encoding-macro v0.1.20
Compiling askama_parser v0.2.1
Compiling pear_codegen v0.2.9
Checking multibase v0.9.3
Compiling darling_macro v0.20.11
Checking ctrlc v3.5.2
Compiling darling v0.20.11
Compiling derive_builder_core v0.20.2
Checking zerofrom v0.1.8
Compiling culpa v1.0.2
Checking pear v0.2.9
Checking yoke v0.8.3
Checking radicle-ssh v0.10.0
Compiling git-ref-format-core v0.6.0
Compiling tracing v0.1.44
Checking zerovec v0.11.6
Checking zerotrie v0.2.4
Checking radicle-git-metadata v0.1.0
Checking radicle-git-metadata v0.2.0
Compiling git-ref-format-macro v0.6.0
Checking tinystr v0.8.3
Checking potential_utf v0.1.5
Compiling derive_builder_macro v0.20.2
Checking icu_collections v2.2.0
Checking icu_locale_core v2.2.0
Checking clap v4.6.1
Checking derive_builder v0.20.2
Checking atom_syndication v0.12.8
Checking icu_provider v2.2.0
Checking rss v2.0.13
Checking icu_properties v2.2.0
Checking icu_normalizer v2.2.0
Checking nonempty v0.9.0
Checking schemars v1.2.1
Checking serde_spanned v0.6.9
Checking toml_datetime v0.6.11
Checking radicle-localtime v0.1.0
Checking tracing-serde v0.2.0
Checking duration-str v0.21.0
Checking serde_yaml v0.9.34+deprecated
Checking serde_norway v0.9.42
Compiling marked-yaml v0.7.2
Compiling marked-yaml v0.8.0
Compiling tera v1.20.1
Compiling basic-toml v0.1.10
Checking tracing-subscriber v0.3.23
Checking radicle-git-ref-format v0.1.0
Checking git-ref-format v0.6.0
Checking toml_edit v0.22.27
Checking idna_adapter v1.2.2
Checking idna v1.1.0
Checking url v2.5.8
Compiling roadmap v0.7.0
Compiling askama_derive v0.12.5
Checking askama v0.12.1
Checking toml v0.8.23
Checking git2 v0.20.4
Compiling subplotlib-derive v0.14.0
Checking radicle-oid v0.1.0
Checking radicle-git-ext v0.12.0
Checking sqlite3-sys v0.18.0
Checking sqlite v0.37.0
Checking radicle-crypto v0.16.0
Checking radicle-cob v0.19.0
Checking radicle-core v0.2.0
Checking radicle v0.22.1
Checking radicle-job v0.5.2
Checking radicle-devcontainer-ci v0.1.0 (/workspaces/w)
Finished `dev` profile [unoptimized + debuginfo] target(s) in 31.48s
+ cargo test
Compiling cfg-if v1.0.4
Compiling memchr v2.8.2
Compiling typenum v1.20.1
Compiling bitflags v2.13.0
Compiling subtle v2.6.1
Compiling stable_deref_trait v1.2.1
Compiling once_cell v1.21.4
Compiling itoa v1.0.18
Compiling linux-raw-sys v0.12.1
Compiling cpufeatures v0.2.17
Compiling writeable v0.6.3
Compiling litemap v0.8.2
Compiling serde_core v1.0.228
Compiling libc v0.2.186
Compiling percent-encoding v2.3.2
Compiling utf8_iter v1.0.4
Compiling thiserror v1.0.69
Compiling zerofrom v0.1.8
Compiling smallvec v1.15.2
Compiling equivalent v1.0.2
Compiling regex-syntax v0.8.11
Compiling hashbrown v0.17.1
Compiling thiserror v2.0.18
Compiling zmij v1.0.21
Compiling icu_normalizer_data v2.2.0
Compiling yoke v0.8.3
Compiling icu_properties_data v2.2.0
Compiling fastrand v2.4.1
Compiling crossbeam-utils v0.8.21
Compiling encoding_rs v0.8.35
Compiling opaque-debug v0.3.1
Compiling signature v1.6.4
Compiling strsim v0.11.1
Compiling ascii v1.1.0
Compiling amplify_num v0.5.4
Compiling log v0.4.33
Compiling ct-codecs v1.1.7
Compiling ed25519 v1.5.3
Compiling anyhow v1.0.103
Compiling zerovec v0.11.6
Compiling zerotrie v0.2.4
Compiling form_urlencoded v1.2.2
Compiling keccak v0.1.6
Compiling rustix v1.1.4
Compiling base64ct v1.8.3
Compiling num-traits v0.2.19
Compiling ahash v0.8.12
Compiling base32 v0.4.0
Compiling byteorder v1.5.0
Compiling aho-corasick v1.1.4
Compiling pest v2.8.6
Compiling darling_core v0.20.11
Compiling hashbrown v0.14.5
Compiling bstr v1.12.3
Compiling crossbeam-epoch v0.9.18
Compiling pem-rfc7468 v0.7.0
Compiling sqlite3-src v0.7.0
Compiling getrandom v0.2.17
Compiling const-str v0.4.3
Compiling generic-array v0.14.7
Compiling tinystr v0.8.3
Compiling potential_utf v0.1.5
Compiling zeroize v1.9.0
Compiling data-encoding v2.11.0
Compiling icu_locale_core v2.2.0
Compiling icu_collections v2.2.0
Compiling rand_core v0.6.4
Compiling crossbeam-deque v0.8.6
Compiling base256emoji v1.0.2
Compiling hashlink v0.9.1
Compiling sqlite3-sys v0.18.0
Compiling libm v0.2.16
Compiling serde_path_to_error v0.1.20
Compiling base-x v0.2.11
Compiling lazy_static v1.5.0
Compiling data-encoding-macro v0.1.20
Compiling libz-sys v1.1.29
Compiling signature v2.2.0
Compiling libgit2-sys v0.18.5+1.9.4
Compiling base45 v3.2.0
Compiling ec25519 v0.1.0
Compiling crypto-common v0.1.7
Compiling block-buffer v0.10.4
Compiling block-padding v0.3.3
Compiling universal-hash v0.5.1
Compiling aead v0.5.2
Compiling inout v0.1.4
Compiling digest v0.10.7
Compiling polyval v0.6.2
Compiling poly1305 v0.8.0
Compiling cipher v0.4.4
Compiling pest_meta v2.8.6
Compiling rand v0.8.6
Compiling pin-project-lite v0.2.17
Compiling sha2 v0.10.9
Compiling ghash v0.5.1
Compiling sha3 v0.10.9
Compiling pbkdf2 v0.12.2
Compiling aes v0.8.4
Compiling ctr v0.9.2
Compiling cbc v0.1.2
Compiling blowfish v0.9.1
Compiling amplify v4.9.0
Compiling chacha20 v0.9.1
Compiling multibase v0.9.3
Compiling icu_provider v2.2.0
Compiling regex-automata v0.4.14
Compiling ssh-encoding v0.2.0
Compiling bcrypt-pbkdf v0.10.0
Compiling humansize v2.1.3
Compiling yaml-rust2 v0.9.0
Compiling getrandom v0.4.3
Compiling qcheck v1.0.0
Compiling sqlite v0.37.0
Compiling rand_chacha v0.3.1
Compiling icu_normalizer v2.2.0
Compiling icu_properties v2.2.0
Compiling chrono v0.4.45
Compiling cyphergraphy v0.3.0
Compiling aes-gcm v0.10.3
Compiling pest_generator v2.8.6
Compiling cypheraddr v0.4.1
Compiling radicle-ssh v0.10.0
Compiling serde v1.0.228
Compiling indexmap v2.14.0
Compiling ssh-cipher v0.2.0
Compiling utf8-width v0.1.8
Compiling utf8parse v0.2.2
Compiling html-escape v0.2.13
Compiling socks5-client v0.4.3
Compiling anstyle-parse v1.0.0
Compiling tempfile v3.27.0
Compiling ref-cast v1.0.25
Compiling cyphernet v0.5.3
Compiling ssh-key v0.6.7
Compiling marked-yaml v0.7.2
Compiling yaml-rust2 v0.10.4
Compiling serde_json v1.0.150
Compiling darling_macro v0.20.11
Compiling git-ref-format-core v0.6.0
Compiling nonempty v0.9.0
Compiling typeid v1.0.3
Compiling crc32fast v1.5.0
Compiling xattr v1.6.1
Compiling subplot v0.14.0
Compiling darling v0.20.11
Compiling tracing-core v0.1.36
Compiling pest_derive v2.8.6
Compiling derive_builder_core v0.20.2
Compiling idna_adapter v1.2.2
Compiling filetime v0.2.29
Compiling idna v1.1.0
Compiling colorchoice v1.0.5
Compiling anstyle v1.0.14
Compiling radicle-crypto v0.16.0
Compiling anstyle-query v1.1.5
Compiling time-core v0.1.9
Compiling winnow v0.7.15
Compiling dyn-clone v1.0.20
Compiling num-conv v0.2.2
Compiling is_terminal_polyfill v1.70.2
Compiling tinyvec_macros v0.1.1
Compiling tracing v0.1.44
Compiling tar v0.4.46
Compiling anstream v1.0.0
Compiling tinyvec v1.11.0
Compiling time-macros v0.2.31
Compiling url v2.5.8
Compiling pulldown-cmark v0.13.4
Compiling git-ref-format-macro v0.6.0
Compiling marked-yaml v0.8.0
Compiling flate2 v1.1.9
Compiling roadmap v0.7.0
Compiling erased-serde v0.4.10
Compiling nix v0.29.0
Compiling terminal_size v0.4.4
Compiling globset v0.4.18
Compiling regex v1.12.4
Compiling derive_builder_macro v0.20.2
Compiling schemars v1.2.1
Compiling radicle-dag v0.10.0
Compiling git2 v0.20.4
Compiling radicle-git-metadata v0.1.0
Compiling cvt v0.1.2
Compiling ignore v0.4.27
Compiling ryu v1.0.23
Compiling deranged v0.5.8
Compiling base64 v0.21.7
Compiling powerfmt v0.2.0
Compiling base64 v0.22.1
Compiling clap_lex v1.1.0
Compiling yansi v1.0.1
Compiling serde-untagged v0.1.9
Compiling clap_builder v4.6.0
Compiling nom v7.1.3
Compiling radicle-surf v0.27.1
Compiling culpa v1.0.2
Compiling derive_builder v0.20.2
Compiling git-ref-format v0.6.0
Compiling unicode-normalization v0.1.25
Compiling radicle-git-ref-format v0.1.0
Compiling fs_at v0.2.1
Compiling proc-macro2-diagnostics v0.10.1
Compiling radicle-localtime v0.1.0
Compiling toml_datetime v0.6.11
Compiling serde_spanned v0.6.9
Compiling diligent-date-parser v0.1.5
Compiling bytesize v2.4.0
Compiling quick-xml v0.39.4
Compiling crossbeam-channel v0.5.15
Compiling radicle-git-metadata v0.2.0
Compiling dunce v1.0.5
Compiling radicle-std-ext v0.2.0
Compiling normpath v1.5.1
Compiling arrayvec v0.7.7
Compiling siphasher v1.0.3
Compiling globwalk v0.9.1
Compiling toml_write v0.1.2
Compiling fast-glob v0.3.3
Compiling pear_codegen v0.2.9
Compiling remove_dir_all v1.0.0
Compiling tracing-serde v0.2.0
Compiling rust_decimal v1.42.1
Compiling toml_edit v0.22.27
Compiling tracing-log v0.2.0
Compiling uuid v1.23.4
Compiling tera v1.20.1
Compiling fs2 v0.4.3
Compiling sharded-slab v0.1.7
Compiling thread_local v1.1.9
Compiling state v0.6.0
Compiling nonempty v0.11.0
Compiling shell-words v1.1.1
Compiling nu-ansi-term v0.50.3
Compiling unsafe-libyaml v0.2.11
Compiling time v0.3.53
Compiling unsafe-libyaml-norway v0.2.15
Compiling inlinable_string v0.1.15
Compiling nix v0.31.3
Compiling uncased v0.9.10
Compiling atom_syndication v0.12.8
Compiling html-page v0.5.0
Compiling askama_escape v0.10.3
Compiling nonempty v0.12.0
Compiling pear v0.2.9
Compiling serde_yaml v0.9.34+deprecated
Compiling askama_parser v0.2.1
Compiling serde_norway v0.9.42
Compiling ctrlc v3.5.2
Compiling rss v2.0.13
Compiling clap v4.6.1
Compiling matchers v0.2.0
Compiling tracing-subscriber v0.3.23
Compiling toml v0.8.23
Compiling radicle-oid v0.1.0
Compiling radicle-git-ext v0.12.0
Compiling radicle-cob v0.19.0
Compiling radicle-core v0.2.0
Compiling figment v0.10.19
Compiling radicle v0.22.1
Compiling askama_derive v0.12.5
Compiling duration-str v0.21.0
Compiling askama v0.12.1
Compiling subplotlib-derive v0.14.0
Compiling subplotlib v0.14.0
Compiling radicle-job v0.5.2
Compiling radicle-ci-broker v0.29.0
Compiling radicle-devcontainer-ci v0.1.0 (/workspaces/w)
Finished `test` profile [unoptimized + debuginfo] target(s) in 16.01s
Running unittests src/lib.rs (target/debug/deps/radicle_devcontainer_ci-a8eda4544dfb7c54)
running 64 tests
test config::tests::adapter_config_defaults_runtime_to_auto_detection ... ok
test config::tests::adapter_config_rejects_unknown_fields ... ok
test cache::tests::inputs_escaping_the_checkout_are_rejected ... ok
test cache::tests::entry_without_inputs_caches_unconditionally ... ok
test cache::tests::unsafe_cache_paths_are_rejected ... ok
test cache::tests::paths_resolve_against_the_workspace_folder ... ok
test cache::tests::missing_input_is_an_error_naming_the_file ... ok
test config::tests::cache_entries_parse_from_toml_and_yaml ... ok
test config::tests::bare_runtime_path_is_probed_on_search_path ... ok
test config::tests::discover_falls_back_to_native_yaml ... ok
test config::tests::discover_prefers_primary_yaml ... ok
test config::tests::explicit_runtime_must_exist_on_search_path ... ok
test config::tests::discover_reads_toml ... ok
test config::tests::discover_without_any_config_names_the_candidates ... ok
test config::tests::missing_runtime_path_fails_up_front ... ok
test config::tests::parse_accepts_json_and_leaves_the_filesystem_alone ... ok
test config::tests::render_script_builds_shebang_from_shell ... ok
test config::tests::native_fallback_rejects_unknown_keys ... ok
test config::tests::discover_rejects_ambiguous_config ... ok
test config::tests::unknown_keys_are_rejected ... ok
test config::tests::toml_config_accepts_hyphenated_and_snake_case_init_script ... ok
test config::tests::yaml_config_applies_defaults ... ok
test cache::tests::key_follows_input_contents_and_target ... ok
test config::tests::runtime_path_bypasses_detection ... ok
test config::tests::runtime_auto_detection_prefers_docker ... ok
test devcontainer::tests::missing_cache_input_is_a_job_failure ... ok
test devcontainer::tests::parse_up_result_finds_the_json_result_line ... ok
test devcontainer::tests::missing_devcontainer_config_is_job_failure ... ok
test config::tests::runtime_detection_skips_clients_that_cannot_reach_a_daemon ... ok
test devcontainer::tests::failing_script_is_job_failure_but_still_tears_down ... ok
test devcontainer::tests::up_failure_skips_exec_and_still_tears_down ... ok
test devcontainer::tests::empty_branch_is_left_unset ... ok
test devcontainer::tests::missing_alias_is_left_unset ... ok
test devcontainer::tests::every_run_forces_its_own_compose_project ... ok
test devcontainer::tests::successful_run_execs_script_and_tears_down ... ok
test devcontainer::tests::push_trigger_exports_branch_metadata ... ok
test local::tests::missing_devcontainer_config_is_a_job_failure ... ok
test devcontainer::tests::patch_author_is_the_new_tips_revision_author ... ok
test script::tests::missing_config_is_reported_not_fatal ... ok
test script::tests::prepare_script_writes_executable_script_and_records_step ... ok
test state::tests::atomic_writes_replace_contents_without_residue ... ok
test script::tests::supplied_config_overrides_discovery ... ok
test state::tests::dropping_an_unreaped_command_kills_its_group ... ok
test devcontainer::tests::tag_trigger_exports_tag_not_branch ... ok
test devcontainer::tests::patch_trigger_exports_patch_metadata ... ok
test cleanup::tests::missing_state_dir_is_not_an_error ... ok
test cleanup::tests::sweeps_stale_state_dirs_only ... ok
test state::tests::run_records_steps_and_renders_html ... ok
test state::tests::spawn_rides_out_a_write_descriptor_pinning_the_script ... ok
test devcontainer::tests::wedged_runtime_cannot_hang_teardown ... ok
test local::tests::explicit_state_dir_is_kept ... ok
test state::tests::deadline_kills_hung_command_and_records_timeout ... ok
test local::tests::failing_script_is_a_failure_with_its_output_captured ... ok
test cleanup::tests::dry_run_reports_without_removing ... ok
test devcontainer::tests::cache_volumes_are_created_labeled_and_mounted ... ok
test local::tests::local_run_is_a_clean_room_with_captured_output ... ok
test local::tests::repo_config_override_skips_discovery ... ok
test local::tests::hung_devcontainer_command_times_out_as_a_job_failure ... ok
test devcontainer::tests::compose_teardown_sweeps_project_containers_networks_and_volumes ... ok
test local::tests::local_runs_cache_keyed_by_the_source_path ... ok
test devcontainer::tests::stuck_up_is_released_by_a_start_event_nudge ... ok
test devcontainer::tests::existing_cache_volumes_are_reused_and_stale_ones_pruned ... ok
test cleanup::tests::compose_leftovers_swept_only_when_project_dead ... ok
test cleanup::tests::removes_only_stale_ci_owned_containers ... ok
test result: ok. 64 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 1.61s
Running unittests src/main.rs (target/debug/deps/radicle_devcontainer_ci-f3736e98887305a0)
running 0 tests
test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s
Running tests/adapter_stdout.rs (target/debug/deps/adapter_stdout-4f5307e9f0c5f136)
running 9 tests
test config_subcommand_rejects_schema_drift ... ok
test config_subcommand_validates_module_rendered_settings ... ok
test failed_checkout_is_a_job_failure_recorded_in_the_report ... ok
test keep_state_preserves_the_run_directory ... ok
test adapter_emits_exactly_two_protocol_lines ... ok
test interrupt_kills_container_commands_and_tears_down ... ok
test successful_run_emits_triggered_then_finished_success ... ok
test tag_trigger_builds_like_a_push ... ok
test patch_trigger_exports_patch_metadata ... ok
test result: ok. 9 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.81s
Running tests/protocol_wire.rs (target/debug/deps/protocol_wire-a940e77ceab74b05)
running 5 tests
test finished_responses_match_documented_lines ... ok
test tag_trigger_round_trips ... ok
test triggered_response_round_trips ... ok
test patch_trigger_round_trips ... ok
test push_trigger_round_trips ... ok
test result: ok. 5 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s
Doc-tests radicle_devcontainer_ci
running 0 tests
test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s
+ export PATH=/nix/var/nix/profiles/default/bin:/root/.local/share/mise/shims:/usr/local/cargo/bin:/root/.nix-profile/bin:/nix/var/nix/profiles/default/bin:/usr/local/cargo/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
+ PATH=/nix/var/nix/profiles/default/bin:/root/.local/share/mise/shims:/usr/local/cargo/bin:/root/.nix-profile/bin:/nix/var/nix/profiles/default/bin:/usr/local/cargo/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
+ export NIX_REMOTE=local
+ NIX_REMOTE=local
+ nix fmt -- --ci
error:
… while fetching the input 'git+file:///workspaces/w'
error: opening Git repository "/workspaces/w": repository path '/workspaces/w' is not owned by current user (libgit2 error code = 7)
$ /nix/store/h111xm96sylafdn3kgixgxyfs7af600r-podman-5.8.2/bin/podman rm --force 6f910f1281e730c186677736926320c7241f796639843cff29db94c6f2260e20
6f910f1281e730c186677736926320c7241f796639843cff29db94c6f2260e20