CI: SUCCESS obnam

Table of Contents

Run log

Plan, inside VM without network

plan: Executor starts
After 0.00 seconds at 2026-04-19 06:57:41ZProgram: ambient-execute-plan
Version: 0.14.0@c37ec71
plan: Runnable plan
After 0.00 seconds at 2026-04-19 06:57:41Z
steps:
- action: mkdir
  pathname: /ci
- action: mkdir
  pathname: /ci/artifacts
- action: tar_extract
  archive: /dev/vdc
  directory: /ci/src
- action: tar_extract
  archive: /dev/vdf
  directory: /ci/deps
- action: tar_extract
  archive: /dev/vde
  directory: /ci/cache
- action: shell
  shell: ln -sf /ci /workspace
- action: shell
  shell: git config --global user.name 'Ambient CI'
- action: shell
  shell: git config --global user.email ambient@example.com
- action: cargo_clippy
- action: cargo_build
- action: cargo_test
- action: shell
  shell: |
    export PATH=/root/.cargo/bin:/bin:/sbin
    ls -l "$CARGO_TARGET_DIR"
    make TARGET= subplot doc
    find doc -ls
    mkdir -p /ci/artifacts/rsync
    cp obnam.html doc/*.html /ci/artifacts/rsync
- action: custom
  name: dch
  args:
    debfullname: Lars Wirzenius
    debemail: liw@liw.fi
- action: deb
  packages: debian
- action: tar_create
  archive: /dev/vde
  directory: /ci/cache
- action: tar_create
  archive: /dev/vdd
  directory: /ci/artifacts
executor_drive: /dev/vdb
source_drive: /dev/vdc
artifact_drive: /dev/vdd
cache_drive: /dev/vde
deps_drive: /dev/vdf
workspace_dir: /ci
source_dir: /ci/src
deps_dir: /ci/deps
cache_dir: /ci/cache
artifacts_dir: /ci/artifacts
envs: {}
plan: Successful action mkdir: /ci
After 0.00 seconds at 2026-04-19 06:57:41Z
  • plan: Start action mkdir: /ci
    After 0.00 seconds at 2026-04-19 06:57:41Z
    Mkdir(
        Mkdir {
            pathname: "/ci",
        },
    )
  • plan: Action succeeded mkdir: /ci
    After 0.00 seconds at 2026-04-19 06:57:41Z
    Mkdir(
        Mkdir {
            pathname: "/ci",
        },
    )
plan: Successful action mkdir: /ci/artifacts
After 0.00 seconds at 2026-04-19 06:57:41Z
  • plan: Start action mkdir: /ci/artifacts
    After 0.00 seconds at 2026-04-19 06:57:41Z
    Mkdir(
        Mkdir {
            pathname: "/ci/artifacts",
        },
    )
  • plan: Action succeeded mkdir: /ci/artifacts
    After 0.00 seconds at 2026-04-19 06:57:41Z
    Mkdir(
        Mkdir {
            pathname: "/ci/artifacts",
        },
    )
plan: Successful action tar_extract
After 0.00 seconds at 2026-04-19 06:57:41Z
  • plan: Start action tar_extract
    After 0.00 seconds at 2026-04-19 06:57:41Z
    TarExtract(
        TarExtract {
            archive: "/dev/vdc",
            directory: "/ci/src",
        },
    )
  • plan: Action succeeded tar_extract
    After 0.00 seconds at 2026-04-19 06:57:41Z
    TarExtract(
        TarExtract {
            archive: "/dev/vdc",
            directory: "/ci/src",
        },
    )
plan: Successful action tar_extract
After 0.04 seconds at 2026-04-19 06:57:41Z
  • plan: Start action tar_extract
    After 0.00 seconds at 2026-04-19 06:57:41Z
    TarExtract(
        TarExtract {
            archive: "/dev/vdf",
            directory: "/ci/deps",
        },
    )
  • plan: Action succeeded tar_extract
    After 0.00 seconds at 2026-04-19 06:57:43Z
    TarExtract(
        TarExtract {
            archive: "/dev/vdf",
            directory: "/ci/deps",
        },
    )
plan: Successful action tar_extract
After 1.82 seconds at 2026-04-19 06:57:43Z
  • plan: Start action tar_extract
    After 0.00 seconds at 2026-04-19 06:57:43Z
    TarExtract(
        TarExtract {
            archive: "/dev/vde",
            directory: "/ci/cache",
        },
    )
  • plan: Action succeeded tar_extract
    After 0.00 seconds at 2026-04-19 06:57:47Z
    TarExtract(
        TarExtract {
            archive: "/dev/vde",
            directory: "/ci/cache",
        },
    )
plan: Successful action shell: ln -sf /ci /workspace
After 5.45 seconds at 2026-04-19 06:57:47Z
  • plan: Start action shell: ln -sf /ci /workspace
    After 0.00 seconds at 2026-04-19 06:57:47Z
    Shell(
        Shell {
            shell: "ln -sf /ci /workspace",
        },
    )
  • plan: Start program bash
    After 0.00 seconds at 2026-04-19 06:57:47Z
    • bash
    • -c
    • set -xeuo pipefail ln -sf /ci /workspace
  • plan: Program succeeded
    After 0.00 seconds at 2026-04-19 06:57:47Z
    Exit code: 0
    Stderr:
    + ln -sf /ci /workspace
    
  • plan: Action succeeded shell: ln -sf /ci /workspace
    After 0.00 seconds at 2026-04-19 06:57:47Z
    Shell(
        Shell {
            shell: "ln -sf /ci /workspace",
        },
    )
plan: Successful action shell: git config --global user.name 'Ambient CI'
After 5.46 seconds at 2026-04-19 06:57:47Z
  • plan: Start action shell: git config --global user.name 'Ambient CI'
    After 0.00 seconds at 2026-04-19 06:57:47Z
    Shell(
        Shell {
            shell: "git config --global user.name 'Ambient CI'",
        },
    )
  • plan: Start program bash
    After 0.00 seconds at 2026-04-19 06:57:47Z
    • bash
    • -c
    • set -xeuo pipefail git config --global user.name 'Ambient CI'
  • plan: Program succeeded
    After 0.00 seconds at 2026-04-19 06:57:47Z
    Exit code: 0
    Stderr:
    + git config --global user.name 'Ambient CI'
    
  • plan: Action succeeded shell: git config --global user.name 'Ambient CI'
    After 0.00 seconds at 2026-04-19 06:57:47Z
    Shell(
        Shell {
            shell: "git config --global user.name 'Ambient CI'",
        },
    )
plan: Successful action shell: git config --global user.email ambient@example.com
After 5.48 seconds at 2026-04-19 06:57:47Z
  • plan: Start action shell: git config --global user.email ambient@example.com
    After 0.00 seconds at 2026-04-19 06:57:47Z
    Shell(
        Shell {
            shell: "git config --global user.email ambient@example.com",
        },
    )
  • plan: Start program bash
    After 0.00 seconds at 2026-04-19 06:57:47Z
    • bash
    • -c
    • set -xeuo pipefail git config --global user.email ambient@example.com
  • plan: Program succeeded
    After 0.00 seconds at 2026-04-19 06:57:47Z
    Exit code: 0
    Stderr:
    + git config --global user.email ambient@example.com
    
  • plan: Action succeeded shell: git config --global user.email ambient@example.com
    After 0.00 seconds at 2026-04-19 06:57:47Z
    Shell(
        Shell {
            shell: "git config --global user.email ambient@example.com",
        },
    )
plan: Successful action cargo_clippy
After 5.50 seconds at 2026-04-19 06:57:47Z
  • plan: Start action cargo_clippy
    After 0.00 seconds at 2026-04-19 06:57:47Z
    CargoClippy(
        CargoClippy,
    )
  • plan: Start program cargo
    After 0.00 seconds at 2026-04-19 06:57:47Z
    • cargo
    • --version
  • plan: Program succeeded
    After 0.00 seconds at 2026-04-19 06:57:47Z
    Exit code: 0
    Stdout:
    cargo 1.94.0 (85eff7c80 2026-01-15)
    
  • plan: Start program cargo
    After 0.00 seconds at 2026-04-19 06:57:47Z
    • cargo
    • clippy
    • --version
  • plan: Program succeeded
    After 0.00 seconds at 2026-04-19 06:57:47Z
    Exit code: 0
    Stdout:
    clippy 0.1.94 (4a4ef493e3 2026-03-02)
    
  • plan: Start program rustc
    After 0.00 seconds at 2026-04-19 06:57:47Z
    • rustc
    • --version
  • plan: Program succeeded
    After 0.00 seconds at 2026-04-19 06:57:47Z
    Exit code: 0
    Stdout:
    rustc 1.94.0 (4a4ef493e 2026-03-02)
    
  • plan: Start program cargo
    After 0.00 seconds at 2026-04-19 06:57:47Z
    • cargo
    • clippy
    • --offline
    • --locked
    • --workspace
    • --all-targets
    • --no-deps
    • --
    • --deny
    • warnings
  • plan: Program succeeded
    After 0.00 seconds at 2026-04-19 06:57:49Z
    Exit code: 0
    Stderr:
        Checking obnam-server v0.1.0 (/ci/src/obnam-server)
        Checking obnam v0.10.0 (/ci/src/obnam)
        Finished `dev` profile [unoptimized + debuginfo] target(s) in 1.55s
    
  • plan: Action succeeded cargo_clippy
    After 0.00 seconds at 2026-04-19 06:57:49Z
    CargoClippy(
        CargoClippy,
    )
plan: Successful action cargo_build
After 7.40 seconds at 2026-04-19 06:57:49Z
  • plan: Start action cargo_build
    After 0.00 seconds at 2026-04-19 06:57:49Z
    CargoBuild(
        CargoBuild,
    )
  • plan: Start program cargo
    After 0.00 seconds at 2026-04-19 06:57:49Z
    • cargo
    • --version
  • plan: Program succeeded
    After 0.00 seconds at 2026-04-19 06:57:49Z
    Exit code: 0
    Stdout:
    cargo 1.94.0 (85eff7c80 2026-01-15)
    
  • plan: Start program cargo
    After 0.00 seconds at 2026-04-19 06:57:49Z
    • cargo
    • clippy
    • --version
  • plan: Program succeeded
    After 0.00 seconds at 2026-04-19 06:57:49Z
    Exit code: 0
    Stdout:
    clippy 0.1.94 (4a4ef493e3 2026-03-02)
    
  • plan: Start program rustc
    After 0.00 seconds at 2026-04-19 06:57:49Z
    • rustc
    • --version
  • plan: Program succeeded
    After 0.00 seconds at 2026-04-19 06:57:49Z
    Exit code: 0
    Stdout:
    rustc 1.94.0 (4a4ef493e 2026-03-02)
    
  • plan: Start program cargo
    After 0.00 seconds at 2026-04-19 06:57:49Z
    • cargo
    • build
    • --offline
    • --locked
    • --workspace
    • --all-targets
  • plan: Program succeeded
    After 0.00 seconds at 2026-04-19 06:57:51Z
    Exit code: 0
    Stderr:
       Compiling obnam-server v0.1.0 (/ci/src/obnam-server)
       Compiling obnam v0.10.0 (/ci/src/obnam)
        Finished `dev` profile [unoptimized + debuginfo] target(s) in 2.13s
    
  • plan: Action succeeded cargo_build
    After 0.00 seconds at 2026-04-19 06:57:51Z
    CargoBuild(
        CargoBuild,
    )
plan: Successful action cargo_test
After 9.77 seconds at 2026-04-19 06:57:51Z
  • plan: Start action cargo_test
    After 0.00 seconds at 2026-04-19 06:57:51Z
    CargoTest(
        CargoTest,
    )
  • plan: Start program cargo
    After 0.00 seconds at 2026-04-19 06:57:51Z
    • cargo
    • --version
  • plan: Program succeeded
    After 0.00 seconds at 2026-04-19 06:57:51Z
    Exit code: 0
    Stdout:
    cargo 1.94.0 (85eff7c80 2026-01-15)
    
  • plan: Start program cargo
    After 0.00 seconds at 2026-04-19 06:57:51Z
    • cargo
    • clippy
    • --version
  • plan: Program succeeded
    After 0.00 seconds at 2026-04-19 06:57:51Z
    Exit code: 0
    Stdout:
    clippy 0.1.94 (4a4ef493e3 2026-03-02)
    
  • plan: Start program rustc
    After 0.00 seconds at 2026-04-19 06:57:51Z
    • rustc
    • --version
  • plan: Program succeeded
    After 0.00 seconds at 2026-04-19 06:57:51Z
    Exit code: 0
    Stdout:
    rustc 1.94.0 (4a4ef493e 2026-03-02)
    
  • plan: Start program cargo
    After 0.00 seconds at 2026-04-19 06:57:51Z
    • cargo
    • test
    • --offline
    • --locked
    • --workspace
  • plan: Program succeeded
    After 0.00 seconds at 2026-04-19 06:57:53Z
    Exit code: 0
    Stdout:
    running 43 tests
    test chunk::test::ciphertext_does_not_contain_plaintext ... ok
    test chunk::test::chunk_round_trip ... ok
    test chunk::test::label_display ... ok
    test chunk::test::label_round_trip ... ok
    test chunk::test::metadata ... ok
    test chunk::test::metadata_round_trip ... ok
    test cipher::test::key ... ok
    test cipher::test::key_from_string ... ok
    test cipher::test::aead_round_trip ... ok
    test client::test::generates_key ... ok
    test client::test::gets_correct_key ... ok
    test client::test::has_name ... ok
    test client::test::has_no_keys_initially ... ok
    test client::test::serialiazion_round_trip ... ok
    test client::test::sets_old_versions ... ok
    test config::test::merge_files ... ok
    test config::test::valideted_config ... ok
    test credential::test::roundtrip_sop_credential ... ok
    test credential::test::roundtrip_sop_method ... ok
    test id::test::id_is_equal_to_itself ... ok
    test id::test::textual_id_is_printable_ascii ... ok
    test id::test::id_round_trip ... ok
    test id::test::two_ids_are_different ... ok
    test plaintext::test::compressed ... ok
    test plaintext::test::compression_round_trip ... ok
    test plaintext::test::uncompressed ... ok
    test repository::test::cant_init_nonexistent_dir ... ok
    test repository::test::empty_dir_is_not_init ... ok
    test repository::test::adds_chunk ... ok
    test repository::test::finds_chunk_when_labels_match ... ok
    test repository::test::finds_client_chunk ... ok
    test repository::test::finds_no_chunk_in_empty_repo ... ok
    test repository::test::finds_credential_chunk ... ok
    test repository::test::finds_no_clients_when_there_are_none ... ok
    test repository::test::finds_no_chunk_when_none_match_label ... ok
    test repository::test::has_no_chunks_initially ... ok
    test repository::test::nonexistent_dir_is_not_init ... ok
    test repository::test::inits_empty_dir ... ok
    test repository::test::opens_client_chunk ... ok
    test repository::test::root_dir_is_not_init ... ok
    test sop::tests::cert_display ... ok
    test sop::tests::key_display ... ok
    test repository::test::removes_chunk ... ok
    
    test result: ok. 43 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.73s
    
    
    running 0 tests
    
    test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s
    
    
    running 1 test
    test config::test::merges ... ok
    
    test result: ok. 1 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s
    
    
    running 0 tests
    
    test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s
    
    
    running 2 tests
    test obnam/src/id.rs - id (line 5) ... ok
    test obnam/src/lib.rs - (line 12) ... ok
    
    test result: ok. 2 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s
    
    all doctests ran in 0.28s; merged doctests compilation took 0.27s
    
    running 0 tests
    
    test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s
    
    
    Stderr:
        Finished `test` profile [unoptimized + debuginfo] target(s) in 0.14s
         Running unittests src/lib.rs (/ci/cache/cargo-target/debug/deps/obnam-8faf45dba70dd9a4)
         Running unittests src/bin/obnam.rs (/ci/cache/cargo-target/debug/deps/obnam-a5f3c02932ca0b2e)
         Running unittests src/lib.rs (/ci/cache/cargo-target/debug/deps/obnam_server-795144605bf3fe39)
         Running unittests src/main.rs (/ci/cache/cargo-target/debug/deps/obnam_server-01cddca570dc3b49)
       Doc-tests obnam
       Doc-tests obnam_server
    
  • plan: Action succeeded cargo_test
    After 0.00 seconds at 2026-04-19 06:57:53Z
    CargoTest(
        CargoTest,
    )
plan: Successful action shell: export PATH=/root/.cargo/bin:/bin:/sbin ls -l "$CARGO_TARGET_DIR" make TARGET= subplot doc find doc -ls mkdir -p /ci/artifacts/rsync cp obnam.html doc/*.html /ci/artifacts/rsync
After 11.35 seconds at 2026-04-19 06:57:53Z
  • plan: Start action shell: export PATH=/root/.cargo/bin:/bin:/sbin ls -l "$CARGO_TARGET_DIR" make TARGET= subplot doc find doc -ls mkdir -p /ci/artifacts/rsync cp obnam.html doc/*.html /ci/artifacts/rsync
    After 0.00 seconds at 2026-04-19 06:57:53Z
    Shell(
        Shell {
            shell: "export PATH=/root/.cargo/bin:/bin:/sbin\nls -l \"$CARGO_TARGET_DIR\"\nmake TARGET= subplot doc\nfind doc -ls\nmkdir -p /ci/artifacts/rsync\ncp obnam.html doc/*.html /ci/artifacts/rsync\n",
        },
    )
  • plan: Start program bash
    After 0.00 seconds at 2026-04-19 06:57:53Z
    • bash
    • -c
    • set -xeuo pipefail export PATH=/root/.cargo/bin:/bin:/sbin ls -l "$CARGO_TARGET_DIR" make TARGET= subplot doc find doc -ls mkdir -p /ci/artifacts/rsync cp obnam.html doc/*.html /ci/artifacts/rsync
  • plan: Program succeeded
    After 0.00 seconds at 2026-04-19 06:57:57Z
    Exit code: 0
    Stdout:
    total 16
    -rw-r--r-- 1 root root  177 Apr 19 06:51 CACHEDIR.TAG
    drwxr-xr-x 7 root root 4096 Apr 19 06:57 debug
    drwxr-xr-x 8 root root 4096 Apr 19 06:53 doc
    drwxr-xr-x 7 root root 4096 Apr 19 06:56 release
    subplot docgen obnam.subplot --output obnam.html
    subplot codegen obnam.subplot --output test.py
    rm -f test.log
    python3 test.py --log test.log 
    srcdir /ci/src
    datadir /tmp/tmpa37fiuvu
    scenario: Manage chunks on the server
      step 1: given an installed obnam
      step 2: given file server-config.yaml
      step 3: given file greeting.txt
      step 4: given file .config/obnam/config.yaml from comfy.yaml
      step 5: given executable file create-token.sh
      step 6: when I run obnam-server --config server-config.yaml init
      step 7: when I run ./create-token.sh append
      step 8: when I run, as a daemon, obnam-server --config server-config.yaml serve
      step 9: when I run obnam remote put --id-file id.txt --label data --filename greeting.txt
      step 10: when I run obnam remote get --id-file id.txt --filename out
      step 11: then files greeting.txt and out on disk are identical
      step 12: when I run obnam remote find --label hahaha
      step 13: then stdout contains ""chunk_ids":[]"
      step 14: when I run obnam remote find --label data
      step 15: then stdout contains 1 lines
      step 16: when I try to run obnam remote delete --id-file id.txt
      step 17: then command fails
      step 18: when I run obnam remote get --id-file id.txt --filename out2
      step 19: then files greeting.txt and out2 on disk are identical
      step 20: when I run ./create-token.sh delete
      step 21: when I run obnam remote delete --id-file id.txt
      step 22: when I try to run obnam remote get --id-file id.txt --filename out2
      step 23: then command fails
      cleanup 8: when I run, as a daemon, obnam-server --config server-config.yaml serve
    scenario: Encryption round trip
      step 1: given an installed obnam
      step 2: given file alice.key
      step 3: given file hello.txt
      step 4: when I run obnam sop encrypt rsop alice.key hello.txt -o encrypted
      step 5: when I run ls -l encrypted
      step 6: when I run cat encrypted
      step 7: when I run obnam sop decrypt rsop alice.key encrypted
      step 8: then stdout is exactly "hello, world\n"
    scenario: Initialize a client chunk
      step 1: given an installed obnam
      step 2: given file .config/obnam/config.yaml from config-with-credential.yaml
      step 3: when I create directory mychunks
      step 4: when I run obnam repo init
      step 5: when I run obnam client init --client-name my.host
      step 6: then command is successful
    scenario: Chunk encrypt/decrypt with compression round trip via repository
      step 1: given an installed obnam
      step 2: given file .config/obnam/config.yaml from config.yaml
      step 3: given file greeting.txt
      step 4: when I create directory mychunks
      step 5: when I try to run obnam repo init
      step 6: when I run obnam chunk encrypt --compress --key secret --label sticky.tape greeting.txt
      step 7: when I run obnam repo find sticky.tape --one-match-output=id.txt
      step 8: when I run obnam chunk decrypt --key secret --id-file id.txt
      step 9: then stdout is exactly "Hello, world.\n"
    scenario: Create an OpenPGP software key credential
      step 1: given an installed obnam
      step 2: given file .config/obnam/config.yaml from config.yaml
      step 3: given file sop-generate
      step 4: when I run bash sop-generate alice.tsk
      step 5: when I create directory mychunks
      step 6: when I run obnam repo init
      step 7: when I run obnam credential list
      step 8: then stdout is exactly ""
      step 9: when I run obnam --client-key my.secret credential openpgp-soft alice.tsk
      step 10: when I run obnam credential list --all
      step 11: then stdout isn't exactly ""
    scenario: Manages chunks via API
      step 1: given an installed obnam
      step 2: given file server-config.yaml
      step 3: given file request.sh
      step 4: when I run obnam-server --config server-config.yaml init
      step 5: when I run obnam-server --config server-config.yaml token --output token.txt --allow append
      step 6: when I run cat token.txt
      step 7: when I run, as a daemon, obnam-server --config server-config.yaml serve
      step 8: when I run bash request.sh GET /chunks/1
      step 9: then stderr contains "HTTP/1.1 404"
      step 10: when I run bash request.sh PUT /chunks/1?label=first hello
      step 11: then stderr contains "HTTP/1.1 201"
      step 12: when I run bash request.sh GET /chunks/1
      step 13: then stderr contains "HTTP/1.1 200"
      step 14: then stdout is exactly "hello"
      step 15: when I run bash request.sh GET /chunks?label=first
      step 16: then stdout is exactly "{"chunk_ids":["1"]}"
      step 17: when I run bash request.sh DELETE /chunks/1
      step 18: then stderr contains "HTTP/1.1 401"
      step 19: when I run obnam-server --config server-config.yaml token --output token.txt --allow delete
      step 20: when I run bash request.sh DELETE /chunks/1
      step 21: then stderr contains "HTTP/1.1 204"
      step 22: when I run bash request.sh GET /chunks?label=first
      step 23: then stdout is exactly "{"chunk_ids":[]}"
      cleanup 7: when I run, as a daemon, obnam-server --config server-config.yaml serve
    scenario: Chunk encrypt/decrypt round trip via file
      step 1: given an installed obnam
      step 2: given file greeting.txt
      step 3: when I run obnam chunk encrypt --key secret --label sticky.tape greeting.txt --output chunk.file
      step 4: when I run obnam chunk decrypt --key secret chunk.file
      step 5: then stdout is exactly "Hello, world.\n"
    scenario: Initialize a backup repository
      step 1: given an installed obnam
      step 2: given file .config/obnam/config.yaml from config.yaml
      step 3: then directory mychunks does not exist
      step 4: when I try to run obnam repo is
      step 5: then command fails
      step 6: when I create directory mychunks
      step 7: when I try to run obnam repo is
      step 8: then command fails
      step 9: when I run obnam repo init
      step 10: when I run obnam repo is
      step 11: then exit code is 0
    scenario: Inspect an encoded chunk in file
      step 1: given an installed obnam
      step 2: given file greeting.txt
      step 3: when I run obnam chunk encrypt --label sticky.tape --key secret greeting.txt --output chunk.file
      step 4: when I run obnam chunk inspect --filename chunk.file
      step 5: then stdout is valid JSON
      step 6: then stdout contains ""id":"
      step 7: then stdout contains ""label":"
      step 8: then stdout contains ""data": null"
      step 9: when I run obnam chunk inspect --filename chunk.file --key secret
      step 10: then stdout is valid JSON
      step 11: then stdout contains ""id":"
      step 12: then stdout contains ""label":"
      step 13: then stdout contains ""data": ""
    scenario: Logging level can be set
      step 1: given an installed obnam
      step 2: when I run obnam config
      step 3: then stderr doesn't contain "TRACE"
      step 4: then stderr doesn't contain "DEBUG"
      step 5: then stderr contains "INFO"
      step 6: then stderr contains "WARN"
      step 7: then stderr contains "ERROR"
      step 8: when I run env OBNAM_LOG=error obnam config
      step 9: then stderr doesn't contain "TRACE"
      step 10: then stderr doesn't contain "DEBUG"
      step 11: then stderr doesn't contain "INFO"
      step 12: then stderr doesn't contain "WARN"
      step 13: then stderr contains "ERROR"
      step 14: when I run obnam --log-level=error config
      step 15: then stderr doesn't contain "TRACE"
      step 16: then stderr doesn't contain "DEBUG"
      step 17: then stderr doesn't contain "INFO"
      step 18: then stderr doesn't contain "WARN"
      step 19: then stderr contains "ERROR"
      step 20: when I run env OBNAM_LOG=error obnam --log-level=trace config
      step 21: then stderr contains "TRACE"
      step 22: then stderr contains "DEBUG"
      step 23: then stderr contains "INFO"
      step 24: then stderr contains "WARN"
      step 25: then stderr contains "ERROR"
    scenario: Conveniently create a client with an OpenPGP software key credential
      step 1: given an installed obnam
      step 2: given file .config/obnam/config.yaml from comfy.yaml
      step 3: when I create directory my.repo
      step 4: when I run obnam repo init
      step 5: when I run obnam client init --credential softy
      step 6: when I run obnam client list
      step 7: then stdout isn't exactly ""
    scenario: Avoid client chunks with the same name
      step 1: given an installed obnam
      step 2: given file .config/obnam/config.yaml from config.yaml
      step 3: when I create directory mychunks
      step 4: when I run obnam repo init
      step 5: when I run obnam --client-key my.secret client init --client-name my.host
      step 6: then command is successful
      step 7: when I try to run obnam --client-key my.secret client init --client-name my.host
      step 8: then command fails
    scenario: Add a chunk to the backup repository
      step 1: given an installed obnam
      step 2: given file .config/obnam/config.yaml from config.yaml
      step 3: given file greeting.txt
      step 4: given a directory mychunks
      step 5: when I run obnam repo init
      step 6: when I run obnam chunk encrypt --key secret --label data greeting.txt
      step 7: when I run obnam repo list
      step 8: then stdout contains " data\n"
    scenario: Generates and validates API tokens
      step 1: given an installed obnam
      step 2: given file server-config.yaml
      step 3: when I run obnam-server --config server-config.yaml init
      step 4: then file keypair.json exists
      step 5: when I try to run obnam-server --config server-config.yaml init
      step 6: then command fails
      step 7: then stderr contains "keypair.json"
      step 8: when I run obnam-server --config server-config.yaml token --output token.txt --allow append
      step 9: then file token.txt contains "v4.public."
      step 10: when I run obnam-server --config server-config.yaml validate --file token.txt
      step 11: then stdout contains "read_chunks_allowed: true"
      step 12: then stdout contains "find_chunks_allowed: true"
      step 13: then stdout contains "create_chunk_allowed: true"
      step 14: then stdout contains "delete_chunk_allowed: false"
      step 15: when I run obnam-server --config server-config.yaml token --output token.txt --allow delete
      step 16: then file token.txt contains "v4.public."
      step 17: when I run obnam-server --config server-config.yaml validate --file token.txt
      step 18: then stdout contains "read_chunks_allowed: true"
      step 19: then stdout contains "find_chunks_allowed: true"
      step 20: then stdout contains "create_chunk_allowed: true"
      step 21: then stdout contains "delete_chunk_allowed: true"
    scenario: Chunk encrypt/decrypt with compression round trip via file
      step 1: given an installed obnam
      step 2: given file greeting.txt
      step 3: when I run obnam chunk encrypt --compress --key secret --label sticky.tape greeting.txt --output chunk.file
      step 4: when I run obnam chunk decrypt --key secret chunk.file
      step 5: then stdout is exactly "Hello, world.\n"
    scenario: Round trip chunk encryption using key from client chunk
      step 1: given an installed obnam
      step 2: given file .config/obnam/config.yaml from config.yaml
      step 3: given file greeting.txt
      step 4: when I create directory mychunks
      step 5: when I run obnam repo init
      step 6: when I run obnam --client-key my.secret client init --client-name my.host
      step 7: when I run obnam --client-key my.secret client generate my.host my.key
      step 8: when I run obnam --client-key my.secret chunk encrypt --client-name my.host --key-name my.key --label sticky.tape greeting.txt --output chunk.file
      step 9: when I run obnam --client-key my.secret chunk decrypt --client-name my.host --key-name my.key chunk.file
      step 10: then stdout is exactly "Hello, world.\n"
    scenario: Refuses API token made for another server instance
      step 1: given an installed obnam
      step 2: given file server-config.yaml
      step 3: when I run obnam-server --config server-config.yaml init
      step 4: when I run obnam-server --config server-config.yaml token --output token.txt --allow append
      step 5: when I remove file keypair.json
      step 6: when I run obnam-server --config server-config.yaml init
      step 7: when I try to run obnam-server --config server-config.yaml validate --file token.txt
      step 8: then command fails
    scenario: Chunk encrypt/decrypt round trip via repository
      step 1: given an installed obnam
      step 2: given file .config/obnam/config.yaml from config.yaml
      step 3: given file greeting.txt
      step 4: when I create directory mychunks
      step 5: when I try to run obnam repo init
      step 6: when I run obnam chunk encrypt --key secret --label sticky.tape greeting.txt --id-file id.txt
      step 7: when I run obnam repo list
      step 8: when I run obnam chunk decrypt --key secret --id-file id.txt
      step 9: then stdout is exactly "Hello, world.\n"
    scenario: Conveniently encrypt and decrypt chunk in a backup repository
      step 1: given an installed obnam
      step 2: given file .config/obnam/config.yaml from comfy.yaml
      step 3: given file message.txt
      step 4: when I create directory my.repo
      step 5: when I run obnam repo init
      step 6: when I run obnam client init --credential softy
      step 7: when I run obnam chunk encrypt --label data --key-name default --id-file id.txt message.txt
      step 8: when I run obnam chunk decrypt --key-name default --id-file id.txt --output out.dat
      step 9: then files message.txt and out.dat match
    scenario: Find chunks using labels
      step 1: given an installed obnam
      step 2: given file .config/obnam/config.yaml from config.yaml
      step 3: given file greeting.txt
      step 4: given a directory mychunks
      step 5: when I run obnam repo init
      step 6: when I run obnam chunk encrypt --key secret --label data-chunk greeting.txt
      step 7: when I run obnam chunk encrypt --key secret --label data-chunk greeting.txt
      step 8: when I run obnam chunk encrypt --key secret --label client-chunk greeting.txt
      step 9: when I run obnam repo find missing
      step 10: then stdout is exactly ""
      step 11: when I run obnam repo find data-chunk
      step 12: then stdout contains 2 lines
      step 13: when I run obnam repo find client-chunk
      step 14: then stdout contains 1 lines
    scenario: List clients
      step 1: given an installed obnam
      step 2: given file .config/obnam/config.yaml from config.yaml
      step 3: when I create directory mychunks
      step 4: when I run obnam repo init
      step 5: when I run obnam --client-key my.secret client init --client-name my.host
      step 6: when I run obnam --client-key my.secret client list
      step 7: then stdout is exactly "my.host\n"
    scenario: Show client
      step 1: given an installed obnam
      step 2: given file .config/obnam/config.yaml from config.yaml
      step 3: when I create directory mychunks
      step 4: when I run obnam repo init
      step 5: when I run obnam --client-key my.secret client init --client-name my.host
      step 6: when I run obnam --client-key my.secret client show --client-name my.host
      step 7: then stdout is valid JSON
    scenario: Remove a chunk from backup repository
      step 1: given an installed obnam
      step 2: given file .config/obnam/config.yaml from config.yaml
      step 3: given file greeting.txt
      step 4: given a directory mychunks
      step 5: when I run obnam repo init
      step 6: when I run obnam chunk encrypt --key secret --label data-chunk --id-file id.txt greeting.txt
      step 7: when I run obnam repo remove --id-file id.txt
      step 8: when I run obnam repo list
      step 9: then stdout doesn't contain "xyzzy"
    scenario: Inspect an encrypted chunk using key from client chunk
      step 1: given an installed obnam
      step 2: given file .config/obnam/config.yaml from config.yaml
      step 3: given file greeting.txt
      step 4: when I create directory mychunks
      step 5: when I run obnam repo init
      step 6: when I run obnam --client-key my.secret client init --client-name my.host
      step 7: when I run obnam --client-key my.secret client generate my.host my.key
      step 8: when I run obnam --client-key my.secret chunk encrypt --client-name my.host --key-name my.key --label sticky.tape greeting.txt --output chunk.file
      step 9: when I run obnam --client-key my.secret chunk inspect --filename chunk.file --client-name my.host --key-name my.key
      step 10: then stdout is valid JSON
      step 11: then stdout contains ""id":"
      step 12: then stdout contains ""label":"
      step 13: then stdout contains ""data": ""
    scenario: Extracting a certificate from a key
      step 1: given an installed obnam
      step 2: given file alice.key
      step 3: when I run obnam sop extract-cert rsop alice.key
      step 4: then stdout isn't exactly ""
    scenario: Validates token via HTTP API
      step 1: given an installed obnam
      step 2: given file server-config.yaml
      step 3: given file request.sh
      step 4: when I run obnam-server --config server-config.yaml init
      step 5: when I run obnam-server --config server-config.yaml token --output token.txt --allow append
      step 6: when I run cat token.txt
      step 7: when I run, as a daemon, obnam-server --config server-config.yaml serve
      step 8: when I run bash request.sh GET /validate
      step 9: then stdout contains ""read_chunks_allowed":true"
      step 10: then stdout contains ""find_chunks_allowed":true"
      step 11: then stdout contains ""create_chunk_allowed":true"
      step 12: then stdout contains ""delete_chunk_allowed":false"
      cleanup 7: when I run, as a daemon, obnam-server --config server-config.yaml serve
    scenario: Inspect an encoded chunk in repository
      step 1: given an installed obnam
      step 2: given file .config/obnam/config.yaml from config.yaml
      step 3: given file greeting.txt
      step 4: when I create directory mychunks
      step 5: when I try to run obnam repo init
      step 6: when I run obnam chunk encrypt --label sticky.tape --key secret greeting.txt --id-file=id.txt
      step 7: when I run obnam chunk inspect --id-file id.txt
      step 8: then stdout is valid JSON
      step 9: then stdout contains ""id":"
      step 10: then stdout contains ""label":"
      step 11: then stdout contains ""data": null"
      step 12: when I run obnam chunk inspect --key secret --id-file id.txt
      step 13: then stdout is valid JSON
      step 14: then stdout contains ""id":"
      step 15: then stdout contains ""label":"
      step 16: then stdout contains ""data": ""
    scenario: Get path to chunk in backup repository
      step 1: given an installed obnam
      step 2: given file .config/obnam/config.yaml from config.yaml
      step 3: given file greeting.txt
      step 4: given a directory mychunks
      step 5: when I run obnam repo init
      step 6: when I run obnam chunk encrypt --key secret --label data-chunk --id-file id.txt greeting.txt
      step 7: when I run obnam repo path --id-file id.txt -o chunk.filename
      step 8: then a file exists whose name is in chunk.filename
    scenario: Generate new key
      step 1: given an installed obnam
      step 2: given file .config/obnam/config.yaml from config.yaml
      step 3: when I create directory mychunks
      step 4: when I run obnam repo init
      step 5: when I run obnam --client-key my.secret client init --client-name my.host
      step 6: when I run obnam --client-key my.secret client generate my.host my.key
      step 7: when I run obnam --client-key my.secret client show --client-name my.host
      step 8: then stdout contains "my.key"
    OK, all scenarios finished successfully
    env 'RUSTDOCFLAGS=-D warnings' cargo doc --no-deps
    make -C doc
    make[1]: Entering directory '/ci/src/doc'
    pandoc -N --toc --standalone --self-contained -o "arch.html" "arch.md"
    pandoc -N --toc --standalone --self-contained -o "glossary.html" "glossary.md"
    make[1]: Leaving directory '/ci/src/doc'
      1179695      4 drwxr-xr-x   2 root     root         4096 Apr 19 06:57 doc
      1215028      8 -rw-r--r--   1 root     root         4132 Apr 19 06:57 doc/glossary.html
      1179698      4 -rw-r--r--   1 root     root          427 Apr 19 06:57 doc/glossary.md
      1179699     16 -rw-r--r--   1 root     root        13627 Apr 19 06:57 doc/arch.md
      1179697      4 -rw-r--r--   1 root     root          540 Apr 19 06:57 doc/keys.pik
      1179700      4 -rw-r--r--   1 root     root          327 Apr 19 06:57 doc/Makefile
      1215027     24 -rw-r--r--   1 root     root        24568 Apr 19 06:57 doc/arch.html
      1179696      4 -rw-r--r--   1 root     root         3885 Apr 19 06:57 doc/keys.svg
    
    Stderr:
    + export PATH=/root/.cargo/bin:/bin:/sbin
    + PATH=/root/.cargo/bin:/bin:/sbin
    + ls -l /ci/cache/cargo-target
    + make TARGET= subplot doc
     INFO Starting Subplot
     INFO Subplot finished successfully
     INFO Starting Subplot
     INFO Subplot finished successfully
     Documenting obnam-server v0.1.0 (/ci/src/obnam-server)
     Documenting obnam v0.10.0 (/ci/src/obnam)
        Finished `dev` profile [unoptimized + debuginfo] target(s) in 0.70s
       Generated /ci/cache/cargo-target/doc/obnam/index.html and 1 other file
    [WARNING] This document format requires a nonempty <title> element.
      Defaulting to 'glossary' as the title.
      To specify a title, use 'title' in metadata or --metadata title="...".
    + find doc -ls
    + mkdir -p /ci/artifacts/rsync
    + cp obnam.html doc/arch.html doc/glossary.html /ci/artifacts/rsync
    
  • plan: Action succeeded shell: export PATH=/root/.cargo/bin:/bin:/sbin ls -l "$CARGO_TARGET_DIR" make TARGET= subplot doc find doc -ls mkdir -p /ci/artifacts/rsync cp obnam.html doc/*.html /ci/artifacts/rsync
    After 0.00 seconds at 2026-04-19 06:57:57Z
    Shell(
        Shell {
            shell: "export PATH=/root/.cargo/bin:/bin:/sbin\nls -l \"$CARGO_TARGET_DIR\"\nmake TARGET= subplot doc\nfind doc -ls\nmkdir -p /ci/artifacts/rsync\ncp obnam.html doc/*.html /ci/artifacts/rsync\n",
        },
    )
plan: Successful action custom: dch
After 15.96 seconds at 2026-04-19 06:57:57Z
  • plan: Start action custom: dch
    After 0.00 seconds at 2026-04-19 06:57:57Z
    Custom(
        Custom {
            name: "dch",
            args: {
                "debfullname": String("Lars Wirzenius"),
                "debemail": String("liw@liw.fi"),
            },
        },
    )
  • plan: Start action custom: dch
    After 0.00 seconds at 2026-04-19 06:57:57Z
    Custom {
        name: "dch",
        args: {
            "debfullname": String("Lars Wirzenius"),
            "debemail": String("liw@liw.fi"),
        },
    }
  • plan: Custom action output
    After 0.00 seconds at 2026-04-19 06:57:57Z
    Stdout:
    HEAD is now at 5b71bd2 refactor: rename internal names "store" to "repo"
    Removing doc/arch.html
    Removing doc/glossary.html
    Removing obnam.html
    Removing test.log
    Removing test.py
    
    Stderr:
    + 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:/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
    + git reset --hard
    + git clean -fdx
    ++ dpkg-parsechangelog -SVersion
    ++ sed 's/-[^-]*$//'
    + V=0.9.9
    ++ date -u +%Y%m%dT%H%M%S
    + T=20260419T065757
    + version=0.9.9.ci20260419T065757-1
    + dch -v 0.9.9.ci20260419T065757-1 'CI build under Ambient.'
    + dch -r ''
    
  • plan: Action succeeded custom: dch
    After 0.00 seconds at 2026-04-19 06:57:57Z
    Custom(
        Custom {
            name: "dch",
            args: {
                "debfullname": String("Lars Wirzenius"),
                "debemail": String("liw@liw.fi"),
            },
        },
    )
plan: Successful action deb
After 16.21 seconds at 2026-04-19 06:57:57Z
  • plan: Start action deb
    After 0.00 seconds at 2026-04-19 06:57:57Z
    Deb(
        Deb {
            packages: Some(
                "debian",
            ),
        },
    )
  • plan: Start program /bin/bash
    After 0.00 seconds at 2026-04-19 06:57:57Z
    • /bin/bash
    • -c
    • #!/usr/bin/env bash set -xeuo pipefail echo "PATH at start: $PATH" export PATH="/root/.cargo/bin:$PATH" export CARGO_HOME=/ci/deps export DEBEMAIL=liw@liw.fi export DEBFULLNAME="Lars Wirzenius" /bin/env command -v cargo command -v rustc cargo --version rustc --version # Get name and version of source package. name="$(dpkg-parsechangelog -SSource)" version="$(dpkg-parsechangelog -SVersion)" # Get upstream version: everything before the last dash. uv="$(echo "$version" | sed 's/-[^-]*$//')" # Files that will be created. arch="$(dpkg --print-architecture)" orig="../${name}_${uv}.orig.tar.xz" deb="../${name}_${version}_${arch}.deb" changes="../${name}_${version}_${arch}.changes" # Create "upstream tarball". git archive HEAD | xz >"$orig" # Build package. dpkg-buildpackage -us -uc # Dump some information to make it easier to visually verify # everything looks OK. Also, test the package with the lintian tool. ls -l .. for x in ../*.deb; do dpkg -c "$x"; done # FIXME: disabled while this prevents radicle-native-ci deb from being built. # lintian -i --allow-root --fail-on warning ../*.changes # Move files to artifacts directory. mv ../*_* /ci/artifacts/debian
  • plan: Program succeeded
    After 0.00 seconds at 2026-04-19 06:58:22Z
    Exit code: 0
    Stdout:
    PATH at start: /root/.cargo/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
    DEBFULLNAME=Lars Wirzenius
    CARGO_TARGET_DIR=/ci/cache/cargo-target
    PWD=/ci/src
    SYSTEMD_EXEC_PID=281
    HOME=/root
    LANG=C.UTF-8
    CARGO_HOME=/ci/deps
    DEBEMAIL=liw@liw.fi
    INVOCATION_ID=52f93d0c62f548dab55481f9e4444b62
    SHLVL=2
    JOURNAL_STREAM=8:14592
    PATH=/root/.cargo/bin:/root/.cargo/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
    OLDPWD=/
    _=/bin/env
    /root/.cargo/bin/cargo
    /root/.cargo/bin/rustc
    cargo 1.94.0 (85eff7c80 2026-01-15)
    rustc 1.94.0 (4a4ef493e 2026-03-02)
    dpkg-buildpackage: info: source package obnam
    dpkg-buildpackage: info: source version 0.9.9.ci20260419T065757-1
    dpkg-buildpackage: info: source distribution unstable
    dpkg-buildpackage: info: source changed by "Lars Wirzenius" <"liw@liw.fi">
    dpkg-buildpackage: info: host architecture amd64
    dh clean
       dh_auto_clean
       dh_clean
    dpkg-source: info: using source format '3.0 (quilt)'
    dpkg-source: info: building obnam using existing ./obnam_0.9.9.ci20260419T065757.orig.tar.xz
    dpkg-source: info: building obnam in obnam_0.9.9.ci20260419T065757-1.debian.tar.xz
    dpkg-source: info: building obnam in obnam_0.9.9.ci20260419T065757-1.dsc
    dh build
       dh_update_autotools_config
       dh_autoreconf
       dh_auto_configure
       debian/rules override_dh_auto_build
    make[1]: Entering directory '/ci/src'
    cargo build --workspace --release
    make[1]: Leaving directory '/ci/src'
       debian/rules override_dh_auto_test
    make[1]: Entering directory '/ci/src'
    echo tests are disabled, for now
    tests are disabled, for now
    make[1]: Leaving directory '/ci/src'
       create-stamp debian/debhelper-build-stamp
    dh binary
       dh_testroot
       dh_prep
       debian/rules override_dh_auto_install
    make[1]: Entering directory '/ci/src'
    cargo install --offline --locked --path=obnam --root=debian/obnam/usr
    find debian -name '.crates*.*' -delete
    make[1]: Leaving directory '/ci/src'
       dh_installdocs
       dh_installchangelogs
       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
       dh_md5sums
       dh_builddeb
    dpkg-deb: building package 'obnam-dbgsym' in '../obnam-dbgsym_0.9.9.ci20260419T065757-1_amd64.deb'.
    dpkg-deb: building package 'obnam' in '../obnam_0.9.9.ci20260419T065757-1_amd64.deb'.
    dpkg-genchanges: info: including full source code in upload
    dpkg-buildpackage: info: full upload (original source is included)
    total 3028
    drwxr-xr-x  4 root root    4096 Apr 19 06:57 artifacts
    drwxr-xr-x  3 root root    4096 Apr 19 06:51 cache
    drwxr-xr-x  3 root root    4096 Apr 19 06:57 deps
    -rw-r--r--  1 root root  327496 Apr 19 06:58 obnam-dbgsym_0.9.9.ci20260419T065757-1_amd64.deb
    -rw-r--r--  1 root root    1716 Apr 19 06:57 obnam_0.9.9.ci20260419T065757-1.debian.tar.xz
    -rw-r--r--  1 root root     900 Apr 19 06:57 obnam_0.9.9.ci20260419T065757-1.dsc
    -rw-r--r--  1 root root    5655 Apr 19 06:58 obnam_0.9.9.ci20260419T065757-1_amd64.buildinfo
    -rw-r--r--  1 root root    2296 Apr 19 06:58 obnam_0.9.9.ci20260419T065757-1_amd64.changes
    -rw-r--r--  1 root root 2650832 Apr 19 06:58 obnam_0.9.9.ci20260419T065757-1_amd64.deb
    -rw-r--r--  1 root root   78400 Apr 19 06:57 obnam_0.9.9.ci20260419T065757.orig.tar.xz
    drwxr-xr-x 10 root root    4096 Apr 19 06:57 src
    drwxr-xr-x root/root         0 2026-04-19 06:57 ./
    drwxr-xr-x root/root         0 2026-04-19 06:57 ./usr/
    drwxr-xr-x root/root         0 2026-04-19 06:57 ./usr/lib/
    drwxr-xr-x root/root         0 2026-04-19 06:57 ./usr/lib/debug/
    drwxr-xr-x root/root         0 2026-04-19 06:57 ./usr/lib/debug/.build-id/
    drwxr-xr-x root/root         0 2026-04-19 06:57 ./usr/lib/debug/.build-id/e9/
    -rw-r--r-- root/root   1936944 2026-04-19 06:57 ./usr/lib/debug/.build-id/e9/03a207f209aa36326eb578e50c4dc887d27ff8.debug
    drwxr-xr-x root/root         0 2026-04-19 06:57 ./usr/share/
    drwxr-xr-x root/root         0 2026-04-19 06:57 ./usr/share/doc/
    lrwxrwxrwx root/root         0 2026-04-19 06:57 ./usr/share/doc/obnam-dbgsym -> obnam
    drwxr-xr-x root/root         0 2026-04-19 06:57 ./
    drwxr-xr-x root/root         0 2026-04-19 06:57 ./usr/
    drwxr-xr-x root/root         0 2026-04-19 06:57 ./usr/bin/
    -rwxr-xr-x root/root   9287984 2026-04-19 06:57 ./usr/bin/obnam
    drwxr-xr-x root/root         0 2026-04-19 06:57 ./usr/share/
    drwxr-xr-x root/root         0 2026-04-19 06:57 ./usr/share/doc/
    drwxr-xr-x root/root         0 2026-04-19 06:57 ./usr/share/doc/obnam/
    -rw-r--r-- root/root       203 2026-04-19 06:57 ./usr/share/doc/obnam/changelog.Debian.gz
    -rw-r--r-- root/root       371 2026-04-19 06:57 ./usr/share/doc/obnam/copyright
    drwxr-xr-x root/root         0 2026-04-19 06:57 ./usr/share/lintian/
    drwxr-xr-x root/root         0 2026-04-19 06:57 ./usr/share/lintian/overrides/
    -rw-r--r-- root/root        48 2026-04-19 06:57 ./usr/share/lintian/overrides/obnam
    
    Stderr:
    + echo '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=/ci/deps
    + CARGO_HOME=/ci/deps
    + export DEBEMAIL=liw@liw.fi
    + DEBEMAIL=liw@liw.fi
    + export 'DEBFULLNAME=Lars Wirzenius'
    + DEBFULLNAME='Lars Wirzenius'
    + /bin/env
    + command -v cargo
    + command -v rustc
    + cargo --version
    + rustc --version
    ++ dpkg-parsechangelog -SSource
    + name=obnam
    ++ dpkg-parsechangelog -SVersion
    + version=0.9.9.ci20260419T065757-1
    ++ echo 0.9.9.ci20260419T065757-1
    ++ sed 's/-[^-]*$//'
    + uv=0.9.9.ci20260419T065757
    ++ dpkg --print-architecture
    + arch=amd64
    + orig=../obnam_0.9.9.ci20260419T065757.orig.tar.xz
    + deb=../obnam_0.9.9.ci20260419T065757-1_amd64.deb
    + changes=../obnam_0.9.9.ci20260419T065757-1_amd64.changes
    + git archive HEAD
    + xz
    + dpkg-buildpackage -us -uc
     dpkg-source --before-build .
     debian/rules clean
     dpkg-source -b .
     debian/rules build
       Compiling obnam v0.10.0 (/ci/src/obnam)
       Compiling obnam-server v0.1.0 (/ci/src/obnam-server)
        Finished `release` profile [optimized] target(s) in 12.20s
     debian/rules binary
      Installing obnam v0.10.0 (/ci/src/obnam)
       Compiling obnam v0.10.0 (/ci/src/obnam)
        Finished `release` profile [optimized] target(s) in 6.73s
      Installing /ci/src/debian/obnam/usr/bin/obnam
       Installed package `obnam v0.10.0 (/ci/src/obnam)` (executable `obnam`)
    warning: be sure to add `/ci/src/debian/obnam/usr/bin` to your PATH to be able to run the installed binaries
     dpkg-genbuildinfo -O../obnam_0.9.9.ci20260419T065757-1_amd64.buildinfo
     dpkg-genchanges -O../obnam_0.9.9.ci20260419T065757-1_amd64.changes
     dpkg-source --after-build .
    + ls -l ..
    + for x in ../*.deb
    + dpkg -c ../obnam-dbgsym_0.9.9.ci20260419T065757-1_amd64.deb
    + for x in ../*.deb
    + dpkg -c ../obnam_0.9.9.ci20260419T065757-1_amd64.deb
    + mv ../obnam-dbgsym_0.9.9.ci20260419T065757-1_amd64.deb ../obnam_0.9.9.ci20260419T065757-1.debian.tar.xz ../obnam_0.9.9.ci20260419T065757-1.dsc ../obnam_0.9.9.ci20260419T065757-1_amd64.buildinfo ../obnam_0.9.9.ci20260419T065757-1_amd64.changes ../obnam_0.9.9.ci20260419T065757-1_amd64.deb ../obnam_0.9.9.ci20260419T065757.orig.tar.xz /ci/artifacts/debian
    
  • plan: Action succeeded deb
    After 0.00 seconds at 2026-04-19 06:58:22Z
    Deb(
        Deb {
            packages: Some(
                "debian",
            ),
        },
    )
plan: Successful action tar_create
After 40.40 seconds at 2026-04-19 06:58:22Z
  • plan: Start action tar_create
    After 0.00 seconds at 2026-04-19 06:58:22Z
    TarCreate(
        TarCreate {
            archive: "/dev/vde",
            directory: "/ci/cache",
        },
    )
  • plan: Action succeeded tar_create
    After 0.00 seconds at 2026-04-19 06:58:25Z
    TarCreate(
        TarCreate {
            archive: "/dev/vde",
            directory: "/ci/cache",
        },
    )
plan: Successful action tar_create
After 43.30 seconds at 2026-04-19 06:58:25Z
  • plan: Start action tar_create
    After 0.00 seconds at 2026-04-19 06:58:25Z
    TarCreate(
        TarCreate {
            archive: "/dev/vdd",
            directory: "/ci/artifacts",
        },
    )
  • plan: Action succeeded tar_create
    After 0.00 seconds at 2026-04-19 06:58:25Z
    TarCreate(
        TarCreate {
            archive: "/dev/vdd",
            directory: "/ci/artifacts",
        },
    )
plan: Plan succeeded
After 43.32 seconds at 2026-04-19 06:58:25ZHopefully all is good.

Raw log messages for Ambient troubleshooting

Raw log messages

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

  1. {
      "type": "executor_starts",
      "name": "ambient-execute-plan",
      "version": "0.14.0@c37ec71",
      "timestamp": {
        "secs_since_epoch": 1776581861,
        "nanos_since_epoch": 764507876
      },
      "log_source": "Plan"
    }
  2. {
      "type": "runnable_plan",
      "steps": [
        {
          "action": "mkdir",
          "pathname": "/ci"
        },
        {
          "action": "mkdir",
          "pathname": "/ci/artifacts"
        },
        {
          "action": "tar_extract",
          "archive": "/dev/vdc",
          "directory": "/ci/src"
        },
        {
          "action": "tar_extract",
          "archive": "/dev/vdf",
          "directory": "/ci/deps"
        },
        {
          "action": "tar_extract",
          "archive": "/dev/vde",
          "directory": "/ci/cache"
        },
        {
          "action": "shell",
          "shell": "ln -sf /ci /workspace"
        },
        {
          "action": "shell",
          "shell": "git config --global user.name 'Ambient CI'"
        },
        {
          "action": "shell",
          "shell": "git config --global user.email ambient@example.com"
        },
        {
          "action": "cargo_clippy"
        },
        {
          "action": "cargo_build"
        },
        {
          "action": "cargo_test"
        },
        {
          "action": "shell",
          "shell": "export PATH=/root/.cargo/bin:/bin:/sbin\nls -l \"$CARGO_TARGET_DIR\"\nmake TARGET= subplot doc\nfind doc -ls\nmkdir -p /ci/artifacts/rsync\ncp obnam.html doc/*.html /ci/artifacts/rsync\n"
        },
        {
          "action": "custom",
          "name": "dch",
          "args": {
            "debfullname": "Lars Wirzenius",
            "debemail": "liw@liw.fi"
          }
        },
        {
          "action": "deb",
          "packages": "debian"
        },
        {
          "action": "tar_create",
          "archive": "/dev/vde",
          "directory": "/ci/cache"
        },
        {
          "action": "tar_create",
          "archive": "/dev/vdd",
          "directory": "/ci/artifacts"
        }
      ],
      "executor_drive": "/dev/vdb",
      "source_drive": "/dev/vdc",
      "artifact_drive": "/dev/vdd",
      "cache_drive": "/dev/vde",
      "deps_drive": "/dev/vdf",
      "workspace_dir": "/ci",
      "source_dir": "/ci/src",
      "deps_dir": "/ci/deps",
      "cache_dir": "/ci/cache",
      "artifacts_dir": "/ci/artifacts",
      "envs": {},
      "timestamp": {
        "secs_since_epoch": 1776581861,
        "nanos_since_epoch": 764920950
      },
      "log_source": "Plan"
    }
  3. {
      "type": "execute_action",
      "action": "mkdir",
      "pathname": "/ci",
      "timestamp": {
        "secs_since_epoch": 1776581861,
        "nanos_since_epoch": 765091401
      },
      "log_source": "Plan"
    }
  4. {
      "type": "action_succeeded",
      "action": "mkdir",
      "pathname": "/ci",
      "timestamp": {
        "secs_since_epoch": 1776581861,
        "nanos_since_epoch": 765492200
      },
      "log_source": "Plan"
    }
  5. {
      "type": "execute_action",
      "action": "mkdir",
      "pathname": "/ci/artifacts",
      "timestamp": {
        "secs_since_epoch": 1776581861,
        "nanos_since_epoch": 765545929
      },
      "log_source": "Plan"
    }
  6. {
      "type": "action_succeeded",
      "action": "mkdir",
      "pathname": "/ci/artifacts",
      "timestamp": {
        "secs_since_epoch": 1776581861,
        "nanos_since_epoch": 765578406
      },
      "log_source": "Plan"
    }
  7. {
      "type": "execute_action",
      "action": "tar_extract",
      "archive": "/dev/vdc",
      "directory": "/ci/src",
      "timestamp": {
        "secs_since_epoch": 1776581861,
        "nanos_since_epoch": 765755900
      },
      "log_source": "Plan"
    }
  8. {
      "type": "action_succeeded",
      "action": "tar_extract",
      "archive": "/dev/vdc",
      "directory": "/ci/src",
      "timestamp": {
        "secs_since_epoch": 1776581861,
        "nanos_since_epoch": 802315783
      },
      "log_source": "Plan"
    }
  9. {
      "type": "execute_action",
      "action": "tar_extract",
      "archive": "/dev/vdf",
      "directory": "/ci/deps",
      "timestamp": {
        "secs_since_epoch": 1776581861,
        "nanos_since_epoch": 802344546
      },
      "log_source": "Plan"
    }
  10. {
      "type": "action_succeeded",
      "action": "tar_extract",
      "archive": "/dev/vdf",
      "directory": "/ci/deps",
      "timestamp": {
        "secs_since_epoch": 1776581863,
        "nanos_since_epoch": 577904310
      },
      "log_source": "Plan"
    }
  11. {
      "type": "execute_action",
      "action": "tar_extract",
      "archive": "/dev/vde",
      "directory": "/ci/cache",
      "timestamp": {
        "secs_since_epoch": 1776581863,
        "nanos_since_epoch": 580655272
      },
      "log_source": "Plan"
    }
  12. {
      "type": "action_succeeded",
      "action": "tar_extract",
      "archive": "/dev/vde",
      "directory": "/ci/cache",
      "timestamp": {
        "secs_since_epoch": 1776581867,
        "nanos_since_epoch": 209959744
      },
      "log_source": "Plan"
    }
  13. {
      "type": "execute_action",
      "action": "shell",
      "shell": "ln -sf /ci /workspace",
      "timestamp": {
        "secs_since_epoch": 1776581867,
        "nanos_since_epoch": 209996437
      },
      "log_source": "Plan"
    }
  14. {
      "type": "start_program",
      "argv": [
        {
          "Unix": [
            98,
            97,
            115,
            104
          ]
        },
        {
          "Unix": [
            45,
            99
          ]
        },
        {
          "Unix": [
            115,
            101,
            116,
            32,
            45,
            120,
            101,
            117,
            111,
            32,
            112,
            105,
            112,
            101,
            102,
            97,
            105,
            108,
            10,
            108,
            110,
            32,
            45,
            115,
            102,
            32,
            47,
            99,
            105,
            32,
            47,
            119,
            111,
            114,
            107,
            115,
            112,
            97,
            99,
            101,
            10
          ]
        }
      ],
      "timestamp": {
        "secs_since_epoch": 1776581867,
        "nanos_since_epoch": 210008445
      },
      "log_source": "Plan"
    }
  15. {
      "type": "program_succeeded",
      "exit_code": 0,
      "stdout": "",
      "stderr": "+ ln -sf /ci /workspace\n",
      "timestamp": {
        "secs_since_epoch": 1776581867,
        "nanos_since_epoch": 222125290
      },
      "log_source": "Plan"
    }
  16. {
      "type": "action_succeeded",
      "action": "shell",
      "shell": "ln -sf /ci /workspace",
      "timestamp": {
        "secs_since_epoch": 1776581867,
        "nanos_since_epoch": 224773945
      },
      "log_source": "Plan"
    }
  17. {
      "type": "execute_action",
      "action": "shell",
      "shell": "git config --global user.name 'Ambient CI'",
      "timestamp": {
        "secs_since_epoch": 1776581867,
        "nanos_since_epoch": 227157889
      },
      "log_source": "Plan"
    }
  18. {
      "type": "start_program",
      "argv": [
        {
          "Unix": [
            98,
            97,
            115,
            104
          ]
        },
        {
          "Unix": [
            45,
            99
          ]
        },
        {
          "Unix": [
            115,
            101,
            116,
            32,
            45,
            120,
            101,
            117,
            111,
            32,
            112,
            105,
            112,
            101,
            102,
            97,
            105,
            108,
            10,
            103,
            105,
            116,
            32,
            99,
            111,
            110,
            102,
            105,
            103,
            32,
            45,
            45,
            103,
            108,
            111,
            98,
            97,
            108,
            32,
            117,
            115,
            101,
            114,
            46,
            110,
            97,
            109,
            101,
            32,
            39,
            65,
            109,
            98,
            105,
            101,
            110,
            116,
            32,
            67,
            73,
            39,
            10
          ]
        }
      ],
      "timestamp": {
        "secs_since_epoch": 1776581867,
        "nanos_since_epoch": 229691712
      },
      "log_source": "Plan"
    }
  19. {
      "type": "program_succeeded",
      "exit_code": 0,
      "stdout": "",
      "stderr": "+ git config --global user.name 'Ambient CI'\n",
      "timestamp": {
        "secs_since_epoch": 1776581867,
        "nanos_since_epoch": 240539543
      },
      "log_source": "Plan"
    }
  20. {
      "type": "action_succeeded",
      "action": "shell",
      "shell": "git config --global user.name 'Ambient CI'",
      "timestamp": {
        "secs_since_epoch": 1776581867,
        "nanos_since_epoch": 243392736
      },
      "log_source": "Plan"
    }
  21. {
      "type": "execute_action",
      "action": "shell",
      "shell": "git config --global user.email ambient@example.com",
      "timestamp": {
        "secs_since_epoch": 1776581867,
        "nanos_since_epoch": 245999767
      },
      "log_source": "Plan"
    }
  22. {
      "type": "start_program",
      "argv": [
        {
          "Unix": [
            98,
            97,
            115,
            104
          ]
        },
        {
          "Unix": [
            45,
            99
          ]
        },
        {
          "Unix": [
            115,
            101,
            116,
            32,
            45,
            120,
            101,
            117,
            111,
            32,
            112,
            105,
            112,
            101,
            102,
            97,
            105,
            108,
            10,
            103,
            105,
            116,
            32,
            99,
            111,
            110,
            102,
            105,
            103,
            32,
            45,
            45,
            103,
            108,
            111,
            98,
            97,
            108,
            32,
            117,
            115,
            101,
            114,
            46,
            101,
            109,
            97,
            105,
            108,
            32,
            97,
            109,
            98,
            105,
            101,
            110,
            116,
            64,
            101,
            120,
            97,
            109,
            112,
            108,
            101,
            46,
            99,
            111,
            109,
            10
          ]
        }
      ],
      "timestamp": {
        "secs_since_epoch": 1776581867,
        "nanos_since_epoch": 248719378
      },
      "log_source": "Plan"
    }
  23. {
      "type": "program_succeeded",
      "exit_code": 0,
      "stdout": "",
      "stderr": "+ git config --global user.email ambient@example.com\n",
      "timestamp": {
        "secs_since_epoch": 1776581867,
        "nanos_since_epoch": 256734701
      },
      "log_source": "Plan"
    }
  24. {
      "type": "action_succeeded",
      "action": "shell",
      "shell": "git config --global user.email ambient@example.com",
      "timestamp": {
        "secs_since_epoch": 1776581867,
        "nanos_since_epoch": 259817161
      },
      "log_source": "Plan"
    }
  25. {
      "type": "execute_action",
      "action": "cargo_clippy",
      "timestamp": {
        "secs_since_epoch": 1776581867,
        "nanos_since_epoch": 262769362
      },
      "log_source": "Plan"
    }
  26. {
      "type": "start_program",
      "argv": [
        {
          "Unix": [
            99,
            97,
            114,
            103,
            111
          ]
        },
        {
          "Unix": [
            45,
            45,
            118,
            101,
            114,
            115,
            105,
            111,
            110
          ]
        }
      ],
      "timestamp": {
        "secs_since_epoch": 1776581867,
        "nanos_since_epoch": 264763401
      },
      "log_source": "Plan"
    }
  27. {
      "type": "program_succeeded",
      "exit_code": 0,
      "stdout": "cargo 1.94.0 (85eff7c80 2026-01-15)\n",
      "stderr": "",
      "timestamp": {
        "secs_since_epoch": 1776581867,
        "nanos_since_epoch": 327938934
      },
      "log_source": "Plan"
    }
  28. {
      "type": "start_program",
      "argv": [
        {
          "Unix": [
            99,
            97,
            114,
            103,
            111
          ]
        },
        {
          "Unix": [
            99,
            108,
            105,
            112,
            112,
            121
          ]
        },
        {
          "Unix": [
            45,
            45,
            118,
            101,
            114,
            115,
            105,
            111,
            110
          ]
        }
      ],
      "timestamp": {
        "secs_since_epoch": 1776581867,
        "nanos_since_epoch": 330724187
      },
      "log_source": "Plan"
    }
  29. {
      "type": "program_succeeded",
      "exit_code": 0,
      "stdout": "clippy 0.1.94 (4a4ef493e3 2026-03-02)\n",
      "stderr": "",
      "timestamp": {
        "secs_since_epoch": 1776581867,
        "nanos_since_epoch": 440035094
      },
      "log_source": "Plan"
    }
  30. {
      "type": "start_program",
      "argv": [
        {
          "Unix": [
            114,
            117,
            115,
            116,
            99
          ]
        },
        {
          "Unix": [
            45,
            45,
            118,
            101,
            114,
            115,
            105,
            111,
            110
          ]
        }
      ],
      "timestamp": {
        "secs_since_epoch": 1776581867,
        "nanos_since_epoch": 443324285
      },
      "log_source": "Plan"
    }
  31. {
      "type": "program_succeeded",
      "exit_code": 0,
      "stdout": "rustc 1.94.0 (4a4ef493e 2026-03-02)\n",
      "stderr": "",
      "timestamp": {
        "secs_since_epoch": 1776581867,
        "nanos_since_epoch": 489284235
      },
      "log_source": "Plan"
    }
  32. {
      "type": "start_program",
      "argv": [
        {
          "Unix": [
            99,
            97,
            114,
            103,
            111
          ]
        },
        {
          "Unix": [
            99,
            108,
            105,
            112,
            112,
            121
          ]
        },
        {
          "Unix": [
            45,
            45,
            111,
            102,
            102,
            108,
            105,
            110,
            101
          ]
        },
        {
          "Unix": [
            45,
            45,
            108,
            111,
            99,
            107,
            101,
            100
          ]
        },
        {
          "Unix": [
            45,
            45,
            119,
            111,
            114,
            107,
            115,
            112,
            97,
            99,
            101
          ]
        },
        {
          "Unix": [
            45,
            45,
            97,
            108,
            108,
            45,
            116,
            97,
            114,
            103,
            101,
            116,
            115
          ]
        },
        {
          "Unix": [
            45,
            45,
            110,
            111,
            45,
            100,
            101,
            112,
            115
          ]
        },
        {
          "Unix": [
            45,
            45
          ]
        },
        {
          "Unix": [
            45,
            45,
            100,
            101,
            110,
            121
          ]
        },
        {
          "Unix": [
            119,
            97,
            114,
            110,
            105,
            110,
            103,
            115
          ]
        }
      ],
      "timestamp": {
        "secs_since_epoch": 1776581867,
        "nanos_since_epoch": 489327236
      },
      "log_source": "Plan"
    }
  33. {
      "type": "program_succeeded",
      "exit_code": 0,
      "stdout": "",
      "stderr": "    Checking obnam-server v0.1.0 (/ci/src/obnam-server)\n    Checking obnam v0.10.0 (/ci/src/obnam)\n    Finished `dev` profile [unoptimized + debuginfo] target(s) in 1.55s\n",
      "timestamp": {
        "secs_since_epoch": 1776581869,
        "nanos_since_epoch": 156672756
      },
      "log_source": "Plan"
    }
  34. {
      "type": "action_succeeded",
      "action": "cargo_clippy",
      "timestamp": {
        "secs_since_epoch": 1776581869,
        "nanos_since_epoch": 161199530
      },
      "log_source": "Plan"
    }
  35. {
      "type": "execute_action",
      "action": "cargo_build",
      "timestamp": {
        "secs_since_epoch": 1776581869,
        "nanos_since_epoch": 163244898
      },
      "log_source": "Plan"
    }
  36. {
      "type": "start_program",
      "argv": [
        {
          "Unix": [
            99,
            97,
            114,
            103,
            111
          ]
        },
        {
          "Unix": [
            45,
            45,
            118,
            101,
            114,
            115,
            105,
            111,
            110
          ]
        }
      ],
      "timestamp": {
        "secs_since_epoch": 1776581869,
        "nanos_since_epoch": 165219270
      },
      "log_source": "Plan"
    }
  37. {
      "type": "program_succeeded",
      "exit_code": 0,
      "stdout": "cargo 1.94.0 (85eff7c80 2026-01-15)\n",
      "stderr": "",
      "timestamp": {
        "secs_since_epoch": 1776581869,
        "nanos_since_epoch": 202629798
      },
      "log_source": "Plan"
    }
  38. {
      "type": "start_program",
      "argv": [
        {
          "Unix": [
            99,
            97,
            114,
            103,
            111
          ]
        },
        {
          "Unix": [
            99,
            108,
            105,
            112,
            112,
            121
          ]
        },
        {
          "Unix": [
            45,
            45,
            118,
            101,
            114,
            115,
            105,
            111,
            110
          ]
        }
      ],
      "timestamp": {
        "secs_since_epoch": 1776581869,
        "nanos_since_epoch": 205481096
      },
      "log_source": "Plan"
    }
  39. {
      "type": "program_succeeded",
      "exit_code": 0,
      "stdout": "clippy 0.1.94 (4a4ef493e3 2026-03-02)\n",
      "stderr": "",
      "timestamp": {
        "secs_since_epoch": 1776581869,
        "nanos_since_epoch": 291601859
      },
      "log_source": "Plan"
    }
  40. {
      "type": "start_program",
      "argv": [
        {
          "Unix": [
            114,
            117,
            115,
            116,
            99
          ]
        },
        {
          "Unix": [
            45,
            45,
            118,
            101,
            114,
            115,
            105,
            111,
            110
          ]
        }
      ],
      "timestamp": {
        "secs_since_epoch": 1776581869,
        "nanos_since_epoch": 291642233
      },
      "log_source": "Plan"
    }
  41. {
      "type": "program_succeeded",
      "exit_code": 0,
      "stdout": "rustc 1.94.0 (4a4ef493e 2026-03-02)\n",
      "stderr": "",
      "timestamp": {
        "secs_since_epoch": 1776581869,
        "nanos_since_epoch": 337056206
      },
      "log_source": "Plan"
    }
  42. {
      "type": "start_program",
      "argv": [
        {
          "Unix": [
            99,
            97,
            114,
            103,
            111
          ]
        },
        {
          "Unix": [
            98,
            117,
            105,
            108,
            100
          ]
        },
        {
          "Unix": [
            45,
            45,
            111,
            102,
            102,
            108,
            105,
            110,
            101
          ]
        },
        {
          "Unix": [
            45,
            45,
            108,
            111,
            99,
            107,
            101,
            100
          ]
        },
        {
          "Unix": [
            45,
            45,
            119,
            111,
            114,
            107,
            115,
            112,
            97,
            99,
            101
          ]
        },
        {
          "Unix": [
            45,
            45,
            97,
            108,
            108,
            45,
            116,
            97,
            114,
            103,
            101,
            116,
            115
          ]
        }
      ],
      "timestamp": {
        "secs_since_epoch": 1776581869,
        "nanos_since_epoch": 337096720
      },
      "log_source": "Plan"
    }
  43. {
      "type": "program_succeeded",
      "exit_code": 0,
      "stdout": "",
      "stderr": "   Compiling obnam-server v0.1.0 (/ci/src/obnam-server)\n   Compiling obnam v0.10.0 (/ci/src/obnam)\n    Finished `dev` profile [unoptimized + debuginfo] target(s) in 2.13s\n",
      "timestamp": {
        "secs_since_epoch": 1776581871,
        "nanos_since_epoch": 532253201
      },
      "log_source": "Plan"
    }
  44. {
      "type": "action_succeeded",
      "action": "cargo_build",
      "timestamp": {
        "secs_since_epoch": 1776581871,
        "nanos_since_epoch": 536909917
      },
      "log_source": "Plan"
    }
  45. {
      "type": "execute_action",
      "action": "cargo_test",
      "timestamp": {
        "secs_since_epoch": 1776581871,
        "nanos_since_epoch": 538963213
      },
      "log_source": "Plan"
    }
  46. {
      "type": "start_program",
      "argv": [
        {
          "Unix": [
            99,
            97,
            114,
            103,
            111
          ]
        },
        {
          "Unix": [
            45,
            45,
            118,
            101,
            114,
            115,
            105,
            111,
            110
          ]
        }
      ],
      "timestamp": {
        "secs_since_epoch": 1776581871,
        "nanos_since_epoch": 540965144
      },
      "log_source": "Plan"
    }
  47. {
      "type": "program_succeeded",
      "exit_code": 0,
      "stdout": "cargo 1.94.0 (85eff7c80 2026-01-15)\n",
      "stderr": "",
      "timestamp": {
        "secs_since_epoch": 1776581871,
        "nanos_since_epoch": 580053117
      },
      "log_source": "Plan"
    }
  48. {
      "type": "start_program",
      "argv": [
        {
          "Unix": [
            99,
            97,
            114,
            103,
            111
          ]
        },
        {
          "Unix": [
            99,
            108,
            105,
            112,
            112,
            121
          ]
        },
        {
          "Unix": [
            45,
            45,
            118,
            101,
            114,
            115,
            105,
            111,
            110
          ]
        }
      ],
      "timestamp": {
        "secs_since_epoch": 1776581871,
        "nanos_since_epoch": 580094137
      },
      "log_source": "Plan"
    }
  49. {
      "type": "program_succeeded",
      "exit_code": 0,
      "stdout": "clippy 0.1.94 (4a4ef493e3 2026-03-02)\n",
      "stderr": "",
      "timestamp": {
        "secs_since_epoch": 1776581871,
        "nanos_since_epoch": 666984572
      },
      "log_source": "Plan"
    }
  50. {
      "type": "start_program",
      "argv": [
        {
          "Unix": [
            114,
            117,
            115,
            116,
            99
          ]
        },
        {
          "Unix": [
            45,
            45,
            118,
            101,
            114,
            115,
            105,
            111,
            110
          ]
        }
      ],
      "timestamp": {
        "secs_since_epoch": 1776581871,
        "nanos_since_epoch": 669780078
      },
      "log_source": "Plan"
    }
  51. {
      "type": "program_succeeded",
      "exit_code": 0,
      "stdout": "rustc 1.94.0 (4a4ef493e 2026-03-02)\n",
      "stderr": "",
      "timestamp": {
        "secs_since_epoch": 1776581871,
        "nanos_since_epoch": 712320689
      },
      "log_source": "Plan"
    }
  52. {
      "type": "start_program",
      "argv": [
        {
          "Unix": [
            99,
            97,
            114,
            103,
            111
          ]
        },
        {
          "Unix": [
            116,
            101,
            115,
            116
          ]
        },
        {
          "Unix": [
            45,
            45,
            111,
            102,
            102,
            108,
            105,
            110,
            101
          ]
        },
        {
          "Unix": [
            45,
            45,
            108,
            111,
            99,
            107,
            101,
            100
          ]
        },
        {
          "Unix": [
            45,
            45,
            119,
            111,
            114,
            107,
            115,
            112,
            97,
            99,
            101
          ]
        }
      ],
      "timestamp": {
        "secs_since_epoch": 1776581871,
        "nanos_since_epoch": 712363471
      },
      "log_source": "Plan"
    }
  53. {
      "type": "program_succeeded",
      "exit_code": 0,
      "stdout": "\nrunning 43 tests\ntest chunk::test::ciphertext_does_not_contain_plaintext ... ok\ntest chunk::test::chunk_round_trip ... ok\ntest chunk::test::label_display ... ok\ntest chunk::test::label_round_trip ... ok\ntest chunk::test::metadata ... ok\ntest chunk::test::metadata_round_trip ... ok\ntest cipher::test::key ... ok\ntest cipher::test::key_from_string ... ok\ntest cipher::test::aead_round_trip ... ok\ntest client::test::generates_key ... ok\ntest client::test::gets_correct_key ... ok\ntest client::test::has_name ... ok\ntest client::test::has_no_keys_initially ... ok\ntest client::test::serialiazion_round_trip ... ok\ntest client::test::sets_old_versions ... ok\ntest config::test::merge_files ... ok\ntest config::test::valideted_config ... ok\ntest credential::test::roundtrip_sop_credential ... ok\ntest credential::test::roundtrip_sop_method ... ok\ntest id::test::id_is_equal_to_itself ... ok\ntest id::test::textual_id_is_printable_ascii ... ok\ntest id::test::id_round_trip ... ok\ntest id::test::two_ids_are_different ... ok\ntest plaintext::test::compressed ... ok\ntest plaintext::test::compression_round_trip ... ok\ntest plaintext::test::uncompressed ... ok\ntest repository::test::cant_init_nonexistent_dir ... ok\ntest repository::test::empty_dir_is_not_init ... ok\ntest repository::test::adds_chunk ... ok\ntest repository::test::finds_chunk_when_labels_match ... ok\ntest repository::test::finds_client_chunk ... ok\ntest repository::test::finds_no_chunk_in_empty_repo ... ok\ntest repository::test::finds_credential_chunk ... ok\ntest repository::test::finds_no_clients_when_there_are_none ... ok\ntest repository::test::finds_no_chunk_when_none_match_label ... ok\ntest repository::test::has_no_chunks_initially ... ok\ntest repository::test::nonexistent_dir_is_not_init ... ok\ntest repository::test::inits_empty_dir ... ok\ntest repository::test::opens_client_chunk ... ok\ntest repository::test::root_dir_is_not_init ... ok\ntest sop::tests::cert_display ... ok\ntest sop::tests::key_display ... ok\ntest repository::test::removes_chunk ... ok\n\ntest result: ok. 43 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.73s\n\n\nrunning 0 tests\n\ntest result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s\n\n\nrunning 1 test\ntest config::test::merges ... ok\n\ntest result: ok. 1 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s\n\n\nrunning 0 tests\n\ntest result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s\n\n\nrunning 2 tests\ntest obnam/src/id.rs - id (line 5) ... ok\ntest obnam/src/lib.rs - (line 12) ... ok\n\ntest result: ok. 2 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s\n\nall doctests ran in 0.28s; merged doctests compilation took 0.27s\n\nrunning 0 tests\n\ntest result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s\n\n",
      "stderr": "    Finished `test` profile [unoptimized + debuginfo] target(s) in 0.14s\n     Running unittests src/lib.rs (/ci/cache/cargo-target/debug/deps/obnam-8faf45dba70dd9a4)\n     Running unittests src/bin/obnam.rs (/ci/cache/cargo-target/debug/deps/obnam-a5f3c02932ca0b2e)\n     Running unittests src/lib.rs (/ci/cache/cargo-target/debug/deps/obnam_server-795144605bf3fe39)\n     Running unittests src/main.rs (/ci/cache/cargo-target/debug/deps/obnam_server-01cddca570dc3b49)\n   Doc-tests obnam\n   Doc-tests obnam_server\n",
      "timestamp": {
        "secs_since_epoch": 1776581873,
        "nanos_since_epoch": 59811865
      },
      "log_source": "Plan"
    }
  54. {
      "type": "action_succeeded",
      "action": "cargo_test",
      "timestamp": {
        "secs_since_epoch": 1776581873,
        "nanos_since_epoch": 107592830
      },
      "log_source": "Plan"
    }
  55. {
      "type": "execute_action",
      "action": "shell",
      "shell": "export PATH=/root/.cargo/bin:/bin:/sbin\nls -l \"$CARGO_TARGET_DIR\"\nmake TARGET= subplot doc\nfind doc -ls\nmkdir -p /ci/artifacts/rsync\ncp obnam.html doc/*.html /ci/artifacts/rsync\n",
      "timestamp": {
        "secs_since_epoch": 1776581873,
        "nanos_since_epoch": 109552159
      },
      "log_source": "Plan"
    }
  56. {
      "type": "start_program",
      "argv": [
        {
          "Unix": [
            98,
            97,
            115,
            104
          ]
        },
        {
          "Unix": [
            45,
            99
          ]
        },
        {
          "Unix": [
            115,
            101,
            116,
            32,
            45,
            120,
            101,
            117,
            111,
            32,
            112,
            105,
            112,
            101,
            102,
            97,
            105,
            108,
            10,
            101,
            120,
            112,
            111,
            114,
            116,
            32,
            80,
            65,
            84,
            72,
            61,
            47,
            114,
            111,
            111,
            116,
            47,
            46,
            99,
            97,
            114,
            103,
            111,
            47,
            98,
            105,
            110,
            58,
            47,
            98,
            105,
            110,
            58,
            47,
            115,
            98,
            105,
            110,
            10,
            108,
            115,
            32,
            45,
            108,
            32,
            34,
            36,
            67,
            65,
            82,
            71,
            79,
            95,
            84,
            65,
            82,
            71,
            69,
            84,
            95,
            68,
            73,
            82,
            34,
            10,
            109,
            97,
            107,
            101,
            32,
            84,
            65,
            82,
            71,
            69,
            84,
            61,
            32,
            115,
            117,
            98,
            112,
            108,
            111,
            116,
            32,
            100,
            111,
            99,
            10,
            102,
            105,
            110,
            100,
            32,
            100,
            111,
            99,
            32,
            45,
            108,
            115,
            10,
            109,
            107,
            100,
            105,
            114,
            32,
            45,
            112,
            32,
            47,
            99,
            105,
            47,
            97,
            114,
            116,
            105,
            102,
            97,
            99,
            116,
            115,
            47,
            114,
            115,
            121,
            110,
            99,
            10,
            99,
            112,
            32,
            111,
            98,
            110,
            97,
            109,
            46,
            104,
            116,
            109,
            108,
            32,
            100,
            111,
            99,
            47,
            42,
            46,
            104,
            116,
            109,
            108,
            32,
            47,
            99,
            105,
            47,
            97,
            114,
            116,
            105,
            102,
            97,
            99,
            116,
            115,
            47,
            114,
            115,
            121,
            110,
            99,
            10,
            10
          ]
        }
      ],
      "timestamp": {
        "secs_since_epoch": 1776581873,
        "nanos_since_epoch": 113954224
      },
      "log_source": "Plan"
    }
  57. {
      "type": "program_succeeded",
      "exit_code": 0,
      "stdout": "total 16\n-rw-r--r-- 1 root root  177 Apr 19 06:51 CACHEDIR.TAG\ndrwxr-xr-x 7 root root 4096 Apr 19 06:57 debug\ndrwxr-xr-x 8 root root 4096 Apr 19 06:53 doc\ndrwxr-xr-x 7 root root 4096 Apr 19 06:56 release\nsubplot docgen obnam.subplot --output obnam.html\nsubplot codegen obnam.subplot --output test.py\nrm -f test.log\npython3 test.py --log test.log \nsrcdir /ci/src\ndatadir /tmp/tmpa37fiuvu\nscenario: Manage chunks on the server\n  step 1: given an installed obnam\n  step 2: given file server-config.yaml\n  step 3: given file greeting.txt\n  step 4: given file .config/obnam/config.yaml from comfy.yaml\n  step 5: given executable file create-token.sh\n  step 6: when I run obnam-server --config server-config.yaml init\n  step 7: when I run ./create-token.sh append\n  step 8: when I run, as a daemon, obnam-server --config server-config.yaml serve\n  step 9: when I run obnam remote put --id-file id.txt --label data --filename greeting.txt\n  step 10: when I run obnam remote get --id-file id.txt --filename out\n  step 11: then files greeting.txt and out on disk are identical\n  step 12: when I run obnam remote find --label hahaha\n  step 13: then stdout contains \"\"chunk_ids\":[]\"\n  step 14: when I run obnam remote find --label data\n  step 15: then stdout contains 1 lines\n  step 16: when I try to run obnam remote delete --id-file id.txt\n  step 17: then command fails\n  step 18: when I run obnam remote get --id-file id.txt --filename out2\n  step 19: then files greeting.txt and out2 on disk are identical\n  step 20: when I run ./create-token.sh delete\n  step 21: when I run obnam remote delete --id-file id.txt\n  step 22: when I try to run obnam remote get --id-file id.txt --filename out2\n  step 23: then command fails\n  cleanup 8: when I run, as a daemon, obnam-server --config server-config.yaml serve\nscenario: Encryption round trip\n  step 1: given an installed obnam\n  step 2: given file alice.key\n  step 3: given file hello.txt\n  step 4: when I run obnam sop encrypt rsop alice.key hello.txt -o encrypted\n  step 5: when I run ls -l encrypted\n  step 6: when I run cat encrypted\n  step 7: when I run obnam sop decrypt rsop alice.key encrypted\n  step 8: then stdout is exactly \"hello, world\\n\"\nscenario: Initialize a client chunk\n  step 1: given an installed obnam\n  step 2: given file .config/obnam/config.yaml from config-with-credential.yaml\n  step 3: when I create directory mychunks\n  step 4: when I run obnam repo init\n  step 5: when I run obnam client init --client-name my.host\n  step 6: then command is successful\nscenario: Chunk encrypt/decrypt with compression round trip via repository\n  step 1: given an installed obnam\n  step 2: given file .config/obnam/config.yaml from config.yaml\n  step 3: given file greeting.txt\n  step 4: when I create directory mychunks\n  step 5: when I try to run obnam repo init\n  step 6: when I run obnam chunk encrypt --compress --key secret --label sticky.tape greeting.txt\n  step 7: when I run obnam repo find sticky.tape --one-match-output=id.txt\n  step 8: when I run obnam chunk decrypt --key secret --id-file id.txt\n  step 9: then stdout is exactly \"Hello, world.\\n\"\nscenario: Create an OpenPGP software key credential\n  step 1: given an installed obnam\n  step 2: given file .config/obnam/config.yaml from config.yaml\n  step 3: given file sop-generate\n  step 4: when I run bash sop-generate alice.tsk\n  step 5: when I create directory mychunks\n  step 6: when I run obnam repo init\n  step 7: when I run obnam credential list\n  step 8: then stdout is exactly \"\"\n  step 9: when I run obnam --client-key my.secret credential openpgp-soft alice.tsk\n  step 10: when I run obnam credential list --all\n  step 11: then stdout isn't exactly \"\"\nscenario: Manages chunks via API\n  step 1: given an installed obnam\n  step 2: given file server-config.yaml\n  step 3: given file request.sh\n  step 4: when I run obnam-server --config server-config.yaml init\n  step 5: when I run obnam-server --config server-config.yaml token --output token.txt --allow append\n  step 6: when I run cat token.txt\n  step 7: when I run, as a daemon, obnam-server --config server-config.yaml serve\n  step 8: when I run bash request.sh GET /chunks/1\n  step 9: then stderr contains \"HTTP/1.1 404\"\n  step 10: when I run bash request.sh PUT /chunks/1?label=first hello\n  step 11: then stderr contains \"HTTP/1.1 201\"\n  step 12: when I run bash request.sh GET /chunks/1\n  step 13: then stderr contains \"HTTP/1.1 200\"\n  step 14: then stdout is exactly \"hello\"\n  step 15: when I run bash request.sh GET /chunks?label=first\n  step 16: then stdout is exactly \"{\"chunk_ids\":[\"1\"]}\"\n  step 17: when I run bash request.sh DELETE /chunks/1\n  step 18: then stderr contains \"HTTP/1.1 401\"\n  step 19: when I run obnam-server --config server-config.yaml token --output token.txt --allow delete\n  step 20: when I run bash request.sh DELETE /chunks/1\n  step 21: then stderr contains \"HTTP/1.1 204\"\n  step 22: when I run bash request.sh GET /chunks?label=first\n  step 23: then stdout is exactly \"{\"chunk_ids\":[]}\"\n  cleanup 7: when I run, as a daemon, obnam-server --config server-config.yaml serve\nscenario: Chunk encrypt/decrypt round trip via file\n  step 1: given an installed obnam\n  step 2: given file greeting.txt\n  step 3: when I run obnam chunk encrypt --key secret --label sticky.tape greeting.txt --output chunk.file\n  step 4: when I run obnam chunk decrypt --key secret chunk.file\n  step 5: then stdout is exactly \"Hello, world.\\n\"\nscenario: Initialize a backup repository\n  step 1: given an installed obnam\n  step 2: given file .config/obnam/config.yaml from config.yaml\n  step 3: then directory mychunks does not exist\n  step 4: when I try to run obnam repo is\n  step 5: then command fails\n  step 6: when I create directory mychunks\n  step 7: when I try to run obnam repo is\n  step 8: then command fails\n  step 9: when I run obnam repo init\n  step 10: when I run obnam repo is\n  step 11: then exit code is 0\nscenario: Inspect an encoded chunk in file\n  step 1: given an installed obnam\n  step 2: given file greeting.txt\n  step 3: when I run obnam chunk encrypt --label sticky.tape --key secret greeting.txt --output chunk.file\n  step 4: when I run obnam chunk inspect --filename chunk.file\n  step 5: then stdout is valid JSON\n  step 6: then stdout contains \"\"id\":\"\n  step 7: then stdout contains \"\"label\":\"\n  step 8: then stdout contains \"\"data\": null\"\n  step 9: when I run obnam chunk inspect --filename chunk.file --key secret\n  step 10: then stdout is valid JSON\n  step 11: then stdout contains \"\"id\":\"\n  step 12: then stdout contains \"\"label\":\"\n  step 13: then stdout contains \"\"data\": \"\"\nscenario: Logging level can be set\n  step 1: given an installed obnam\n  step 2: when I run obnam config\n  step 3: then stderr doesn't contain \"TRACE\"\n  step 4: then stderr doesn't contain \"DEBUG\"\n  step 5: then stderr contains \"INFO\"\n  step 6: then stderr contains \"WARN\"\n  step 7: then stderr contains \"ERROR\"\n  step 8: when I run env OBNAM_LOG=error obnam config\n  step 9: then stderr doesn't contain \"TRACE\"\n  step 10: then stderr doesn't contain \"DEBUG\"\n  step 11: then stderr doesn't contain \"INFO\"\n  step 12: then stderr doesn't contain \"WARN\"\n  step 13: then stderr contains \"ERROR\"\n  step 14: when I run obnam --log-level=error config\n  step 15: then stderr doesn't contain \"TRACE\"\n  step 16: then stderr doesn't contain \"DEBUG\"\n  step 17: then stderr doesn't contain \"INFO\"\n  step 18: then stderr doesn't contain \"WARN\"\n  step 19: then stderr contains \"ERROR\"\n  step 20: when I run env OBNAM_LOG=error obnam --log-level=trace config\n  step 21: then stderr contains \"TRACE\"\n  step 22: then stderr contains \"DEBUG\"\n  step 23: then stderr contains \"INFO\"\n  step 24: then stderr contains \"WARN\"\n  step 25: then stderr contains \"ERROR\"\nscenario: Conveniently create a client with an OpenPGP software key credential\n  step 1: given an installed obnam\n  step 2: given file .config/obnam/config.yaml from comfy.yaml\n  step 3: when I create directory my.repo\n  step 4: when I run obnam repo init\n  step 5: when I run obnam client init --credential softy\n  step 6: when I run obnam client list\n  step 7: then stdout isn't exactly \"\"\nscenario: Avoid client chunks with the same name\n  step 1: given an installed obnam\n  step 2: given file .config/obnam/config.yaml from config.yaml\n  step 3: when I create directory mychunks\n  step 4: when I run obnam repo init\n  step 5: when I run obnam --client-key my.secret client init --client-name my.host\n  step 6: then command is successful\n  step 7: when I try to run obnam --client-key my.secret client init --client-name my.host\n  step 8: then command fails\nscenario: Add a chunk to the backup repository\n  step 1: given an installed obnam\n  step 2: given file .config/obnam/config.yaml from config.yaml\n  step 3: given file greeting.txt\n  step 4: given a directory mychunks\n  step 5: when I run obnam repo init\n  step 6: when I run obnam chunk encrypt --key secret --label data greeting.txt\n  step 7: when I run obnam repo list\n  step 8: then stdout contains \" data\\n\"\nscenario: Generates and validates API tokens\n  step 1: given an installed obnam\n  step 2: given file server-config.yaml\n  step 3: when I run obnam-server --config server-config.yaml init\n  step 4: then file keypair.json exists\n  step 5: when I try to run obnam-server --config server-config.yaml init\n  step 6: then command fails\n  step 7: then stderr contains \"keypair.json\"\n  step 8: when I run obnam-server --config server-config.yaml token --output token.txt --allow append\n  step 9: then file token.txt contains \"v4.public.\"\n  step 10: when I run obnam-server --config server-config.yaml validate --file token.txt\n  step 11: then stdout contains \"read_chunks_allowed: true\"\n  step 12: then stdout contains \"find_chunks_allowed: true\"\n  step 13: then stdout contains \"create_chunk_allowed: true\"\n  step 14: then stdout contains \"delete_chunk_allowed: false\"\n  step 15: when I run obnam-server --config server-config.yaml token --output token.txt --allow delete\n  step 16: then file token.txt contains \"v4.public.\"\n  step 17: when I run obnam-server --config server-config.yaml validate --file token.txt\n  step 18: then stdout contains \"read_chunks_allowed: true\"\n  step 19: then stdout contains \"find_chunks_allowed: true\"\n  step 20: then stdout contains \"create_chunk_allowed: true\"\n  step 21: then stdout contains \"delete_chunk_allowed: true\"\nscenario: Chunk encrypt/decrypt with compression round trip via file\n  step 1: given an installed obnam\n  step 2: given file greeting.txt\n  step 3: when I run obnam chunk encrypt --compress --key secret --label sticky.tape greeting.txt --output chunk.file\n  step 4: when I run obnam chunk decrypt --key secret chunk.file\n  step 5: then stdout is exactly \"Hello, world.\\n\"\nscenario: Round trip chunk encryption using key from client chunk\n  step 1: given an installed obnam\n  step 2: given file .config/obnam/config.yaml from config.yaml\n  step 3: given file greeting.txt\n  step 4: when I create directory mychunks\n  step 5: when I run obnam repo init\n  step 6: when I run obnam --client-key my.secret client init --client-name my.host\n  step 7: when I run obnam --client-key my.secret client generate my.host my.key\n  step 8: when I run obnam --client-key my.secret chunk encrypt --client-name my.host --key-name my.key --label sticky.tape greeting.txt --output chunk.file\n  step 9: when I run obnam --client-key my.secret chunk decrypt --client-name my.host --key-name my.key chunk.file\n  step 10: then stdout is exactly \"Hello, world.\\n\"\nscenario: Refuses API token made for another server instance\n  step 1: given an installed obnam\n  step 2: given file server-config.yaml\n  step 3: when I run obnam-server --config server-config.yaml init\n  step 4: when I run obnam-server --config server-config.yaml token --output token.txt --allow append\n  step 5: when I remove file keypair.json\n  step 6: when I run obnam-server --config server-config.yaml init\n  step 7: when I try to run obnam-server --config server-config.yaml validate --file token.txt\n  step 8: then command fails\nscenario: Chunk encrypt/decrypt round trip via repository\n  step 1: given an installed obnam\n  step 2: given file .config/obnam/config.yaml from config.yaml\n  step 3: given file greeting.txt\n  step 4: when I create directory mychunks\n  step 5: when I try to run obnam repo init\n  step 6: when I run obnam chunk encrypt --key secret --label sticky.tape greeting.txt --id-file id.txt\n  step 7: when I run obnam repo list\n  step 8: when I run obnam chunk decrypt --key secret --id-file id.txt\n  step 9: then stdout is exactly \"Hello, world.\\n\"\nscenario: Conveniently encrypt and decrypt chunk in a backup repository\n  step 1: given an installed obnam\n  step 2: given file .config/obnam/config.yaml from comfy.yaml\n  step 3: given file message.txt\n  step 4: when I create directory my.repo\n  step 5: when I run obnam repo init\n  step 6: when I run obnam client init --credential softy\n  step 7: when I run obnam chunk encrypt --label data --key-name default --id-file id.txt message.txt\n  step 8: when I run obnam chunk decrypt --key-name default --id-file id.txt --output out.dat\n  step 9: then files message.txt and out.dat match\nscenario: Find chunks using labels\n  step 1: given an installed obnam\n  step 2: given file .config/obnam/config.yaml from config.yaml\n  step 3: given file greeting.txt\n  step 4: given a directory mychunks\n  step 5: when I run obnam repo init\n  step 6: when I run obnam chunk encrypt --key secret --label data-chunk greeting.txt\n  step 7: when I run obnam chunk encrypt --key secret --label data-chunk greeting.txt\n  step 8: when I run obnam chunk encrypt --key secret --label client-chunk greeting.txt\n  step 9: when I run obnam repo find missing\n  step 10: then stdout is exactly \"\"\n  step 11: when I run obnam repo find data-chunk\n  step 12: then stdout contains 2 lines\n  step 13: when I run obnam repo find client-chunk\n  step 14: then stdout contains 1 lines\nscenario: List clients\n  step 1: given an installed obnam\n  step 2: given file .config/obnam/config.yaml from config.yaml\n  step 3: when I create directory mychunks\n  step 4: when I run obnam repo init\n  step 5: when I run obnam --client-key my.secret client init --client-name my.host\n  step 6: when I run obnam --client-key my.secret client list\n  step 7: then stdout is exactly \"my.host\\n\"\nscenario: Show client\n  step 1: given an installed obnam\n  step 2: given file .config/obnam/config.yaml from config.yaml\n  step 3: when I create directory mychunks\n  step 4: when I run obnam repo init\n  step 5: when I run obnam --client-key my.secret client init --client-name my.host\n  step 6: when I run obnam --client-key my.secret client show --client-name my.host\n  step 7: then stdout is valid JSON\nscenario: Remove a chunk from backup repository\n  step 1: given an installed obnam\n  step 2: given file .config/obnam/config.yaml from config.yaml\n  step 3: given file greeting.txt\n  step 4: given a directory mychunks\n  step 5: when I run obnam repo init\n  step 6: when I run obnam chunk encrypt --key secret --label data-chunk --id-file id.txt greeting.txt\n  step 7: when I run obnam repo remove --id-file id.txt\n  step 8: when I run obnam repo list\n  step 9: then stdout doesn't contain \"xyzzy\"\nscenario: Inspect an encrypted chunk using key from client chunk\n  step 1: given an installed obnam\n  step 2: given file .config/obnam/config.yaml from config.yaml\n  step 3: given file greeting.txt\n  step 4: when I create directory mychunks\n  step 5: when I run obnam repo init\n  step 6: when I run obnam --client-key my.secret client init --client-name my.host\n  step 7: when I run obnam --client-key my.secret client generate my.host my.key\n  step 8: when I run obnam --client-key my.secret chunk encrypt --client-name my.host --key-name my.key --label sticky.tape greeting.txt --output chunk.file\n  step 9: when I run obnam --client-key my.secret chunk inspect --filename chunk.file --client-name my.host --key-name my.key\n  step 10: then stdout is valid JSON\n  step 11: then stdout contains \"\"id\":\"\n  step 12: then stdout contains \"\"label\":\"\n  step 13: then stdout contains \"\"data\": \"\"\nscenario: Extracting a certificate from a key\n  step 1: given an installed obnam\n  step 2: given file alice.key\n  step 3: when I run obnam sop extract-cert rsop alice.key\n  step 4: then stdout isn't exactly \"\"\nscenario: Validates token via HTTP API\n  step 1: given an installed obnam\n  step 2: given file server-config.yaml\n  step 3: given file request.sh\n  step 4: when I run obnam-server --config server-config.yaml init\n  step 5: when I run obnam-server --config server-config.yaml token --output token.txt --allow append\n  step 6: when I run cat token.txt\n  step 7: when I run, as a daemon, obnam-server --config server-config.yaml serve\n  step 8: when I run bash request.sh GET /validate\n  step 9: then stdout contains \"\"read_chunks_allowed\":true\"\n  step 10: then stdout contains \"\"find_chunks_allowed\":true\"\n  step 11: then stdout contains \"\"create_chunk_allowed\":true\"\n  step 12: then stdout contains \"\"delete_chunk_allowed\":false\"\n  cleanup 7: when I run, as a daemon, obnam-server --config server-config.yaml serve\nscenario: Inspect an encoded chunk in repository\n  step 1: given an installed obnam\n  step 2: given file .config/obnam/config.yaml from config.yaml\n  step 3: given file greeting.txt\n  step 4: when I create directory mychunks\n  step 5: when I try to run obnam repo init\n  step 6: when I run obnam chunk encrypt --label sticky.tape --key secret greeting.txt --id-file=id.txt\n  step 7: when I run obnam chunk inspect --id-file id.txt\n  step 8: then stdout is valid JSON\n  step 9: then stdout contains \"\"id\":\"\n  step 10: then stdout contains \"\"label\":\"\n  step 11: then stdout contains \"\"data\": null\"\n  step 12: when I run obnam chunk inspect --key secret --id-file id.txt\n  step 13: then stdout is valid JSON\n  step 14: then stdout contains \"\"id\":\"\n  step 15: then stdout contains \"\"label\":\"\n  step 16: then stdout contains \"\"data\": \"\"\nscenario: Get path to chunk in backup repository\n  step 1: given an installed obnam\n  step 2: given file .config/obnam/config.yaml from config.yaml\n  step 3: given file greeting.txt\n  step 4: given a directory mychunks\n  step 5: when I run obnam repo init\n  step 6: when I run obnam chunk encrypt --key secret --label data-chunk --id-file id.txt greeting.txt\n  step 7: when I run obnam repo path --id-file id.txt -o chunk.filename\n  step 8: then a file exists whose name is in chunk.filename\nscenario: Generate new key\n  step 1: given an installed obnam\n  step 2: given file .config/obnam/config.yaml from config.yaml\n  step 3: when I create directory mychunks\n  step 4: when I run obnam repo init\n  step 5: when I run obnam --client-key my.secret client init --client-name my.host\n  step 6: when I run obnam --client-key my.secret client generate my.host my.key\n  step 7: when I run obnam --client-key my.secret client show --client-name my.host\n  step 8: then stdout contains \"my.key\"\nOK, all scenarios finished successfully\nenv 'RUSTDOCFLAGS=-D warnings' cargo doc --no-deps\nmake -C doc\nmake[1]: Entering directory '/ci/src/doc'\npandoc -N --toc --standalone --self-contained -o \"arch.html\" \"arch.md\"\npandoc -N --toc --standalone --self-contained -o \"glossary.html\" \"glossary.md\"\nmake[1]: Leaving directory '/ci/src/doc'\n  1179695      4 drwxr-xr-x   2 root     root         4096 Apr 19 06:57 doc\n  1215028      8 -rw-r--r--   1 root     root         4132 Apr 19 06:57 doc/glossary.html\n  1179698      4 -rw-r--r--   1 root     root          427 Apr 19 06:57 doc/glossary.md\n  1179699     16 -rw-r--r--   1 root     root        13627 Apr 19 06:57 doc/arch.md\n  1179697      4 -rw-r--r--   1 root     root          540 Apr 19 06:57 doc/keys.pik\n  1179700      4 -rw-r--r--   1 root     root          327 Apr 19 06:57 doc/Makefile\n  1215027     24 -rw-r--r--   1 root     root        24568 Apr 19 06:57 doc/arch.html\n  1179696      4 -rw-r--r--   1 root     root         3885 Apr 19 06:57 doc/keys.svg\n",
      "stderr": "+ export PATH=/root/.cargo/bin:/bin:/sbin\n+ PATH=/root/.cargo/bin:/bin:/sbin\n+ ls -l /ci/cache/cargo-target\n+ make TARGET= subplot doc\n INFO Starting Subplot\n INFO Subplot finished successfully\n INFO Starting Subplot\n INFO Subplot finished successfully\n Documenting obnam-server v0.1.0 (/ci/src/obnam-server)\n Documenting obnam v0.10.0 (/ci/src/obnam)\n    Finished `dev` profile [unoptimized + debuginfo] target(s) in 0.70s\n   Generated /ci/cache/cargo-target/doc/obnam/index.html and 1 other file\n[WARNING] This document format requires a nonempty <title> element.\n  Defaulting to 'glossary' as the title.\n  To specify a title, use 'title' in metadata or --metadata title=\"...\".\n+ find doc -ls\n+ mkdir -p /ci/artifacts/rsync\n+ cp obnam.html doc/arch.html doc/glossary.html /ci/artifacts/rsync\n",
      "timestamp": {
        "secs_since_epoch": 1776581877,
        "nanos_since_epoch": 440870739
      },
      "log_source": "Plan"
    }
  58. {
      "type": "action_succeeded",
      "action": "shell",
      "shell": "export PATH=/root/.cargo/bin:/bin:/sbin\nls -l \"$CARGO_TARGET_DIR\"\nmake TARGET= subplot doc\nfind doc -ls\nmkdir -p /ci/artifacts/rsync\ncp obnam.html doc/*.html /ci/artifacts/rsync\n",
      "timestamp": {
        "secs_since_epoch": 1776581877,
        "nanos_since_epoch": 722520886
      },
      "log_source": "Plan"
    }
  59. {
      "type": "execute_action",
      "action": "custom",
      "name": "dch",
      "args": {
        "debfullname": "Lars Wirzenius",
        "debemail": "liw@liw.fi"
      },
      "timestamp": {
        "secs_since_epoch": 1776581877,
        "nanos_since_epoch": 727019601
      },
      "log_source": "Plan"
    }
  60. {
      "type": "custom_action_starts",
      "source": "/ci/src",
      "custom": {
        "name": "dch",
        "args": {
          "debfullname": "Lars Wirzenius",
          "debemail": "liw@liw.fi"
        }
      },
      "exe": ".ambient/dch",
      "exe_exists": false,
      "timestamp": {
        "secs_since_epoch": 1776581877,
        "nanos_since_epoch": 729873150
      },
      "log_source": "Plan"
    }
  61. {
      "type": "custom_action_output",
      "stdout": [
        72,
        69,
        65,
        68,
        32,
        105,
        115,
        32,
        110,
        111,
        119,
        32,
        97,
        116,
        32,
        53,
        98,
        55,
        49,
        98,
        100,
        50,
        32,
        114,
        101,
        102,
        97,
        99,
        116,
        111,
        114,
        58,
        32,
        114,
        101,
        110,
        97,
        109,
        101,
        32,
        105,
        110,
        116,
        101,
        114,
        110,
        97,
        108,
        32,
        110,
        97,
        109,
        101,
        115,
        32,
        34,
        115,
        116,
        111,
        114,
        101,
        34,
        32,
        116,
        111,
        32,
        34,
        114,
        101,
        112,
        111,
        34,
        10,
        82,
        101,
        109,
        111,
        118,
        105,
        110,
        103,
        32,
        100,
        111,
        99,
        47,
        97,
        114,
        99,
        104,
        46,
        104,
        116,
        109,
        108,
        10,
        82,
        101,
        109,
        111,
        118,
        105,
        110,
        103,
        32,
        100,
        111,
        99,
        47,
        103,
        108,
        111,
        115,
        115,
        97,
        114,
        121,
        46,
        104,
        116,
        109,
        108,
        10,
        82,
        101,
        109,
        111,
        118,
        105,
        110,
        103,
        32,
        111,
        98,
        110,
        97,
        109,
        46,
        104,
        116,
        109,
        108,
        10,
        82,
        101,
        109,
        111,
        118,
        105,
        110,
        103,
        32,
        116,
        101,
        115,
        116,
        46,
        108,
        111,
        103,
        10,
        82,
        101,
        109,
        111,
        118,
        105,
        110,
        103,
        32,
        116,
        101,
        115,
        116,
        46,
        112,
        121,
        10
      ],
      "stderr": [
        43,
        32,
        101,
        120,
        112,
        111,
        114,
        116,
        32,
        39,
        68,
        69,
        66,
        69,
        77,
        65,
        73,
        76,
        61,
        34,
        108,
        105,
        119,
        64,
        108,
        105,
        119,
        46,
        102,
        105,
        34,
        39,
        10,
        43,
        32,
        68,
        69,
        66,
        69,
        77,
        65,
        73,
        76,
        61,
        39,
        34,
        108,
        105,
        119,
        64,
        108,
        105,
        119,
        46,
        102,
        105,
        34,
        39,
        10,
        43,
        32,
        101,
        120,
        112,
        111,
        114,
        116,
        32,
        39,
        68,
        69,
        66,
        70,
        85,
        76,
        76,
        78,
        65,
        77,
        69,
        61,
        34,
        76,
        97,
        114,
        115,
        32,
        87,
        105,
        114,
        122,
        101,
        110,
        105,
        117,
        115,
        34,
        39,
        10,
        43,
        32,
        68,
        69,
        66,
        70,
        85,
        76,
        76,
        78,
        65,
        77,
        69,
        61,
        39,
        34,
        76,
        97,
        114,
        115,
        32,
        87,
        105,
        114,
        122,
        101,
        110,
        105,
        117,
        115,
        34,
        39,
        10,
        43,
        32,
        101,
        120,
        112,
        111,
        114,
        116,
        32,
        67,
        65,
        82,
        71,
        79,
        95,
        84,
        65,
        82,
        71,
        69,
        84,
        95,
        68,
        73,
        82,
        61,
        47,
        119,
        111,
        114,
        107,
        115,
        112,
        97,
        99,
        101,
        47,
        99,
        97,
        99,
        104,
        101,
        10,
        43,
        32,
        67,
        65,
        82,
        71,
        79,
        95,
        84,
        65,
        82,
        71,
        69,
        84,
        95,
        68,
        73,
        82,
        61,
        47,
        119,
        111,
        114,
        107,
        115,
        112,
        97,
        99,
        101,
        47,
        99,
        97,
        99,
        104,
        101,
        10,
        43,
        32,
        101,
        120,
        112,
        111,
        114,
        116,
        32,
        67,
        65,
        82,
        71,
        79,
        95,
        72,
        79,
        77,
        69,
        61,
        47,
        119,
        111,
        114,
        107,
        115,
        112,
        97,
        99,
        101,
        47,
        100,
        101,
        112,
        115,
        10,
        43,
        32,
        67,
        65,
        82,
        71,
        79,
        95,
        72,
        79,
        77,
        69,
        61,
        47,
        119,
        111,
        114,
        107,
        115,
        112,
        97,
        99,
        101,
        47,
        100,
        101,
        112,
        115,
        10,
        43,
        32,
        101,
        120,
        112,
        111,
        114,
        116,
        32,
        72,
        79,
        77,
        69,
        61,
        47,
        114,
        111,
        111,
        116,
        10,
        43,
        32,
        72,
        79,
        77,
        69,
        61,
        47,
        114,
        111,
        111,
        116,
        10,
        43,
        32,
        101,
        120,
        112,
        111,
        114,
        116,
        32,
        80,
        65,
        84,
        72,
        61,
        47,
        114,
        111,
        111,
        116,
        47,
        46,
        99,
        97,
        114,
        103,
        111,
        47,
        98,
        105,
        110,
        58,
        47,
        114,
        111,
        111,
        116,
        47,
        46,
        99,
        97,
        114,
        103,
        111,
        47,
        98,
        105,
        110,
        58,
        47,
        117,
        115,
        114,
        47,
        108,
        111,
        99,
        97,
        108,
        47,
        115,
        98,
        105,
        110,
        58,
        47,
        117,
        115,
        114,
        47,
        108,
        111,
        99,
        97,
        108,
        47,
        98,
        105,
        110,
        58,
        47,
        117,
        115,
        114,
        47,
        115,
        98,
        105,
        110,
        58,
        47,
        117,
        115,
        114,
        47,
        98,
        105,
        110,
        58,
        47,
        115,
        98,
        105,
        110,
        58,
        47,
        98,
        105,
        110,
        10,
        43,
        32,
        80,
        65,
        84,
        72,
        61,
        47,
        114,
        111,
        111,
        116,
        47,
        46,
        99,
        97,
        114,
        103,
        111,
        47,
        98,
        105,
        110,
        58,
        47,
        114,
        111,
        111,
        116,
        47,
        46,
        99,
        97,
        114,
        103,
        111,
        47,
        98,
        105,
        110,
        58,
        47,
        117,
        115,
        114,
        47,
        108,
        111,
        99,
        97,
        108,
        47,
        115,
        98,
        105,
        110,
        58,
        47,
        117,
        115,
        114,
        47,
        108,
        111,
        99,
        97,
        108,
        47,
        98,
        105,
        110,
        58,
        47,
        117,
        115,
        114,
        47,
        115,
        98,
        105,
        110,
        58,
        47,
        117,
        115,
        114,
        47,
        98,
        105,
        110,
        58,
        47,
        115,
        98,
        105,
        110,
        58,
        47,
        98,
        105,
        110,
        10,
        43,
        32,
        103,
        105,
        116,
        32,
        114,
        101,
        115,
        101,
        116,
        32,
        45,
        45,
        104,
        97,
        114,
        100,
        10,
        43,
        32,
        103,
        105,
        116,
        32,
        99,
        108,
        101,
        97,
        110,
        32,
        45,
        102,
        100,
        120,
        10,
        43,
        43,
        32,
        100,
        112,
        107,
        103,
        45,
        112,
        97,
        114,
        115,
        101,
        99,
        104,
        97,
        110,
        103,
        101,
        108,
        111,
        103,
        32,
        45,
        83,
        86,
        101,
        114,
        115,
        105,
        111,
        110,
        10,
        43,
        43,
        32,
        115,
        101,
        100,
        32,
        39,
        115,
        47,
        45,
        91,
        94,
        45,
        93,
        42,
        36,
        47,
        47,
        39,
        10,
        43,
        32,
        86,
        61,
        48,
        46,
        57,
        46,
        57,
        10,
        43,
        43,
        32,
        100,
        97,
        116,
        101,
        32,
        45,
        117,
        32,
        43,
        37,
        89,
        37,
        109,
        37,
        100,
        84,
        37,
        72,
        37,
        77,
        37,
        83,
        10,
        43,
        32,
        84,
        61,
        50,
        48,
        50,
        54,
        48,
        52,
        49,
        57,
        84,
        48,
        54,
        53,
        55,
        53,
        55,
        10,
        43,
        32,
        118,
        101,
        114,
        115,
        105,
        111,
        110,
        61,
        48,
        46,
        57,
        46,
        57,
        46,
        99,
        105,
        50,
        48,
        50,
        54,
        48,
        52,
        49,
        57,
        84,
        48,
        54,
        53,
        55,
        53,
        55,
        45,
        49,
        10,
        43,
        32,
        100,
        99,
        104,
        32,
        45,
        118,
        32,
        48,
        46,
        57,
        46,
        57,
        46,
        99,
        105,
        50,
        48,
        50,
        54,
        48,
        52,
        49,
        57,
        84,
        48,
        54,
        53,
        55,
        53,
        55,
        45,
        49,
        32,
        39,
        67,
        73,
        32,
        98,
        117,
        105,
        108,
        100,
        32,
        117,
        110,
        100,
        101,
        114,
        32,
        65,
        109,
        98,
        105,
        101,
        110,
        116,
        46,
        39,
        10,
        43,
        32,
        100,
        99,
        104,
        32,
        45,
        114,
        32,
        39,
        39,
        10
      ],
      "timestamp": {
        "secs_since_epoch": 1776581877,
        "nanos_since_epoch": 923046534
      },
      "log_source": "Plan"
    }
  62. {
      "type": "action_succeeded",
      "action": "custom",
      "name": "dch",
      "args": {
        "debfullname": "Lars Wirzenius",
        "debemail": "liw@liw.fi"
      },
      "timestamp": {
        "secs_since_epoch": 1776581877,
        "nanos_since_epoch": 968304503
      },
      "log_source": "Plan"
    }
  63. {
      "type": "execute_action",
      "action": "deb",
      "packages": "debian",
      "timestamp": {
        "secs_since_epoch": 1776581877,
        "nanos_since_epoch": 971282369
      },
      "log_source": "Plan"
    }
  64. {
      "type": "start_program",
      "argv": [
        {
          "Unix": [
            47,
            98,
            105,
            110,
            47,
            98,
            97,
            115,
            104
          ]
        },
        {
          "Unix": [
            45,
            99
          ]
        },
        {
          "Unix": [
            35,
            33,
            47,
            117,
            115,
            114,
            47,
            98,
            105,
            110,
            47,
            101,
            110,
            118,
            32,
            98,
            97,
            115,
            104,
            10,
            115,
            101,
            116,
            32,
            45,
            120,
            101,
            117,
            111,
            32,
            112,
            105,
            112,
            101,
            102,
            97,
            105,
            108,
            10,
            10,
            101,
            99,
            104,
            111,
            32,
            34,
            80,
            65,
            84,
            72,
            32,
            97,
            116,
            32,
            115,
            116,
            97,
            114,
            116,
            58,
            32,
            36,
            80,
            65,
            84,
            72,
            34,
            10,
            101,
            120,
            112,
            111,
            114,
            116,
            32,
            80,
            65,
            84,
            72,
            61,
            34,
            47,
            114,
            111,
            111,
            116,
            47,
            46,
            99,
            97,
            114,
            103,
            111,
            47,
            98,
            105,
            110,
            58,
            36,
            80,
            65,
            84,
            72,
            34,
            10,
            101,
            120,
            112,
            111,
            114,
            116,
            32,
            67,
            65,
            82,
            71,
            79,
            95,
            72,
            79,
            77,
            69,
            61,
            47,
            99,
            105,
            47,
            100,
            101,
            112,
            115,
            10,
            101,
            120,
            112,
            111,
            114,
            116,
            32,
            68,
            69,
            66,
            69,
            77,
            65,
            73,
            76,
            61,
            108,
            105,
            119,
            64,
            108,
            105,
            119,
            46,
            102,
            105,
            10,
            101,
            120,
            112,
            111,
            114,
            116,
            32,
            68,
            69,
            66,
            70,
            85,
            76,
            76,
            78,
            65,
            77,
            69,
            61,
            34,
            76,
            97,
            114,
            115,
            32,
            87,
            105,
            114,
            122,
            101,
            110,
            105,
            117,
            115,
            34,
            10,
            47,
            98,
            105,
            110,
            47,
            101,
            110,
            118,
            10,
            10,
            99,
            111,
            109,
            109,
            97,
            110,
            100,
            32,
            45,
            118,
            32,
            99,
            97,
            114,
            103,
            111,
            10,
            99,
            111,
            109,
            109,
            97,
            110,
            100,
            32,
            45,
            118,
            32,
            114,
            117,
            115,
            116,
            99,
            10,
            10,
            99,
            97,
            114,
            103,
            111,
            32,
            45,
            45,
            118,
            101,
            114,
            115,
            105,
            111,
            110,
            10,
            114,
            117,
            115,
            116,
            99,
            32,
            45,
            45,
            118,
            101,
            114,
            115,
            105,
            111,
            110,
            10,
            10,
            35,
            32,
            71,
            101,
            116,
            32,
            110,
            97,
            109,
            101,
            32,
            97,
            110,
            100,
            32,
            118,
            101,
            114,
            115,
            105,
            111,
            110,
            32,
            111,
            102,
            32,
            115,
            111,
            117,
            114,
            99,
            101,
            32,
            112,
            97,
            99,
            107,
            97,
            103,
            101,
            46,
            10,
            110,
            97,
            109,
            101,
            61,
            34,
            36,
            40,
            100,
            112,
            107,
            103,
            45,
            112,
            97,
            114,
            115,
            101,
            99,
            104,
            97,
            110,
            103,
            101,
            108,
            111,
            103,
            32,
            45,
            83,
            83,
            111,
            117,
            114,
            99,
            101,
            41,
            34,
            10,
            118,
            101,
            114,
            115,
            105,
            111,
            110,
            61,
            34,
            36,
            40,
            100,
            112,
            107,
            103,
            45,
            112,
            97,
            114,
            115,
            101,
            99,
            104,
            97,
            110,
            103,
            101,
            108,
            111,
            103,
            32,
            45,
            83,
            86,
            101,
            114,
            115,
            105,
            111,
            110,
            41,
            34,
            10,
            10,
            35,
            32,
            71,
            101,
            116,
            32,
            117,
            112,
            115,
            116,
            114,
            101,
            97,
            109,
            32,
            118,
            101,
            114,
            115,
            105,
            111,
            110,
            58,
            32,
            101,
            118,
            101,
            114,
            121,
            116,
            104,
            105,
            110,
            103,
            32,
            98,
            101,
            102,
            111,
            114,
            101,
            32,
            116,
            104,
            101,
            32,
            108,
            97,
            115,
            116,
            32,
            100,
            97,
            115,
            104,
            46,
            10,
            117,
            118,
            61,
            34,
            36,
            40,
            101,
            99,
            104,
            111,
            32,
            34,
            36,
            118,
            101,
            114,
            115,
            105,
            111,
            110,
            34,
            32,
            124,
            32,
            115,
            101,
            100,
            32,
            39,
            115,
            47,
            45,
            91,
            94,
            45,
            93,
            42,
            36,
            47,
            47,
            39,
            41,
            34,
            10,
            10,
            35,
            32,
            70,
            105,
            108,
            101,
            115,
            32,
            116,
            104,
            97,
            116,
            32,
            119,
            105,
            108,
            108,
            32,
            98,
            101,
            32,
            99,
            114,
            101,
            97,
            116,
            101,
            100,
            46,
            10,
            97,
            114,
            99,
            104,
            61,
            34,
            36,
            40,
            100,
            112,
            107,
            103,
            32,
            45,
            45,
            112,
            114,
            105,
            110,
            116,
            45,
            97,
            114,
            99,
            104,
            105,
            116,
            101,
            99,
            116,
            117,
            114,
            101,
            41,
            34,
            10,
            111,
            114,
            105,
            103,
            61,
            34,
            46,
            46,
            47,
            36,
            123,
            110,
            97,
            109,
            101,
            125,
            95,
            36,
            123,
            117,
            118,
            125,
            46,
            111,
            114,
            105,
            103,
            46,
            116,
            97,
            114,
            46,
            120,
            122,
            34,
            10,
            100,
            101,
            98,
            61,
            34,
            46,
            46,
            47,
            36,
            123,
            110,
            97,
            109,
            101,
            125,
            95,
            36,
            123,
            118,
            101,
            114,
            115,
            105,
            111,
            110,
            125,
            95,
            36,
            123,
            97,
            114,
            99,
            104,
            125,
            46,
            100,
            101,
            98,
            34,
            10,
            99,
            104,
            97,
            110,
            103,
            101,
            115,
            61,
            34,
            46,
            46,
            47,
            36,
            123,
            110,
            97,
            109,
            101,
            125,
            95,
            36,
            123,
            118,
            101,
            114,
            115,
            105,
            111,
            110,
            125,
            95,
            36,
            123,
            97,
            114,
            99,
            104,
            125,
            46,
            99,
            104,
            97,
            110,
            103,
            101,
            115,
            34,
            10,
            10,
            35,
            32,
            67,
            114,
            101,
            97,
            116,
            101,
            32,
            34,
            117,
            112,
            115,
            116,
            114,
            101,
            97,
            109,
            32,
            116,
            97,
            114,
            98,
            97,
            108,
            108,
            34,
            46,
            10,
            103,
            105,
            116,
            32,
            97,
            114,
            99,
            104,
            105,
            118,
            101,
            32,
            72,
            69,
            65,
            68,
            32,
            124,
            32,
            120,
            122,
            32,
            62,
            34,
            36,
            111,
            114,
            105,
            103,
            34,
            10,
            10,
            35,
            32,
            66,
            117,
            105,
            108,
            100,
            32,
            112,
            97,
            99,
            107,
            97,
            103,
            101,
            46,
            10,
            100,
            112,
            107,
            103,
            45,
            98,
            117,
            105,
            108,
            100,
            112,
            97,
            99,
            107,
            97,
            103,
            101,
            32,
            45,
            117,
            115,
            32,
            45,
            117,
            99,
            10,
            10,
            35,
            32,
            68,
            117,
            109,
            112,
            32,
            115,
            111,
            109,
            101,
            32,
            105,
            110,
            102,
            111,
            114,
            109,
            97,
            116,
            105,
            111,
            110,
            32,
            116,
            111,
            32,
            109,
            97,
            107,
            101,
            32,
            105,
            116,
            32,
            101,
            97,
            115,
            105,
            101,
            114,
            32,
            116,
            111,
            32,
            118,
            105,
            115,
            117,
            97,
            108,
            108,
            121,
            32,
            118,
            101,
            114,
            105,
            102,
            121,
            10,
            35,
            32,
            101,
            118,
            101,
            114,
            121,
            116,
            104,
            105,
            110,
            103,
            32,
            108,
            111,
            111,
            107,
            115,
            32,
            79,
            75,
            46,
            32,
            65,
            108,
            115,
            111,
            44,
            32,
            116,
            101,
            115,
            116,
            32,
            116,
            104,
            101,
            32,
            112,
            97,
            99,
            107,
            97,
            103,
            101,
            32,
            119,
            105,
            116,
            104,
            32,
            116,
            104,
            101,
            32,
            108,
            105,
            110,
            116,
            105,
            97,
            110,
            32,
            116,
            111,
            111,
            108,
            46,
            10,
            10,
            108,
            115,
            32,
            45,
            108,
            32,
            46,
            46,
            10,
            102,
            111,
            114,
            32,
            120,
            32,
            105,
            110,
            32,
            46,
            46,
            47,
            42,
            46,
            100,
            101,
            98,
            59,
            32,
            100,
            111,
            32,
            100,
            112,
            107,
            103,
            32,
            45,
            99,
            32,
            34,
            36,
            120,
            34,
            59,
            32,
            100,
            111,
            110,
            101,
            10,
            35,
            32,
            70,
            73,
            88,
            77,
            69,
            58,
            32,
            100,
            105,
            115,
            97,
            98,
            108,
            101,
            100,
            32,
            119,
            104,
            105,
            108,
            101,
            32,
            116,
            104,
            105,
            115,
            32,
            112,
            114,
            101,
            118,
            101,
            110,
            116,
            115,
            32,
            114,
            97,
            100,
            105,
            99,
            108,
            101,
            45,
            110,
            97,
            116,
            105,
            118,
            101,
            45,
            99,
            105,
            32,
            100,
            101,
            98,
            32,
            102,
            114,
            111,
            109,
            32,
            98,
            101,
            105,
            110,
            103,
            32,
            98,
            117,
            105,
            108,
            116,
            46,
            10,
            35,
            32,
            108,
            105,
            110,
            116,
            105,
            97,
            110,
            32,
            45,
            105,
            32,
            45,
            45,
            97,
            108,
            108,
            111,
            119,
            45,
            114,
            111,
            111,
            116,
            32,
            45,
            45,
            102,
            97,
            105,
            108,
            45,
            111,
            110,
            32,
            119,
            97,
            114,
            110,
            105,
            110,
            103,
            32,
            46,
            46,
            47,
            42,
            46,
            99,
            104,
            97,
            110,
            103,
            101,
            115,
            10,
            10,
            35,
            32,
            77,
            111,
            118,
            101,
            32,
            102,
            105,
            108,
            101,
            115,
            32,
            116,
            111,
            32,
            97,
            114,
            116,
            105,
            102,
            97,
            99,
            116,
            115,
            32,
            100,
            105,
            114,
            101,
            99,
            116,
            111,
            114,
            121,
            46,
            10,
            109,
            118,
            32,
            46,
            46,
            47,
            42,
            95,
            42,
            32,
            47,
            99,
            105,
            47,
            97,
            114,
            116,
            105,
            102,
            97,
            99,
            116,
            115,
            47,
            100,
            101,
            98,
            105,
            97,
            110,
            10,
            32,
            32,
            32,
            32,
            32,
            32,
            32,
            32
          ]
        }
      ],
      "timestamp": {
        "secs_since_epoch": 1776581877,
        "nanos_since_epoch": 973471727
      },
      "log_source": "Plan"
    }
  65. {
      "type": "program_succeeded",
      "exit_code": 0,
      "stdout": "PATH at start: /root/.cargo/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin\nDEBFULLNAME=Lars Wirzenius\nCARGO_TARGET_DIR=/ci/cache/cargo-target\nPWD=/ci/src\nSYSTEMD_EXEC_PID=281\nHOME=/root\nLANG=C.UTF-8\nCARGO_HOME=/ci/deps\nDEBEMAIL=liw@liw.fi\nINVOCATION_ID=52f93d0c62f548dab55481f9e4444b62\nSHLVL=2\nJOURNAL_STREAM=8:14592\nPATH=/root/.cargo/bin:/root/.cargo/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin\nOLDPWD=/\n_=/bin/env\n/root/.cargo/bin/cargo\n/root/.cargo/bin/rustc\ncargo 1.94.0 (85eff7c80 2026-01-15)\nrustc 1.94.0 (4a4ef493e 2026-03-02)\ndpkg-buildpackage: info: source package obnam\ndpkg-buildpackage: info: source version 0.9.9.ci20260419T065757-1\ndpkg-buildpackage: info: source distribution unstable\ndpkg-buildpackage: info: source changed by \"Lars Wirzenius\" <\"liw@liw.fi\">\ndpkg-buildpackage: info: host architecture amd64\ndh clean\n   dh_auto_clean\n   dh_clean\ndpkg-source: info: using source format '3.0 (quilt)'\ndpkg-source: info: building obnam using existing ./obnam_0.9.9.ci20260419T065757.orig.tar.xz\ndpkg-source: info: building obnam in obnam_0.9.9.ci20260419T065757-1.debian.tar.xz\ndpkg-source: info: building obnam in obnam_0.9.9.ci20260419T065757-1.dsc\ndh build\n   dh_update_autotools_config\n   dh_autoreconf\n   dh_auto_configure\n   debian/rules override_dh_auto_build\nmake[1]: Entering directory '/ci/src'\ncargo build --workspace --release\nmake[1]: Leaving directory '/ci/src'\n   debian/rules override_dh_auto_test\nmake[1]: Entering directory '/ci/src'\necho tests are disabled, for now\ntests are disabled, for now\nmake[1]: Leaving directory '/ci/src'\n   create-stamp debian/debhelper-build-stamp\ndh binary\n   dh_testroot\n   dh_prep\n   debian/rules override_dh_auto_install\nmake[1]: Entering directory '/ci/src'\ncargo install --offline --locked --path=obnam --root=debian/obnam/usr\nfind debian -name '.crates*.*' -delete\nmake[1]: Leaving directory '/ci/src'\n   dh_installdocs\n   dh_installchangelogs\n   dh_lintian\n   dh_perl\n   dh_link\n   dh_strip_nondeterminism\n   dh_compress\n   dh_fixperms\n   dh_missing\n   dh_strip\n   dh_makeshlibs\n   dh_shlibdeps\n   dh_installdeb\n   dh_gencontrol\n   dh_md5sums\n   dh_builddeb\ndpkg-deb: building package 'obnam-dbgsym' in '../obnam-dbgsym_0.9.9.ci20260419T065757-1_amd64.deb'.\ndpkg-deb: building package 'obnam' in '../obnam_0.9.9.ci20260419T065757-1_amd64.deb'.\ndpkg-genchanges: info: including full source code in upload\ndpkg-buildpackage: info: full upload (original source is included)\ntotal 3028\ndrwxr-xr-x  4 root root    4096 Apr 19 06:57 artifacts\ndrwxr-xr-x  3 root root    4096 Apr 19 06:51 cache\ndrwxr-xr-x  3 root root    4096 Apr 19 06:57 deps\n-rw-r--r--  1 root root  327496 Apr 19 06:58 obnam-dbgsym_0.9.9.ci20260419T065757-1_amd64.deb\n-rw-r--r--  1 root root    1716 Apr 19 06:57 obnam_0.9.9.ci20260419T065757-1.debian.tar.xz\n-rw-r--r--  1 root root     900 Apr 19 06:57 obnam_0.9.9.ci20260419T065757-1.dsc\n-rw-r--r--  1 root root    5655 Apr 19 06:58 obnam_0.9.9.ci20260419T065757-1_amd64.buildinfo\n-rw-r--r--  1 root root    2296 Apr 19 06:58 obnam_0.9.9.ci20260419T065757-1_amd64.changes\n-rw-r--r--  1 root root 2650832 Apr 19 06:58 obnam_0.9.9.ci20260419T065757-1_amd64.deb\n-rw-r--r--  1 root root   78400 Apr 19 06:57 obnam_0.9.9.ci20260419T065757.orig.tar.xz\ndrwxr-xr-x 10 root root    4096 Apr 19 06:57 src\ndrwxr-xr-x root/root         0 2026-04-19 06:57 ./\ndrwxr-xr-x root/root         0 2026-04-19 06:57 ./usr/\ndrwxr-xr-x root/root         0 2026-04-19 06:57 ./usr/lib/\ndrwxr-xr-x root/root         0 2026-04-19 06:57 ./usr/lib/debug/\ndrwxr-xr-x root/root         0 2026-04-19 06:57 ./usr/lib/debug/.build-id/\ndrwxr-xr-x root/root         0 2026-04-19 06:57 ./usr/lib/debug/.build-id/e9/\n-rw-r--r-- root/root   1936944 2026-04-19 06:57 ./usr/lib/debug/.build-id/e9/03a207f209aa36326eb578e50c4dc887d27ff8.debug\ndrwxr-xr-x root/root         0 2026-04-19 06:57 ./usr/share/\ndrwxr-xr-x root/root         0 2026-04-19 06:57 ./usr/share/doc/\nlrwxrwxrwx root/root         0 2026-04-19 06:57 ./usr/share/doc/obnam-dbgsym -> obnam\ndrwxr-xr-x root/root         0 2026-04-19 06:57 ./\ndrwxr-xr-x root/root         0 2026-04-19 06:57 ./usr/\ndrwxr-xr-x root/root         0 2026-04-19 06:57 ./usr/bin/\n-rwxr-xr-x root/root   9287984 2026-04-19 06:57 ./usr/bin/obnam\ndrwxr-xr-x root/root         0 2026-04-19 06:57 ./usr/share/\ndrwxr-xr-x root/root         0 2026-04-19 06:57 ./usr/share/doc/\ndrwxr-xr-x root/root         0 2026-04-19 06:57 ./usr/share/doc/obnam/\n-rw-r--r-- root/root       203 2026-04-19 06:57 ./usr/share/doc/obnam/changelog.Debian.gz\n-rw-r--r-- root/root       371 2026-04-19 06:57 ./usr/share/doc/obnam/copyright\ndrwxr-xr-x root/root         0 2026-04-19 06:57 ./usr/share/lintian/\ndrwxr-xr-x root/root         0 2026-04-19 06:57 ./usr/share/lintian/overrides/\n-rw-r--r-- root/root        48 2026-04-19 06:57 ./usr/share/lintian/overrides/obnam\n",
      "stderr": "+ echo 'PATH at start: /root/.cargo/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin'\n+ export PATH=/root/.cargo/bin:/root/.cargo/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin\n+ PATH=/root/.cargo/bin:/root/.cargo/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin\n+ export CARGO_HOME=/ci/deps\n+ CARGO_HOME=/ci/deps\n+ export DEBEMAIL=liw@liw.fi\n+ DEBEMAIL=liw@liw.fi\n+ export 'DEBFULLNAME=Lars Wirzenius'\n+ DEBFULLNAME='Lars Wirzenius'\n+ /bin/env\n+ command -v cargo\n+ command -v rustc\n+ cargo --version\n+ rustc --version\n++ dpkg-parsechangelog -SSource\n+ name=obnam\n++ dpkg-parsechangelog -SVersion\n+ version=0.9.9.ci20260419T065757-1\n++ echo 0.9.9.ci20260419T065757-1\n++ sed 's/-[^-]*$//'\n+ uv=0.9.9.ci20260419T065757\n++ dpkg --print-architecture\n+ arch=amd64\n+ orig=../obnam_0.9.9.ci20260419T065757.orig.tar.xz\n+ deb=../obnam_0.9.9.ci20260419T065757-1_amd64.deb\n+ changes=../obnam_0.9.9.ci20260419T065757-1_amd64.changes\n+ git archive HEAD\n+ xz\n+ dpkg-buildpackage -us -uc\n dpkg-source --before-build .\n debian/rules clean\n dpkg-source -b .\n debian/rules build\n   Compiling obnam v0.10.0 (/ci/src/obnam)\n   Compiling obnam-server v0.1.0 (/ci/src/obnam-server)\n    Finished `release` profile [optimized] target(s) in 12.20s\n debian/rules binary\n  Installing obnam v0.10.0 (/ci/src/obnam)\n   Compiling obnam v0.10.0 (/ci/src/obnam)\n    Finished `release` profile [optimized] target(s) in 6.73s\n  Installing /ci/src/debian/obnam/usr/bin/obnam\n   Installed package `obnam v0.10.0 (/ci/src/obnam)` (executable `obnam`)\nwarning: be sure to add `/ci/src/debian/obnam/usr/bin` to your PATH to be able to run the installed binaries\n dpkg-genbuildinfo -O../obnam_0.9.9.ci20260419T065757-1_amd64.buildinfo\n dpkg-genchanges -O../obnam_0.9.9.ci20260419T065757-1_amd64.changes\n dpkg-source --after-build .\n+ ls -l ..\n+ for x in ../*.deb\n+ dpkg -c ../obnam-dbgsym_0.9.9.ci20260419T065757-1_amd64.deb\n+ for x in ../*.deb\n+ dpkg -c ../obnam_0.9.9.ci20260419T065757-1_amd64.deb\n+ mv ../obnam-dbgsym_0.9.9.ci20260419T065757-1_amd64.deb ../obnam_0.9.9.ci20260419T065757-1.debian.tar.xz ../obnam_0.9.9.ci20260419T065757-1.dsc ../obnam_0.9.9.ci20260419T065757-1_amd64.buildinfo ../obnam_0.9.9.ci20260419T065757-1_amd64.changes ../obnam_0.9.9.ci20260419T065757-1_amd64.deb ../obnam_0.9.9.ci20260419T065757.orig.tar.xz /ci/artifacts/debian\n",
      "timestamp": {
        "secs_since_epoch": 1776581902,
        "nanos_since_epoch": 114234100
      },
      "log_source": "Plan"
    }
  66. {
      "type": "action_succeeded",
      "action": "deb",
      "packages": "debian",
      "timestamp": {
        "secs_since_epoch": 1776581902,
        "nanos_since_epoch": 169146583
      },
      "log_source": "Plan"
    }
  67. {
      "type": "execute_action",
      "action": "tar_create",
      "archive": "/dev/vde",
      "directory": "/ci/cache",
      "timestamp": {
        "secs_since_epoch": 1776581902,
        "nanos_since_epoch": 169316893
      },
      "log_source": "Plan"
    }
  68. {
      "type": "action_succeeded",
      "action": "tar_create",
      "archive": "/dev/vde",
      "directory": "/ci/cache",
      "timestamp": {
        "secs_since_epoch": 1776581905,
        "nanos_since_epoch": 59432994
      },
      "log_source": "Plan"
    }
  69. {
      "type": "execute_action",
      "action": "tar_create",
      "archive": "/dev/vdd",
      "directory": "/ci/artifacts",
      "timestamp": {
        "secs_since_epoch": 1776581905,
        "nanos_since_epoch": 63172868
      },
      "log_source": "Plan"
    }
  70. {
      "type": "action_succeeded",
      "action": "tar_create",
      "archive": "/dev/vdd",
      "directory": "/ci/artifacts",
      "timestamp": {
        "secs_since_epoch": 1776581905,
        "nanos_since_epoch": 77806486
      },
      "log_source": "Plan"
    }
  71. {
      "type": "plan_succeeded",
      "timestamp": {
        "secs_since_epoch": 1776581905,
        "nanos_since_epoch": 82097044
      },
      "log_source": "Plan"
    }
  72. {
      "type": "executor_ends_successfully",
      "timestamp": {
        "secs_since_epoch": 1776581905,
        "nanos_since_epoch": 83771991
      },
      "log_source": "Plan"
    }

Trigger message

{
  "request": "trigger",
  "version": 1,
  "event_type": "push",
  "repository": {
    "id": "rad:zbWNQYkQ4QKgdSQcd1tjaemv6d6x",
    "name": "obnam",
    "description": "Explore implementation of backup fundamentals",
    "private": false,
    "default_branch": "main",
    "delegates": [
      "did:key:z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV"
    ]
  },
  "pusher": {
    "id": "did:key:z6MkgEMYod7Hxfy9qCvDv5hYHkZ4ciWmLFgfvm3Wn1b2w2FV",
    "alias": "liw"
  },
  "before": "5b71bd2a97ebc84c8536c6a86d36b2a52441b50e",
  "after": "5b71bd2a97ebc84c8536c6a86d36b2a52441b50e",
  "branch": "main",
  "commits": [
    "5b71bd2a97ebc84c8536c6a86d36b2a52441b50e",
    "c240ed309994f68e80481cff25edc0c85aa97e34",
    "ddc26eba2b1f3ef466bdfafc2bfda88b87e5898e",
    "33e1c717a09712c5ad30994713c2734126230461",
    "a43d15e224fd8cd69e6696247e1e7f95f5e58d68",
    "ccb2e5ebdf4f9e10a5ec8fefd0a62919cb95066a",
    "e8ffbb6fd856be27a81052145a8c5a11b431867e",
    "6ddca6838bcad916f9fa9b7051d3ead7c9af755e",
    "730881bf2bedb205ca79b96177d904b2b36a250b",
    "e367e2d1d1bd37f2c0a2e2deee592fec218b482b",
    "3da2bb236845fb47f14ec4474e504e16e3dea55e",
    "3219bb1fc3a10d2aa834e4e297c070d71c0fb1fd",
    "cfaf582fa88457a026f99b65b939992d1bf577b1",
    "74e0219da1dc5ee24dc441f12aaee950785d0f88",
    "768b67037685d0348022f4322a69d05a5bf578c6",
    "69fdce90c7103ba7b65603d8713da59f6032ea89",
    "3e0e9131666c5781d0d03f697eb88de685b80c9f",
    "e7e2359e7a81bca38aa4b3652779111c17a258d8",
    "e93bd22a1a8df6c774c0a5f028f8140ee41943dc",
    "33178381540ef09938811f17b96b83b2e869a80a",
    "9cc766af7f11e2b5efbca49800ca3c5cc562cdc5"
  ]
}

Ambient stdout

executor from config: /usr/bin/ambient-execute-plan
executor from PATH: /usr/bin/ambient-execute-plan
run CI for rad:zbWNQYkQ4QKgdSQcd1tjaemv6d6x

Ambient stderr

<empty log>