CI run for rad:zjxyd2A1A7FnxtC69qDfoAajfTHo

Radicle repository id rad:zjxyd2A1A7FnxtC69qDfoAajfTHo

Triggered by

{
  "request": "trigger",
  "version": 1,
  "event_type": "patch",
  "repository": {
    "id": "rad:zjxyd2A1A7FnxtC69qDfoAajfTHo",
    "name": "subplot",
    "description": "Capture and communicate acceptance criteria and their verification",
    "private": false,
    "default_branch": "main",
    "delegates": [
      "did:key:z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV"
    ]
  },
  "action": "Updated",
  "patch": {
    "id": "4f5ea3b01879da363a3a484f69c541f8e68eb76d",
    "author": {
      "id": "did:key:z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV",
      "alias": "liw"
    },
    "title": "ci: build and publish documentation, publish deb",
    "state": {
      "status": "open",
      "conflicts": []
    },
    "before": "cc7eb01aa03d70ed086812bc2705210d3ccfa2f1",
    "after": "081e3fed5087988e030a86ec7c735a2fb1f50faf",
    "commits": [
      "081e3fed5087988e030a86ec7c735a2fb1f50faf",
      "31cc8332d26955eb80d33d8baccc10d8a56c7fae"
    ],
    "target": "cc7eb01aa03d70ed086812bc2705210d3ccfa2f1",
    "labels": [],
    "assignees": [],
    "revisions": [
      {
        "id": "4f5ea3b01879da363a3a484f69c541f8e68eb76d",
        "author": {
          "id": "did:key:z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV",
          "alias": "liw"
        },
        "description": "Signed-off-by: Lars Wirzenius <liw@liw.fi>\nSponsored-by: author",
        "base": "cc7eb01aa03d70ed086812bc2705210d3ccfa2f1",
        "oid": "31cc8332d26955eb80d33d8baccc10d8a56c7fae",
        "timestamp": 1749533182
      },
      {
        "id": "bd0eb405f2ec33f9b07fe9748cfae6d4fa52f8fd",
        "author": {
          "id": "did:key:z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV",
          "alias": "liw"
        },
        "description": "better edoc building\n\nSigned-off-by: Lars Wirzenius <liw@liw.fi>\nSponsored-by: author",
        "base": "cc7eb01aa03d70ed086812bc2705210d3ccfa2f1",
        "oid": "081e3fed5087988e030a86ec7c735a2fb1f50faf",
        "timestamp": 1749533697
      }
    ]
  }
}

Run log

[2025-06-10T05:37:32Z INFO  ambient] ambient starts
[=3h[=3hBdsDxe: failed to load Boot0001 "UEFI QEMU DVD-ROM QM00005 " from PciRoot(0x0)/Pci(0x1F,0x2)/Sata(0x2,0xFFFF,0x0): Not Found
BdsDxe: loading Boot0002 "UEFI Misc Device" from PciRoot(0x0)/Pci(0x2,0x0)
BdsDxe: starting Boot0002 "UEFI Misc Device" from PciRoot(0x0)/Pci(0x2,0x0)
Welcome to GRUB!


INFO: Extracting tar archive from /dev/vdb
./
./plan.yaml
./run-ci

INFO: Running run-ci from /dev/vdb
================================ BEGIN ================================
ambient-execute-plan starts
RunnablePlan::from_file: filename=plan.yaml
steps:
- action: mkdir
  pathname: /workspace
- action: mkdir
  pathname: /workspace/artifacts
- action: tar_extract
  archive: /dev/vdc
  directory: /workspace/src
- action: tar_extract
  archive: /dev/vdf
  directory: /workspace/deps
- action: tar_extract
  archive: /dev/vde
  directory: /workspace/cache
- action: spawn
  argv:
  - find
  - /workspace
  - '-maxdepth'
  - '2'
  - '-ls'
- action: cargo_fmt
- action: cargo_clippy
- action: shell
  shell: |
    export DEBEMAIL=liw@liw.fi
    export DEBFULLNAME="Lars Wirzenius"
    export CARGO_TARGET_DIR=/workspace/cache
    export CARGO_HOME=/workspace/deps
    export HOME=/root
    export PATH="/root/.cargo/bin:$PATH"

    cargo doc --workspace --no-deps

    ./build-docs /workspace/artifacts

    ./check --offline

    # Clean up after tests and documentation building.
    git reset --hard
    git clean -fdx
    git status --ignored

    V="$(dpkg-parsechangelog -SVersion | sed 's/-[^-]*$//')"
    T="$(date -u "+%Y%m%dT%H%M%S")"
    version="$V.ci$T-1"
    dch -v "$version" "CI build under Ambient."
    dch -r ''
- action: deb
- action: shell
  shell: |
    find /workspace/artifacts -ls
- action: tar_create
  archive: /dev/vde
  directory: /workspace/cache
- action: tar_create
  archive: /dev/vdd
  directory: /workspace/artifacts
executor_drive: /dev/vdb
source_drive: /dev/vdc
artifact_drive: /dev/vdd
cache_drive: /dev/vde
deps_drive: /dev/vdf
workspace_dir: /workspace
source_dir: /workspace/src
deps_dir: /workspace/deps
cache_dir: /workspace/cache
artifacts_dir: /workspace/artifacts


RUN: Action Mkdir {
    pathname: "/workspace",
}
RUN: Action finished OK
RUN: Action Mkdir {
    pathname: "/workspace/artifacts",
}
RUN: Action finished OK
RUN: Action TarExtract {
    archive: "/dev/vdc",
    directory: "/workspace/src",
}
RUN: Action finished OK
RUN: Action TarExtract {
    archive: "/dev/vdf",
    directory: "/workspace/deps",
}
RUN: Action finished OK
RUN: Action TarExtract {
    archive: "/dev/vde",
    directory: "/workspace/cache",
}
RUN: Action finished OK
RUN: Action Spawn {
    argv: [
        "find",
        "/workspace",
        "-maxdepth",
        "2",
        "-ls",
    ],
}
SPAWN: argv=["find", "/workspace", "-maxdepth", "2", "-ls"]
       cwd=/workspace/src (exists? true)
       extra_env=[]
  1572865      4 drwxr-xr-x   6 root     root         4096 Jun 10 05:35 /workspace
  1587167      4 drwxr-xr-x   6 root     root         4096 Jun 10 05:28 /workspace/cache
  1587169      4 drwxr-xr-x   7 root     root         4096 Jun 10 05:28 /workspace/cache/debug
  1597254      4 -rw-r--r--   1 root     root         1034 Jun 10 05:28 /workspace/cache/.rustc_info.json
  1595875      4 -rw-r--r--   1 root     root          218 Jun 10 05:27 /workspace/cache/.rustdoc_fingerprint.json
  1597255      4 drwxr-xr-x  11 root     root         4096 Jun 10 05:27 /workspace/cache/doc
  1595876      4 drwxr-xr-x   7 root     root         4096 Jun 10 05:29 /workspace/cache/release
  1587168      4 drwxr-xr-x   2 root     root         4096 Jun 10 05:26 /workspace/cache/tmp
  1572867      4 drwxr-xr-x  15 root     root         4096 Jun 10 05:34 /workspace/src
  1572869      4 drwxr-xr-x   2 root     root         4096 Jun 10 05:34 /workspace/src/.radicle
  1572929      4 -rw-r--r--   1 root     root         3355 Jun 10 05:34 /workspace/src/README.md
  1572902      4 drwxr-xr-x   3 root     root         4096 Jun 10 05:34 /workspace/src/subplot-build
  1572975      4 drwxr-xr-x   3 root     root         4096 Jun 10 05:34 /workspace/src/tests
  1572925      4 drwxr-xr-x   2 root     root         4096 Jun 10 05:34 /workspace/src/book
  1572910      4 drwxr-xr-x   3 root     root         4096 Jun 10 05:34 /workspace/src/debian
  1573103      4 -rwxr-xr-x   1 root     root         1173 Jun 10 05:34 /workspace/src/build-docs
  1572924      4 -rw-r--r--   1 root     root         1286 Jun 10 05:34 /workspace/src/reference.md
  1572989      4 -rw-r--r--   1 root     root          273 Jun 10 05:34 /workspace/src/reference.subplot.disabled
  1572940      8 -rw-r--r--   1 root     root         6501 Jun 10 05:34 /workspace/src/DECISIONS.md
  1572901      4 -rw-r--r--   1 root     root         2648 Jun 10 05:34 /workspace/src/subplot.yaml
  1573140      4 -rw-r--r--   1 root     root         1385 Jun 10 05:34 /workspace/src/flake.lock
  1572942      4 drwxr-xr-x   5 root     root         4096 Jun 10 05:34 /workspace/src/subplotlib
  1572938      4 -rw-r--r--   1 root     root          136 Jun 10 05:34 /workspace/src/.gitignore
  1572868      4 -rw-r--r--   1 root     root         3370 Jun 10 05:34 /workspace/src/subplot.py
  1573110      4 drwxr-xr-x   5 root     root         4096 Jun 10 05:34 /workspace/src/share
  1572877     16 -rwxr-xr-x   1 root     root        14124 Jun 10 05:34 /workspace/src/check
  1572923      4 -rw-r--r--   1 root     root          196 Jun 10 05:34 /workspace/src/reference.yaml
  1573011      4 -rw-r--r--   1 root     root          667 Jun 10 05:34 /workspace/src/.gitlab-ci.yml
  1572928     96 -rw-r--r--   1 root     root        95971 Jun 10 05:34 /workspace/src/subplot.md
  1572900      4 -rwxr-xr-x   1 root     root          489 Jun 10 05:34 /workspace/src/install-debian.sh
  1572873      4 drwxr-xr-x   3 root     root         4096 Jun 10 05:34 /workspace/src/.gitlab
  1572907      4 -rw-r--r--   1 root     root           10 Jun 10 05:34 /workspace/src/.envrc
  1572871      4 -rw-r--r--   1 root     root         1366 Jun 10 05:34 /workspace/src/DCO-1-1.txt
  1572878      4 drwxr-xr-x   2 root     root         4096 Jun 10 05:34 /workspace/src/src
  1573143     44 -rw-r--r--   1 root     root        44081 Jun 10 05:34 /workspace/src/Cargo.lock
  1572990      4 -rw-r--r--   1 root     root          295 Jun 10 05:34 /workspace/src/deny.toml
  1572908     20 -rw-r--r--   1 root     root        19936 Jun 10 05:34 /workspace/src/NEWS.md
  1572941      4 -rw-r--r--   1 root     root          284 Jun 10 05:34 /workspace/src/subplot.subplot
  1572939      4 -rw-r--r--   1 root     root         1568 Jun 10 05:34 /workspace/src/Cargo.toml
  1572909      4 -rwxr-xr-x   1 root     root          637 Jun 10 05:34 /workspace/src/stress
  1573142      8 -rw-r--r--   1 root     root         5183 Jun 10 05:34 /workspace/src/CONTRIBUTING.md
  1573104      4 drwxr-xr-x   3 root     root         4096 Jun 10 05:34 /workspace/src/bin
  1572992      4 drwxr-xr-x   5 root     root         4096 Jun 10 05:34 /workspace/src/examples
  1572872      4 -rw-r--r--   1 root     root         1325 Jun 10 05:34 /workspace/src/LICENSE.md
  1572936      8 -rw-r--r--   1 root     root         5617 Jun 10 05:34 /workspace/src/build.rs
  1572906      4 -rw-r--r--   1 root     root           56 Jun 10 05:34 /workspace/src/flake8.ini
  1572937      4 -rw-r--r--   1 root     root         1292 Jun 10 05:34 /workspace/src/flake.nix
  1572991      4 -rwxr-xr-x   1 root     root         1195 Jun 10 05:34 /workspace/src/stressgen
  1573012      4 drwxr-xr-x   8 root     root         4096 Jun 10 05:34 /workspace/src/.git
  1573141      4 -rw-r--r--   1 root     root         3390 Jun 10 05:34 /workspace/src/RELEASE.md
  1572988      4 -rw-r--r--   1 root     root          689 Jun 10 05:34 /workspace/src/reference.py
  1572930      4 drwxr-xr-x   3 root     root         4096 Jun 10 05:34 /workspace/src/subplotlib-derive
  1572866      4 drwxr-xr-x   2 root     root         4096 Jun 10 05:35 /workspace/artifacts
  1573144      4 drwxr-xr-x   3 root     root         4096 Jun 10 05:34 /workspace/deps
  1573147      4 drwxr-xr-x   5 root     root         4096 Jun 10 05:26 /workspace/deps/registry
  1573145     88 -rw-r--r--   1 root     root        90112 Jun 10 05:34 /workspace/deps/.global-cache
  1573146      0 -rw-r--r--   1 root     root            0 Jun 10 05:26 /workspace/deps/.package-cache
RUN: Action finished OK
RUN: Action CargoFmt
SPAWN: argv=["cargo", "fmt", "--check"]
       cwd=/workspace/src (exists? true)
       extra_env=[("CARGO_TARGET_DIR", "/workspace/cache"), ("CARGO_HOME", "/workspace/deps"), ("PATH", "/root/.cargo/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin")]
RUN: Action finished OK
RUN: Action CargoClippy
SPAWN: argv=["cargo", "clippy", "--offline", "--locked", "--workspace", "--all-targets", "--no-deps", "--", "--deny", "warnings"]
       cwd=/workspace/src (exists? true)
       extra_env=[("CARGO_TARGET_DIR", "/workspace/cache"), ("CARGO_HOME", "/workspace/deps"), ("PATH", "/root/.cargo/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin")]
   Compiling subplot v0.12.0 (/workspace/src)
   Compiling subplotlib v0.12.0 (/workspace/src/subplotlib)
    Checking subplotlib-derive v0.12.0 (/workspace/src/subplotlib-derive)
    Checking subplot-bin v0.12.0 (/workspace/src/bin)
    Checking subplot-build v0.12.0 (/workspace/src/subplot-build)
    Checking subplot-seq-example v0.1.0 (/workspace/src/examples/seq)
    Finished `dev` profile [unoptimized + debuginfo] target(s) in 7.72s
RUN: Action finished OK
RUN: Action Shell {
    shell: "export DEBEMAIL=liw@liw.fi\nexport DEBFULLNAME=\"Lars Wirzenius\"\nexport CARGO_TARGET_DIR=/workspace/cache\nexport CARGO_HOME=/workspace/deps\nexport HOME=/root\nexport PATH=\"/root/.cargo/bin:$PATH\"\n\ncargo doc --workspace --no-deps\n\n./build-docs /workspace/artifacts\n\n./check --offline\n\n# Clean up after tests and documentation building.\ngit reset --hard\ngit clean -fdx\ngit status --ignored\n\nV=\"$(dpkg-parsechangelog -SVersion | sed 's/-[^-]*$//')\"\nT=\"$(date -u \"+%Y%m%dT%H%M%S\")\"\nversion=\"$V.ci$T-1\"\ndch -v \"$version\" \"CI build under Ambient.\"\ndch -r ''\n",
}
SPAWN: argv=["/bin/bash", "-c", "set -xeuo pipefail\nexport DEBEMAIL=liw@liw.fi\nexport DEBFULLNAME=\"Lars Wirzenius\"\nexport CARGO_TARGET_DIR=/workspace/cache\nexport CARGO_HOME=/workspace/deps\nexport HOME=/root\nexport PATH=\"/root/.cargo/bin:$PATH\"\n\ncargo doc --workspace --no-deps\n\n./build-docs /workspace/artifacts\n\n./check --offline\n\n# Clean up after tests and documentation building.\ngit reset --hard\ngit clean -fdx\ngit status --ignored\n\nV=\"$(dpkg-parsechangelog -SVersion | sed 's/-[^-]*$//')\"\nT=\"$(date -u \"+%Y%m%dT%H%M%S\")\"\nversion=\"$V.ci$T-1\"\ndch -v \"$version\" \"CI build under Ambient.\"\ndch -r ''\n\n"]
       cwd=/workspace/src (exists? true)
       extra_env=[]
+ export DEBEMAIL=liw@liw.fi
+ DEBEMAIL=liw@liw.fi
+ export 'DEBFULLNAME=Lars Wirzenius'
+ DEBFULLNAME='Lars Wirzenius'
+ export CARGO_TARGET_DIR=/workspace/cache
+ CARGO_TARGET_DIR=/workspace/cache
+ export CARGO_HOME=/workspace/deps
+ CARGO_HOME=/workspace/deps
+ export HOME=/root
+ HOME=/root
+ export PATH=/root/.cargo/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
+ PATH=/root/.cargo/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
+ cargo doc --workspace --no-deps
warning: output filename collision.
The bin target `subplot` in package `subplot-bin v0.12.0 (/workspace/src/bin)` has the same output filename as the lib target `subplot` in package `subplot v0.12.0 (/workspace/src)`.
Colliding filename is: /workspace/cache/doc/subplot/index.html
The targets should have unique names.
This is a known bug where multiple crates with the same name use
the same path; see <https://github.com/rust-lang/cargo/issues/6313>.
   Compiling subplot v0.12.0 (/workspace/src)
   Compiling subplotlib v0.12.0 (/workspace/src/subplotlib)
 Documenting subplot v0.12.0 (/workspace/src)
 Documenting subplotlib-derive v0.12.0 (/workspace/src/subplotlib-derive)
 Documenting subplot-build v0.12.0 (/workspace/src/subplot-build)
   Compiling subplotlib-derive v0.12.0 (/workspace/src/subplotlib-derive)
 Documenting subplot-bin v0.12.0 (/workspace/src/bin)
 Documenting subplotlib v0.12.0 (/workspace/src/subplotlib)
warning: redundant explicit link target
  --> subplotlib/src/prelude.rs:48:31
   |
48 | /// get wrappered with [`Ok`][std::result::Result::Ok].  You can use the
   |                         ----  ^^^^^^^^^^^^^^^^^^^^^^^ explicit target is redundant
   |                         |
   |                         because label contains path that resolves to same destination
   |
   = note: when a link's destination is not specified,
           the label is used to resolve intra-doc links
   = note: `#[warn(rustdoc::redundant_explicit_links)]` on by default
help: remove explicit link target
   |
48 - /// get wrappered with [`Ok`][std::result::Result::Ok].  You can use the
48 + /// get wrappered with [`Ok`].  You can use the
   |

warning: `subplotlib` (lib doc) generated 1 warning
    Finished `dev` profile [unoptimized + debuginfo] target(s) in 2.40s
   Generated /workspace/cache/doc/subplot/index.html and 4 other files
+ ./build-docs /workspace/artifacts
   Compiling subplot v0.12.0 (/workspace/src)
   Compiling subplot-bin v0.12.0 (/workspace/src/bin)
    Finished `dev` profile [unoptimized + debuginfo] target(s) in 2.85s
subplot is /usr/bin/subplot
subplot is /bin/subplot
 INFO Starting Subplot
 INFO Subplot finished successfully
title: Acceptance criteria for the lib/runcmd Subplot library
 INFO Starting Subplot
 INFO Subplot finished successfully
 INFO Starting Subplot
 INFO Subplot finished successfully
title: Acceptance criteria for the files Subplot library
 INFO Starting Subplot
 INFO Subplot finished successfully
 INFO Starting Subplot
 INFO Subplot finished successfully
title: Subplot user guide
 INFO Starting Subplot
 INFO Subplot finished successfully
 INFO Starting Subplot
ERROR binding file could not be found: lib/datadir.yaml
ERROR caused by: No such file or directory (os error 2)
 INFO Starting Subplot
 INFO Subplot finished successfully
title: Subplot
 INFO Starting Subplot
 INFO Subplot finished successfully
 INFO Starting Subplot
 INFO Subplot finished successfully
title: Muck JSON storage server and API
 INFO Starting Subplot
 INFO Subplot finished successfully
 INFO Starting Subplot
 INFO Subplot finished successfully
title: Subplot website tutorial
 INFO Starting Subplot
 INFO Subplot finished successfully
 INFO Starting Subplot
 INFO Subplot finished successfully
title: **seq**(1) acceptance tests
 INFO Starting Subplot
 INFO Subplot finished successfully
 INFO Starting Subplot
 INFO Subplot finished successfully
 INFO Starting Subplot
 INFO Subplot finished successfully
 INFO Starting Subplot
 INFO Subplot finished successfully
 INFO Starting Subplot
 INFO Subplot finished successfully
+ ./check --offline
Everything seems to be in order.
+ git reset --hard
HEAD is now at 081e3fe better edoc building
+ git clean -fdx
Removing share/common/lib/files.md
Removing share/common/lib/runcmd.md
Removing share/python/lib/daemon.md
Removing share/rust/lib/datadir.md
Removing test-outputs/
+ git status --ignored
HEAD detached at 081e3fe
nothing to commit, working tree clean
++ dpkg-parsechangelog -SVersion
++ sed 's/-[^-]*$//'
+ V=0.12.0
++ date -u +%Y%m%dT%H%M%S
+ T=20250610T053656
+ version=0.12.0.ci20250610T053656-1
+ dch -v 0.12.0.ci20250610T053656-1 'CI build under Ambient.'
dch warning: Previous package version was Debian native whilst new version is not
+ dch -r ''
RUN: Action finished OK
RUN: Action Deb
SPAWN: argv=["/bin/bash", "-c", "#!/bin/bash\nset -xeuo pipefail\n\necho \"PATH at start: $PATH\"\nexport PATH=\"/root/.cargo/bin:$PATH\"\nexport CARGO_HOME=/workspace/deps\nexport DEBEMAIL=liw@liw.fi\nexport DEBFULLNAME=\"Lars Wirzenius\"\n/bin/env\n\ncommand -v cargo\ncommand -v rustc\n\ncargo --version\nrustc --version\n\n# Get name and version of source package.\nname=\"$(dpkg-parsechangelog -SSource)\"\nversion=\"$(dpkg-parsechangelog -SVersion)\"\n\n# Get upstream version: everything before the last dash.\nuv=\"$(echo \"$version\" | sed 's/-[^-]*$//')\"\n\n# Files that will be created.\narch=\"$(dpkg --print-architecture)\"\norig=\"../${name}_${uv}.orig.tar.xz\"\ndeb=\"../${name}_${version}_${arch}.deb\"\nchanges=\"../${name}_${version}_${arch}.changes\"\n\n# Create \"upstream tarball\".\ngit archive HEAD | xz >\"$orig\"\n\n# Build package.\ndpkg-buildpackage -us -uc\n\n# Dump some information to make it easier to visually verify\n# everything looks OK. Also, test the package with the lintian tool.\n\nls -l ..\nfor x in ../*.deb; do dpkg -c \"$x\"; done\n# FIXME: disabled while this prevents radicle-native-ci deb from being built.\n# lintian -i --allow-root --fail-on warning ../*.changes\n\n# Move files to artifacts directory.\nmv ../*_* /workspace/artifacts\n        "]
       cwd=/workspace/src (exists? true)
       extra_env=[("CARGO_TARGET_DIR", "/workspace/cache"), ("CARGO_HOME", "/workspace/deps"), ("PATH", "/root/.cargo/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin")]
+ echo 'PATH at start: /root/.cargo/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin'
PATH at start: /root/.cargo/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
+ export PATH=/root/.cargo/bin:/root/.cargo/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
+ PATH=/root/.cargo/bin:/root/.cargo/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
+ export CARGO_HOME=/workspace/deps
+ CARGO_HOME=/workspace/deps
+ export DEBEMAIL=liw@liw.fi
+ DEBEMAIL=liw@liw.fi
+ export 'DEBFULLNAME=Lars Wirzenius'
+ DEBFULLNAME='Lars Wirzenius'
+ /bin/env
DEBFULLNAME=Lars Wirzenius
CARGO_TARGET_DIR=/workspace/cache
PWD=/workspace/src
SYSTEMD_EXEC_PID=295
LANG=C.UTF-8
CARGO_HOME=/workspace/deps
DEBEMAIL=liw@liw.fi
INVOCATION_ID=882834f6ddea4519874e8ba05de052f1
SHLVL=2
JOURNAL_STREAM=8:13262
PATH=/root/.cargo/bin:/root/.cargo/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
OLDPWD=/
_=/bin/env
+ command -v cargo
/root/.cargo/bin/cargo
+ command -v rustc
/root/.cargo/bin/rustc
+ cargo --version
cargo 1.87.0 (99624be96 2025-05-06)
+ rustc --version
rustc 1.87.0 (17067e9ac 2025-05-09)
++ dpkg-parsechangelog -SSource
+ name=subplot
++ dpkg-parsechangelog -SVersion
+ version=0.12.0.ci20250610T053656-1
++ echo 0.12.0.ci20250610T053656-1
++ sed 's/-[^-]*$//'
+ uv=0.12.0.ci20250610T053656
++ dpkg --print-architecture
+ arch=amd64
+ orig=../subplot_0.12.0.ci20250610T053656.orig.tar.xz
+ deb=../subplot_0.12.0.ci20250610T053656-1_amd64.deb
+ changes=../subplot_0.12.0.ci20250610T053656-1_amd64.changes
+ git archive HEAD
+ xz
+ dpkg-buildpackage -us -uc
dpkg-buildpackage: info: source package subplot
dpkg-buildpackage: info: source version 0.12.0.ci20250610T053656-1
dpkg-buildpackage: info: source distribution unstable
dpkg-buildpackage: info: source changed by Lars Wirzenius <liw@liw.fi>
dpkg-buildpackage: info: host architecture amd64
 dpkg-source --before-build .
 debian/rules clean
dh clean
   dh_clean
 dpkg-source -b .
dpkg-source: info: using source format '3.0 (quilt)'
dpkg-source: info: building subplot using existing ./subplot_0.12.0.ci20250610T053656.orig.tar.xz
dpkg-source: info: building subplot in subplot_0.12.0.ci20250610T053656-1.debian.tar.xz
dpkg-source: info: building subplot in subplot_0.12.0.ci20250610T053656-1.dsc
 debian/rules build
dh build
   dh_update_autotools_config
   dh_autoreconf
   debian/rules override_dh_auto_build
make[1]: Entering directory '/workspace/src'
true
make[1]: Leaving directory '/workspace/src'
   debian/rules override_dh_auto_test
make[1]: Entering directory '/workspace/src'
echo disabled: ./check
disabled: ./check
make[1]: Leaving directory '/workspace/src'
   create-stamp debian/debhelper-build-stamp
 debian/rules binary
dh binary
   dh_testroot
   dh_prep
   debian/rules override_dh_auto_install
make[1]: Entering directory '/workspace/src'
cargo install --path=bin --root=debian/subplot --offline --locked
  Installing subplot-bin v0.12.0 (/workspace/src/bin)
   Compiling subplot v0.12.0 (/workspace/src)
   Compiling subplot-bin v0.12.0 (/workspace/src/bin)
    Finished `release` profile [optimized] target(s) in 8.62s
  Installing debian/subplot/bin/subplot
   Installed package `subplot-bin v0.12.0 (/workspace/src/bin)` (executable `subplot`)
warning: be sure to add `debian/subplot/bin` to your PATH to be able to run the installed binaries
rm -f debian/subplot/.crates.toml
rm -f debian/subplot/.crates2.json
dh_lintian
make[1]: Leaving directory '/workspace/src'
   dh_install
   dh_installdocs
   dh_installchangelogs
dh_installchangelogs: warning: Could not parse timestamp '15 April 2022 15:00:00 +0100'. debian/changelog will not be trimmed.
dh_installchangelogs: warning: debian/changelog could not be trimmed. The full changelog will be installed.
   dh_lintian
   dh_perl
   dh_link
   dh_strip_nondeterminism
   dh_compress
   dh_fixperms
   dh_missing
   dh_strip
   dh_makeshlibs
   dh_shlibdeps
   dh_installdeb
   dh_gencontrol
dpkg-gencontrol: warning: Built-Using field of package subplot: substitution variable ${cargo:Built-Using} used, but is not defined
dpkg-gencontrol: warning: Built-Using field of package subplot: substitution variable ${cargo:Built-Using} used, but is not defined
   dh_md5sums
   dh_builddeb
dpkg-deb: building package 'subplot' in '../subplot_0.12.0.ci20250610T053656-1_amd64.deb'.
dpkg-deb: building package 'subplot-dbgsym' in '../subplot-dbgsym_0.12.0.ci20250610T053656-1_amd64.deb'.
 dpkg-genbuildinfo -O../subplot_0.12.0.ci20250610T053656-1_amd64.buildinfo
 dpkg-genchanges -O../subplot_0.12.0.ci20250610T053656-1_amd64.changes
dpkg-genchanges: info: including full source code in upload
 dpkg-source --after-build .
dpkg-buildpackage: info: full upload (original source is included)
+ ls -l ..
total 2360
drwxr-xr-x  3 root root    4096 Jun 10 05:36 artifacts
drwxr-xr-x  6 root root    4096 Jun 10 05:28 cache
drwxr-xr-x  3 root root    4096 Jun 10 05:35 deps
drwxr-xr-x 15 root root    4096 Jun 10 05:36 src
-rw-r--r--  1 root root  271864 Jun 10 05:37 subplot-dbgsym_0.12.0.ci20250610T053656-1_amd64.deb
-rw-r--r--  1 root root    2380 Jun 10 05:36 subplot_0.12.0.ci20250610T053656-1.debian.tar.xz
-rw-r--r--  1 root root    1018 Jun 10 05:36 subplot_0.12.0.ci20250610T053656-1.dsc
-rw-r--r--  1 root root   10151 Jun 10 05:37 subplot_0.12.0.ci20250610T053656-1_amd64.buildinfo
-rw-r--r--  1 root root    2388 Jun 10 05:37 subplot_0.12.0.ci20250610T053656-1_amd64.changes
-rw-r--r--  1 root root 1946592 Jun 10 05:37 subplot_0.12.0.ci20250610T053656-1_amd64.deb
-rw-r--r--  1 root root  150464 Jun 10 05:36 subplot_0.12.0.ci20250610T053656.orig.tar.xz
+ for x in ../*.deb
+ dpkg -c ../subplot-dbgsym_0.12.0.ci20250610T053656-1_amd64.deb
drwxr-xr-x root/root         0 2025-06-10 05:36 ./
drwxr-xr-x root/root         0 2025-06-10 05:36 ./usr/
drwxr-xr-x root/root         0 2025-06-10 05:36 ./usr/lib/
drwxr-xr-x root/root         0 2025-06-10 05:36 ./usr/lib/debug/
drwxr-xr-x root/root         0 2025-06-10 05:36 ./usr/lib/debug/.build-id/
drwxr-xr-x root/root         0 2025-06-10 05:36 ./usr/lib/debug/.build-id/73/
-rw-r--r-- root/root   1783904 2025-06-10 05:36 ./usr/lib/debug/.build-id/73/ae4a33de630867c25c267e6b428cf406252c02.debug
drwxr-xr-x root/root         0 2025-06-10 05:36 ./usr/share/
drwxr-xr-x root/root         0 2025-06-10 05:36 ./usr/share/doc/
lrwxrwxrwx root/root         0 2025-06-10 05:36 ./usr/share/doc/subplot-dbgsym -> subplot
+ for x in ../*.deb
+ dpkg -c ../subplot_0.12.0.ci20250610T053656-1_amd64.deb
drwxr-xr-x root/root         0 2025-06-10 05:36 ./
drwxr-xr-x root/root         0 2025-06-10 05:36 ./bin/
-rwxr-xr-x root/root   8084912 2025-06-10 05:36 ./bin/subplot
drwxr-xr-x root/root         0 2025-06-10 05:36 ./usr/
drwxr-xr-x root/root         0 2025-06-10 05:36 ./usr/share/
drwxr-xr-x root/root         0 2025-06-10 05:36 ./usr/share/doc/
drwxr-xr-x root/root         0 2025-06-10 05:36 ./usr/share/doc/subplot/
-rw-r--r-- root/root      3355 2025-06-10 05:34 ./usr/share/doc/subplot/README.md
-rw-r--r-- root/root       632 2025-06-10 05:36 ./usr/share/doc/subplot/changelog.Debian.gz
-rw-r--r-- root/root      1394 2025-06-10 05:34 ./usr/share/doc/subplot/copyright
drwxr-xr-x root/root         0 2025-06-10 05:36 ./usr/share/lintian/
drwxr-xr-x root/root         0 2025-06-10 05:36 ./usr/share/lintian/overrides/
-rw-r--r-- root/root       103 2025-06-10 05:34 ./usr/share/lintian/overrides/subplot
drwxr-xr-x root/root         0 2025-06-10 05:36 ./usr/share/subplot/
drwxr-xr-x root/root         0 2025-06-10 05:34 ./usr/share/subplot/common/
drwxr-xr-x root/root         0 2025-06-10 05:36 ./usr/share/subplot/common/lib/
-rw-r--r-- root/root      9355 2025-06-10 05:34 ./usr/share/subplot/common/lib/files.yaml
-rw-r--r-- root/root      8470 2025-06-10 05:34 ./usr/share/subplot/common/lib/runcmd.yaml
drwxr-xr-x root/root         0 2025-06-10 05:34 ./usr/share/subplot/python/
drwxr-xr-x root/root         0 2025-06-10 05:36 ./usr/share/subplot/python/lib/
-rw-r--r-- root/root     10415 2025-06-10 05:34 ./usr/share/subplot/python/lib/daemon.py
-rw-r--r-- root/root      4434 2025-06-10 05:34 ./usr/share/subplot/python/lib/daemon.yaml
-rw-r--r-- root/root      7272 2025-06-10 05:34 ./usr/share/subplot/python/lib/files.py
-rw-r--r-- root/root      8657 2025-06-10 05:34 ./usr/share/subplot/python/lib/runcmd.py
drwxr-xr-x root/root         0 2025-06-10 05:34 ./usr/share/subplot/python/template/
-rw-r--r-- root/root      1275 2025-06-10 05:34 ./usr/share/subplot/python/template/asserts.py
-rw-r--r-- root/root      2457 2025-06-10 05:34 ./usr/share/subplot/python/template/context.py
-rw-r--r-- root/root      4611 2025-06-10 05:34 ./usr/share/subplot/python/template/context_tests.py
-rw-r--r-- root/root       201 2025-06-10 05:34 ./usr/share/subplot/python/template/encoding.py
-rw-r--r-- root/root       474 2025-06-10 05:34 ./usr/share/subplot/python/template/encoding_tests.py
-rw-r--r-- root/root       412 2025-06-10 05:34 ./usr/share/subplot/python/template/files.py
-rw-r--r-- root/root      4557 2025-06-10 05:34 ./usr/share/subplot/python/template/main.py
-rw-r--r-- root/root      2660 2025-06-10 05:34 ./usr/share/subplot/python/template/scenarios.py
-rw-r--r-- root/root      2529 2025-06-10 05:34 ./usr/share/subplot/python/template/template.py.tera
-rw-r--r-- root/root       137 2025-06-10 05:34 ./usr/share/subplot/python/template/template.yaml
drwxr-xr-x root/root         0 2025-06-10 05:34 ./usr/share/subplot/rust/
drwxr-xr-x root/root         0 2025-06-10 05:36 ./usr/share/subplot/rust/lib/
-rw-r--r-- root/root       788 2025-06-10 05:34 ./usr/share/subplot/rust/lib/datadir.yaml
drwxr-xr-x root/root         0 2025-06-10 05:34 ./usr/share/subplot/rust/template/
-rw-r--r-- root/root      1429 2025-06-10 05:34 ./usr/share/subplot/rust/template/macros.rs.tera
-rw-r--r-- root/root      1175 2025-06-10 05:34 ./usr/share/subplot/rust/template/template.rs.tera
-rw-r--r-- root/root        71 2025-06-10 05:34 ./usr/share/subplot/rust/template/template.yaml
-rw-r--r-- root/root      2103 2025-06-10 05:34 ./usr/share/subplot/subplot.css
+ mv ../subplot-dbgsym_0.12.0.ci20250610T053656-1_amd64.deb ../subplot_0.12.0.ci20250610T053656-1.debian.tar.xz ../subplot_0.12.0.ci20250610T053656-1.dsc ../subplot_0.12.0.ci20250610T053656-1_amd64.buildinfo ../subplot_0.12.0.ci20250610T053656-1_amd64.changes ../subplot_0.12.0.ci20250610T053656-1_amd64.deb ../subplot_0.12.0.ci20250610T053656.orig.tar.xz /workspace/artifacts
RUN: Action finished OK
RUN: Action Shell {
    shell: "find /workspace/artifacts -ls\n",
}
SPAWN: argv=["/bin/bash", "-c", "set -xeuo pipefail\nfind /workspace/artifacts -ls\n\n"]
       cwd=/workspace/src (exists? true)
       extra_env=[]
+ find /workspace/artifacts -ls
  1572866      4 drwxr-xr-x   3 root     root         4096 Jun 10 05:37 /workspace/artifacts
  1592822     16 -rw-r--r--   1 root     root        13268 Jun 10 05:36 /workspace/artifacts/website.html
  1592816     40 -rw-r--r--   1 root     root        40939 Jun 10 05:36 /workspace/artifacts/muck.html
  1591082    148 -rw-r--r--   1 root     root       150464 Jun 10 05:36 /workspace/artifacts/subplot_0.12.0.ci20250610T053656.orig.tar.xz
  1589719     28 -rw-r--r--   1 root     root        28070 Jun 10 05:36 /workspace/artifacts/runcmd.html
  1592093      4 -rw-r--r--   1 root     root         1018 Jun 10 05:36 /workspace/artifacts/subplot_0.12.0.ci20250610T053656-1.dsc
  1592688     12 -rw-r--r--   1 root     root        11114 Jun 10 05:36 /workspace/artifacts/user-guide.html
  1591086      4 -rw-r--r--   1 root     root         2380 Jun 10 05:36 /workspace/artifacts/subplot_0.12.0.ci20250610T053656-1.debian.tar.xz
  1592764    236 -rw-r--r--   1 root     root       238552 Jun 10 05:36 /workspace/artifacts/subplot.html
  1595292   1904 -rw-r--r--   1 root     root      1946592 Jun 10 05:37 /workspace/artifacts/subplot_0.12.0.ci20250610T053656-1_amd64.deb
  1595414      4 -rw-r--r--   1 root     root         2388 Jun 10 05:37 /workspace/artifacts/subplot_0.12.0.ci20250610T053656-1_amd64.changes
  1592823      8 -rw-r--r--   1 root     root         7006 Jun 10 05:36 /workspace/artifacts/seq.html
  1595223     12 -rw-r--r--   1 root     root        10151 Jun 10 05:37 /workspace/artifacts/subplot_0.12.0.ci20250610T053656-1_amd64.buildinfo
  1591155     16 -rw-r--r--   1 root     root        15857 Jun 10 05:36 /workspace/artifacts/files.html
  1595339    268 -rw-r--r--   1 root     root       271864 Jun 10 05:37 /workspace/artifacts/subplot-dbgsym_0.12.0.ci20250610T053656-1_amd64.deb
  1597630      4 drwxr-xr-x   2 root     root         4096 Jun 10 05:36 /workspace/artifacts/libdocs
  1597636     12 -rw-r--r--   1 root     root        10089 Jun 10 05:36 /workspace/artifacts/libdocs/daemon.html
  1597632     12 -rw-r--r--   1 root     root        11463 Jun 10 05:36 /workspace/artifacts/libdocs/runcmd.html
  1597634     12 -rw-r--r--   1 root     root        12206 Jun 10 05:36 /workspace/artifacts/libdocs/files.html
  1597638      8 -rw-r--r--   1 root     root         4166 Jun 10 05:36 /workspace/artifacts/libdocs/datadir.html
RUN: Action finished OK
RUN: Action TarCreate {
    archive: "/dev/vde",
    directory: "/workspace/cache",
}
RUN: Action finished OK
RUN: Action TarCreate {
    archive: "/dev/vdd",
    directory: "/workspace/artifacts",
}
RUN: Action finished OK
ambient-execute-plan ends
EXIT CODE: 0
[2025-06-10T05:37:32Z INFO  ambient] ambient ends successfully