(for PR #28910)

2025-11-19 07:54.45: New job: test avro-simple.0.1, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/28910/head (bcff42d37dd17cc61f533b42262cc67e654385dd)
                              on ubuntu-22.04-ocaml-5.4/amd64

To reproduce locally:

cd $(mktemp -d)
git clone --recursive "https://github.com/ocaml/opam-repository.git" && cd "opam-repository" && git fetch origin "refs/pull/28910/head" && git reset --hard bcff42d3
git fetch origin master
git merge --no-edit 24dbb725dce5c26764f028224175df3cfbe7dafd
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:ubuntu-22.04-ocaml-5.4@sha256:7e1bff730b72024184a59dbb99cc829c31586d5ed4669796afbebac108ebbdc7
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-dev /usr/bin/opam
RUN opam init --reinit -ni
RUN opam option solver=builtin-0install && opam config report
ENV OPAMDOWNLOADJOBS="1"
ENV OPAMERRLOGLEN="0"
ENV OPAMPRECISETRACKING="1"
ENV CI="true"
ENV OPAM_REPO_CI="true"
RUN rm -rf opam-repository/
COPY --chown=1000:1000 . opam-repository/
RUN opam repository set-url --strict default opam-repository/
RUN opam update --depexts || true
RUN opam pin add -k version -yn avro-simple.0.1 0.1
RUN opam reinstall avro-simple.0.1; \
    res=$?; \
    test "$res" != 31 && exit "$res"; \
    export OPAMCLI=2.0; \
    build_dir=$(opam var prefix)/.opam-switch/build; \
    failed=$(ls "$build_dir"); \
    partial_fails=""; \
    for pkg in $failed; do \
    if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"ubuntu-22.04\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'avro-simple.0.1' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN (opam reinstall --with-test avro-simple.0.1) || true
RUN opam reinstall --with-test --verbose avro-simple.0.1; \
    res=$?; \
    test "$res" != 31 && exit "$res"; \
    export OPAMCLI=2.0; \
    build_dir=$(opam var prefix)/.opam-switch/build; \
    failed=$(ls "$build_dir"); \
    partial_fails=""; \
    for pkg in $failed; do \
    if opam show -f x-ci-accept-failures: "$pkg" | grep -qF "\"ubuntu-22.04\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'avro-simple.0.1' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1

END-OF-DOCKERFILE
docker build -f ../Dockerfile .

2025-11-19 07:54.45: Using cache hint "ocaml/opam:ubuntu-22.04-ocaml-5.4@sha256:7e1bff730b72024184a59dbb99cc829c31586d5ed4669796afbebac108ebbdc7-avro-simple.0.1-bcff42d37dd17cc61f533b42262cc67e654385dd"
2025-11-19 07:54.45: Using OBuilder spec:
((from ocaml/opam:ubuntu-22.04-ocaml-5.4@sha256:7e1bff730b72024184a59dbb99cc829c31586d5ed4669796afbebac108ebbdc7)
 (user (uid 1000) (gid 1000))
 (workdir /home/opam)
 (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
 (run (network host)
      (shell "opam init --reinit --config .opamrc-sandbox -ni"))
 (run (shell "opam option solver=builtin-0install && opam config report"))
 (env OPAMDOWNLOADJOBS 1)
 (env OPAMERRLOGLEN 0)
 (env OPAMPRECISETRACKING 1)
 (env CI true)
 (env OPAM_REPO_CI true)
 (run (shell "rm -rf opam-repository/"))
 (copy (src .) (dst opam-repository/))
 (run (shell "opam repository set-url --strict default opam-repository/"))
 (run (network host)
      (shell "opam update --depexts || true"))
 (run (shell "opam pin add -k version -yn avro-simple.0.1 0.1"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall avro-simple.0.1;\
             \n        res=$?;\
             \n        test \"$res\" != 31 && exit \"$res\";\
             \n        export OPAMCLI=2.0;\
             \n        build_dir=$(opam var prefix)/.opam-switch/build;\
             \n        failed=$(ls \"$build_dir\");\
             \n        partial_fails=\"\";\
             \n        for pkg in $failed; do\
             \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"ubuntu-22.04\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'avro-simple.0.1' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
 (run (network host)
      (shell "(opam reinstall --with-test avro-simple.0.1) || true"))
 (run (shell  "opam reinstall --with-test --verbose avro-simple.0.1;\
             \n        res=$?;\
             \n        test \"$res\" != 31 && exit \"$res\";\
             \n        export OPAMCLI=2.0;\
             \n        build_dir=$(opam var prefix)/.opam-switch/build;\
             \n        failed=$(ls \"$build_dir\");\
             \n        partial_fails=\"\";\
             \n        for pkg in $failed; do\
             \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"ubuntu-22.04\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'avro-simple.0.1' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2025-11-19 07:54.45: Waiting for resource in pool OCluster
2025-11-19 07:54.45: Waiting for worker…
2025-11-19 07:54.46: Got resource from pool OCluster
Building on toxis.caelum.ci.dev
All commits already cached
HEAD is now at 24dbb725dc Merge pull request #28918 from dra27/msys2-lablgtk3
Merge made by the 'ort' strategy.
 packages/avro-simple/avro-simple.0.1/opam | 52 +++++++++++++++++++++++++++++++
 1 file changed, 52 insertions(+)
 create mode 100644 packages/avro-simple/avro-simple.0.1/opam

(from ocaml/opam:ubuntu-22.04-ocaml-5.4@sha256:7e1bff730b72024184a59dbb99cc829c31586d5ed4669796afbebac108ebbdc7)
2025-11-19 07:55.12 ---> using "ba8becb351302c48dbf7346fd914615a4ff310f4acb9f013c967434ccbe00b2f" from cache

/: (user (uid 1000) (gid 1000))

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2025-11-19 07:55.12 ---> using "7f54037b5c1afade320da113e48f321edb0a4ae86785827e1cce0023a4a5e7ab" from cache

/home/opam: (run (network host)
                 (shell "opam init --reinit --config .opamrc-sandbox -ni"))
Configuring from /home/opam/.opamrc-sandbox, then /home/opam/.opamrc, and finally from built-in defaults.
Checking for available remotes: rsync and local, git.
  - you won't be able to use mercurial repositories unless you install the hg command on your system.
  - you won't be able to use darcs repositories unless you install the darcs command on your system.

This version of opam requires an update to the layout of /home/opam/.opam from version 2.0 to version 2.2, which can't be reverted.
You may want to back it up before going further.

Continue? [Y/n] y
Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2025-11-19 07:55.12 ---> using "bdab76dd6f1f471f9154f73fb4e191c03e037a6c7e8ef8aecf3cc4ce9f6f95c1" from cache

/home/opam: (run (shell "opam option solver=builtin-0install && opam config report"))
Set to 'builtin-0install' the field solver in global configuration
# opam config report
# opam-version         2.5.0~beta1
# self-upgrade         no
# system               arch=x86_64 os=linux os-distribution=ubuntu os-version=22.04
# solver               builtin-0install
# install-criteria     -changed,-count[avoid-version,solution]
# upgrade-criteria     -count[avoid-version,solution]
# jobs                 71
# repositories         1 (version-controlled)
# pinned               1 (version)
# current-switch       5.4
# invariant            ["ocaml-base-compiler" {>= "5.4.0"}]
# compiler-packages    ocaml-base-compiler.5.4.0, ocaml-compiler.5.4.0, ocaml-options-vanilla.1
# ocaml:native         true
# ocaml:native-tools   true
# ocaml:native-dynlink true
# ocaml:stubsdir       /home/opam/.opam/5.4/lib/ocaml/stublibs:/home/opam/.opam/5.4/lib/ocaml
# ocaml:preinstalled   false
# ocaml:compiler       5.4.0
2025-11-19 07:55.12 ---> using "74bfc47197853e84d9372982fc0bbeb8f032839947d78bb72217b26681bc0ae9" from cache

/home/opam: (env OPAMDOWNLOADJOBS 1)

/home/opam: (env OPAMERRLOGLEN 0)

/home/opam: (env OPAMPRECISETRACKING 1)

/home/opam: (env CI true)

/home/opam: (env OPAM_REPO_CI true)

/home/opam: (run (shell "rm -rf opam-repository/"))
2025-11-19 07:55.12 ---> using "ef8111b987a45d6c9743cd920ea70d55795c169b650bf7039c933f4a19467d6b" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2025-11-19 07:55.18 ---> saved as "5905a1df2d90ac70af68eaa6fa415d46326f7307d919e0960ed8c385398968d6"

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-11-19 07:55.33 ---> saved as "f623565f444c30ef59b929260868efbbe1a8b22e917ae1ae5b9faebdcf9546a5"

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Get:1 http://security.ubuntu.com/ubuntu jammy-security InRelease [129 kB]
- Hit:2 http://archive.ubuntu.com/ubuntu jammy InRelease
- Get:3 http://archive.ubuntu.com/ubuntu jammy-updates InRelease [128 kB]
- Get:4 http://archive.ubuntu.com/ubuntu jammy-backports InRelease [127 kB]
- Get:5 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 Packages [1290 kB]
- Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 Packages [6188 kB]
- Get:7 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 Packages [1595 kB]
- Get:8 http://security.ubuntu.com/ubuntu jammy-security/main amd64 Packages [3532 kB]
- Get:9 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 Packages [3864 kB]
- Get:10 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 Packages [5988 kB]
- Fetched 22.8 MB in 4s (5263 kB/s)
- Reading package lists...
- 
2025-11-19 07:55.40 ---> saved as "a7adff91a88a0177d2d02491bd5c8f40381ce4b88d3ec4a623ae545aa49b5ee2"

/home/opam: (run (shell "opam pin add -k version -yn avro-simple.0.1 0.1"))
avro-simple is now pinned to version 0.1
2025-11-19 07:55.41 ---> saved as "81c33105b747e622131226f33b218e952b51d661ca7275e0673e47356b10416b"

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall avro-simple.0.1;\
                        \n        res=$?;\
                        \n        test \"$res\" != 31 && exit \"$res\";\
                        \n        export OPAMCLI=2.0;\
                        \n        build_dir=$(opam var prefix)/.opam-switch/build;\
                        \n        failed=$(ls \"$build_dir\");\
                        \n        partial_fails=\"\";\
                        \n        for pkg in $failed; do\
                        \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"ubuntu-22.04\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'avro-simple.0.1' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
avro-simple.0.1 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 17 packages
  - install avro-simple       0.1 (pinned)
  - install bigstringaf       0.10.0       [required by avro-simple]
  - install checkseum         0.5.2        [required by decompress]
  - install cmdliner          2.0.0        [required by decompress, uuidm]
  - install conf-gmp          5            [required by zarith]
  - install conf-pkg-config   4            [required by zarith]
  - install csexp             1.5.2        [required by dune-configurator]
  - install decompress        1.5.3        [required by avro-simple]
  - install dune              3.20.2       [required by avro-simple]
  - install dune-configurator 3.20.2       [required by bigstringaf]
  - install ocamlbuild        0.16.1       [required by uuidm]
  - install ocamlfind         1.9.8        [required by uuidm, zarith]
  - install optint            0.3.0        [required by decompress]
  - install topkg             1.1.1        [required by uuidm]
  - install uuidm             0.9.10       [required by avro-simple]
  - install yojson            3.0.0        [required by avro-simple]
  - install zarith            1.14         [required by avro-simple]

The following system packages will first need to be installed:
    libgmp-dev pkg-config

<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>

opam believes some required external dependencies are missing. opam can:
> 1. Run apt-get to install them (may need root/sudo access)
  2. Display the recommended apt-get command and wait while you run it manually (e.g. in another terminal)
  3. Continue anyway, and, upon success, permanently register that this external dependency is present, but not detectable
  4. Abort the installation

[1/2/3/4] 1

+ /usr/bin/sudo "apt-get" "install" "-qq" "-yy" "libgmp-dev" "pkg-config"
- debconf: delaying package configuration, since apt-utils is not installed
- Selecting previously unselected package libglib2.0-0:amd64.
- (Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 15669 files and directories currently installed.)
- Preparing to unpack .../0-libglib2.0-0_2.72.4-0ubuntu2.6_amd64.deb ...
- Unpacking libglib2.0-0:amd64 (2.72.4-0ubuntu2.6) ...
- Selecting previously unselected package libglib2.0-data.
- Preparing to unpack .../1-libglib2.0-data_2.72.4-0ubuntu2.6_all.deb ...
- Unpacking libglib2.0-data (2.72.4-0ubuntu2.6) ...
- Selecting previously unselected package libicu70:amd64.
- Preparing to unpack .../2-libicu70_70.1-2_amd64.deb ...
- Unpacking libicu70:amd64 (70.1-2) ...
- Selecting previously unselected package libxml2:amd64.
- Preparing to unpack .../3-libxml2_2.9.13+dfsg-1ubuntu0.10_amd64.deb ...
- Unpacking libxml2:amd64 (2.9.13+dfsg-1ubuntu0.10) ...
- Selecting previously unselected package shared-mime-info.
- Preparing to unpack .../4-shared-mime-info_2.1-2_amd64.deb ...
- Unpacking shared-mime-info (2.1-2) ...
- Selecting previously unselected package xdg-user-dirs.
- Preparing to unpack .../5-xdg-user-dirs_0.17-2ubuntu4_amd64.deb ...
- Unpacking xdg-user-dirs (0.17-2ubuntu4) ...
- Selecting previously unselected package libgmpxx4ldbl:amd64.
- Preparing to unpack .../6-libgmpxx4ldbl_2%3a6.2.1+dfsg-3ubuntu1_amd64.deb ...
- Unpacking libgmpxx4ldbl:amd64 (2:6.2.1+dfsg-3ubuntu1) ...
- Selecting previously unselected package libgmp-dev:amd64.
- Preparing to unpack .../7-libgmp-dev_2%3a6.2.1+dfsg-3ubuntu1_amd64.deb ...
- Unpacking libgmp-dev:amd64 (2:6.2.1+dfsg-3ubuntu1) ...
- Selecting previously unselected package pkg-config.
- Preparing to unpack .../8-pkg-config_0.29.2-1ubuntu3_amd64.deb ...
- Unpacking pkg-config (0.29.2-1ubuntu3) ...
- Setting up xdg-user-dirs (0.17-2ubuntu4) ...
- Setting up libglib2.0-0:amd64 (2.72.4-0ubuntu2.6) ...
- No schema files found: doing nothing.
- Setting up libglib2.0-data (2.72.4-0ubuntu2.6) ...
- Setting up libgmpxx4ldbl:amd64 (2:6.2.1+dfsg-3ubuntu1) ...
- Setting up pkg-config (0.29.2-1ubuntu3) ...
- Setting up libicu70:amd64 (70.1-2) ...
- Setting up libgmp-dev:amd64 (2:6.2.1+dfsg-3ubuntu1) ...
- Setting up libxml2:amd64 (2.9.13+dfsg-1ubuntu0.10) ...
- Setting up shared-mime-info (2.1-2) ...
- Processing triggers for libc-bin (2.35-0ubuntu3.11) ...

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved avro-simple.0.1  (cached)
-> retrieved bigstringaf.0.10.0  (cached)
-> retrieved checkseum.0.5.2  (cached)
-> retrieved cmdliner.2.0.0  (cached)
-> retrieved conf-gmp.5  (cached)
-> retrieved csexp.1.5.2  (cached)
-> installed conf-pkg-config.4
-> installed conf-gmp.5
-> retrieved decompress.1.5.3  (cached)
-> retrieved dune.3.20.2, dune-configurator.3.20.2  (cached)
-> retrieved ocamlbuild.0.16.1  (cached)
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved optint.0.3.0  (cached)
-> installed cmdliner.2.0.0
-> retrieved topkg.1.1.1  (cached)
-> retrieved uuidm.0.9.10  (cached)
-> retrieved yojson.3.0.0  (cached)
-> retrieved zarith.1.14  (cached)
-> installed ocamlfind.1.9.8
-> installed ocamlbuild.0.16.1
-> installed zarith.1.14
-> installed topkg.1.1.1
-> installed uuidm.0.9.10
-> installed dune.3.20.2
-> installed csexp.1.5.2
-> installed optint.0.3.0
-> installed yojson.3.0.0
-> installed dune-configurator.3.20.2
-> installed bigstringaf.0.10.0
-> installed checkseum.0.5.2
-> installed decompress.1.5.3
-> installed avro-simple.0.1
Done.
# To update the current shell environment, run: eval $(opam env)
2025-11-19 07:56.30 ---> saved as "47c4a1619f4d36f53fec1380c4c143761309387cda4a0d75a4c0bd067cc1c3b9"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test avro-simple.0.1) || true"))
The following actions will be performed:
=== recompile 1 package
  - recompile avro-simple        0.1 (pinned)
=== install 12 packages
  - install   alcotest           1.9.1        [required by avro-simple]
  - install   astring            0.8.5        [required by alcotest]
  - install   fmt                0.11.0       [required by alcotest]
  - install   ocaml-syntax-shims 1.0.0        [required by alcotest]
  - install   ounit2             2.2.7        [required by qcheck-ounit]
  - install   qcheck             0.27         [required by avro-simple]
  - install   qcheck-core        0.27         [required by qcheck]
  - install   qcheck-ounit       0.27         [required by qcheck]
  - install   re                 1.14.0       [required by alcotest]
  - install   seq                base         [required by ounit2]
  - install   stdlib-shims       0.3.0        [required by alcotest]
  - install   uutf               1.0.4        [required by alcotest]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved alcotest.1.9.1  (https://opam.ocaml.org/cache)
-> retrieved astring.0.8.5  (https://opam.ocaml.org/cache)
-> retrieved fmt.0.11.0  (https://opam.ocaml.org/cache)
-> retrieved ocaml-syntax-shims.1.0.0  (https://opam.ocaml.org/cache)
-> retrieved ounit2.2.2.7  (https://opam.ocaml.org/cache)
-> retrieved qcheck.0.27, qcheck-core.0.27, qcheck-ounit.0.27  (https://opam.ocaml.org/cache)
-> retrieved re.1.14.0  (https://opam.ocaml.org/cache)
-> retrieved seq.base  (2 extra sources)
-> retrieved seq.base  (2 extra sources)
-> installed seq.base
-> retrieved stdlib-shims.0.3.0  (https://opam.ocaml.org/cache)
-> retrieved uutf.1.0.4  (https://opam.ocaml.org/cache)
-> installed ocaml-syntax-shims.1.0.0
-> installed stdlib-shims.0.3.0
-> installed fmt.0.11.0
-> installed astring.0.8.5
-> installed re.1.14.0
-> installed qcheck-core.0.27
-> removed   avro-simple.0.1
-> installed uutf.1.0.4
-> installed ounit2.2.2.7
-> installed qcheck-ounit.0.27
-> installed qcheck.0.27
-> installed alcotest.1.9.1
-> installed avro-simple.0.1
Done.
# To update the current shell environment, run: eval $(opam env)
2025-11-19 07:57.22 ---> saved as "401dba934c64ec2ac05f6f87483413022e4fe1f0c0be6437d9f55a19139415ba"

/home/opam: (run (shell  "opam reinstall --with-test --verbose avro-simple.0.1;\
                        \n        res=$?;\
                        \n        test \"$res\" != 31 && exit \"$res\";\
                        \n        export OPAMCLI=2.0;\
                        \n        build_dir=$(opam var prefix)/.opam-switch/build;\
                        \n        failed=$(ls \"$build_dir\");\
                        \n        partial_fails=\"\";\
                        \n        for pkg in $failed; do\
                        \n          if opam show -f x-ci-accept-failures: \"$pkg\" | grep -qF \"\\\"ubuntu-22.04\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'avro-simple.0.1' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
The following actions will be performed:
=== recompile 1 package
  - recompile avro-simple 0.1 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  2/4: [avro-simple: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "avro-simple" "-j" "71" "@install" "@runtest" (CWD=/home/opam/.opam/5.4/.opam-switch/build/avro-simple.0.1)
- (cd _build/default/test && ./test_complex_types.exe)
- Testing `Complex Types'.
- This run has ID `C2GWVPHV'.
- 
-   [OK]          arrays          0   array.
-   [OK]          arrays          1   empty array.
-   [OK]          maps            0   single entry.
-   [OK]          maps            1   multiple entries.
-   [OK]          maps            2   empty map.
-   [OK]          unions          0   option some.
-   [OK]          unions          1   option none.
- 
- Full test results in `~/.opam/5.4/.opam-switch/build/avro-simple.0.1/_build/default/test/_build/_tests/Complex Types'.
- Test Successful in 0.001s. 7 tests run.
- (cd _build/default/test && ./test_schema_aliases.exe)
- Testing `Schema Aliases'.
- This run has ID `TQQKR197'.
- 
-   [OK]          enum aliases            0   renamed enum type.
-   [OK]          enum aliases            1   enum with namespace alias.
-   [OK]          enum aliases            2   enum without alias fails.
-   [OK]          fixed aliases           0   renamed fixed type.
-   [OK]          fixed aliases           1   wrong size fails even with alias.
-   [OK]          record aliases          0   renamed record type.
-   [OK]          record aliases          1   multiple record aliases.
-   [OK]          field aliases           0   renamed field.
-   [OK]          field aliases           1   multiple field aliases.
-   [OK]          field aliases           2   type and field aliases together.
- 
- Full test results in `~/.opam/5.4/.opam-switch/build/avro-simple.0.1/_build/default/test/_build/_tests/Schema Aliases'.
- Test Successful in 0.001s. 10 tests run.
- (cd _build/default/test && ./test_schema_validation.exe)
- Testing `Schema Validation'.
- This run has ID `4Z0DHGQP'.
- 
-   [OK]          valid schemas            0   primitives.
-   [OK]          valid schemas            1   array.
-   [OK]          valid schemas            2   map.
-   [OK]          valid schemas            3   union.
-   [OK]          valid schemas            4   record.
-   [OK]          valid schemas            5   enum.
-   [OK]          valid schemas            6   fixed.
-   [OK]          valid schemas            7   enum reuse.
-   [OK]          invalid schemas          0   union single branch.
-   [OK]          invalid schemas          1   union nested.
-   [OK]          invalid schemas          2   union duplicate types.
-   [OK]          invalid schemas          3   union duplicate named types.
-   [OK]          invalid schemas          4   record no fields.
-   [OK]          invalid schemas          5   record duplicate fields.
-   [OK]          invalid schemas          6   record bad field name.
-   [OK]          invalid schemas          7   enum no symbols.
-   [OK]          invalid schemas          8   enum duplicate symbols.
-   [OK]          invalid schemas          9   enum bad symbol name.
-   [OK]          invalid schemas         10   fixed zero size.
-   [OK]          invalid schemas         11   fixed negative size.
-   [OK]          invalid schemas         12   name redefinition allowed for re...
-   [OK]          invalid schemas         13   name redefinition nested.
- 
- Full test results in `~/.opam/5.4/.opam-switch/build/avro-simple.0.1/_build/default/test/_build/_tests/Schema Validation'.
- Test Successful in 0.002s. 22 tests run.
- (cd _build/default/test && ./test_compression.exe)
- Testing `Compression'.
- This run has ID `K281ZA6N'.
- 
-   [OK]          registry                 0   list codecs.
-   [OK]          registry                 1   get null codec.
-   [OK]          registry                 2   get deflate codec.
-   [OK]          registry                 3   get unknown codec.
-   [OK]          null codec               0   roundtrip.
-   [OK]          deflate codec            0   roundtrip.
-   [OK]          deflate codec            1   compresses data.
-   [SKIP]        optional codecs          0   zstandard roundtrip.
-   [SKIP]        optional codecs          1   snappy roundtrip.
-   [OK]          custom codecs            0   registration.
- 
- Full test results in `~/.opam/5.4/.opam-switch/build/avro-simple.0.1/_build/default/test/_build/_tests/Compression'.
- Test Successful in 0.002s. 8 tests run.
- (cd _build/default/test && ./test_roundtrip.exe)
- Testing `Schema Evolution Roundtrip'.
- This run has ID `3PPINUFA'.
- 
-   [OK]          type promotions          0   int to long.
-   [OK]          type promotions          1   int to double.
-   [OK]          type promotions          2   float to double.
-   [OK]          arrays                   0   array int to long.
-   [OK]          maps                     0   map int to double.
-   [OK]          records                  0   remove field.
-   [OK]          records                  1   add optional field.
-   [OK]          records                  2   nested promotion.
-   [OK]          unions                   0   non-union to union.
-   [OK]          unions                   1   union with promotion.
- 
- Full test results in `~/.opam/5.4/.opam-switch/build/avro-simple.0.1/_build/default/test/_build/_tests/Schema Evolution Roundtrip'.
- Test Successful in 0.001s. 10 tests run.
- (cd _build/default/test && ./test_records.exe)
- Testing `Records'.
- This run has ID `C4893R62'.
- 
-   [OK]          simple records           0   roundtrip.
-   [OK]          simple records           1   schema.
-   [OK]          simple records           2   single field.
-   [OK]          optional fields          0   with Some values.
-   [OK]          optional fields          1   with None values.
-   [OK]          complex records          0   various types.
-   [OK]          complex records          1   with arrays.
-   [OK]          nested records           0   simple nested.
-   [OK]          nested records           1   deeply nested.
-   [OK]          nested records           2   optional nested Some.
-   [OK]          nested records           3   optional nested None.
-   [OK]          nested records           4   array of records.
-   [OK]          nested records           5   map of records.
- 
- Full test results in `~/.opam/5.4/.opam-switch/build/avro-simple.0.1/_build/default/test/_build/_tests/Records'.
- Test Successful in 0.001s. 13 tests run.
- (cd _build/default/test && ./test_schema_evolution.exe)
- Testing `Schema Evolution'.
- This run has ID `O3QO2YFN'.
- 
-   [OK]          primitives            0   null to null.
-   [OK]          primitives            1   boolean to boolean.
-   [OK]          primitives            2   int to int.
-   [OK]          primitives            3   string to string.
-   [OK]          promotions            0   int to long.
-   [OK]          promotions            1   int to float.
-   [OK]          promotions            2   int to double.
-   [OK]          promotions            3   long to float.
-   [OK]          promotions            4   long to double.
-   [OK]          promotions            5   float to double.
-   [OK]          string/bytes          0   string to bytes.
-   [OK]          string/bytes          1   bytes to string.
-   [OK]          incompatible          0   int to string fails.
-   [OK]          incompatible          1   long to int fails.
-   [OK]          incompatible          2   double to float fails.
-   [OK]          arrays                0   array int to int.
-   [OK]          arrays                1   array int promotes to long.
-   [OK]          arrays                2   array incompatible fails.
-   [OK]          maps                  0   map string to string.
-   [OK]          maps                  1   map int promotes to long.
-   [OK]          fixed                 0   same size.
-   [OK]          fixed                 1   different size fails.
-   [OK]          records               0   same fields.
-   [OK]          records               1   add optional field.
-   [OK]          records               2   remove field.
-   [OK]          records               3   missing required field fails.
-   [OK]          records               4   field type promotion.
-   [OK]          enums                 0   same symbols.
-   [OK]          enums                 1   reordered symbols.
-   [OK]          enums                 2   missing symbol fails.
-   [OK]          enums                 3   default symbol.
-   [OK]          unions                0   same branches.
-   [OK]          unions                1   reordered branches.
-   [OK]          unions                2   non-union to union.
-   [OK]          unions                3   non-union to union with promotion.
-   [OK]          unions                4   missing branch fails.
- 
- Full test results in `~/.opam/5.4/.opam-switch/build/avro-simple.0.1/_build/default/test/_build/_tests/Schema Evolution'.
- Test Successful in 0.002s. 36 tests run.
- (cd _build/default/test && ./test_recursive.exe)
- Testing `Recursive Types'.
- This run has ID `3U93OR1D'.
- 
-   [OK]          linked list          0   empty list.
-   [OK]          linked list          1   single node.
-   [OK]          linked list          2   multiple nodes.
-   [OK]          linked list          3   roundtrip various lengths.
-   [OK]          linked list          4   container file.
-   [OK]          binary tree          0   empty tree.
-   [OK]          binary tree          1   single node.
-   [OK]          binary tree          2   balanced tree.
-   [OK]          binary tree          3   deep tree.
- 
- Full test results in `~/.opam/5.4/.opam-switch/build/avro-simple.0.1/_build/default/test/_build/_tests/Recursive Types'.
- Test Successful in 0.001s. 9 tests run.
- (cd _build/default/test && ./test_schema_json.exe)
- Testing `Schema JSON'.
- This run has ID `6A3FH758'.
- 
-   [OK]          primitives             0   null.
-   [OK]          primitives             1   boolean.
-   [OK]          primitives             2   int.
-   [OK]          primitives             3   long.
-   [OK]          primitives             4   float.
-   [OK]          primitives             5   double.
-   [OK]          primitives             6   bytes.
-   [OK]          primitives             7   string.
-   [OK]          primitives             8   object form.
-   [OK]          complex types          0   array.
-   [OK]          complex types          1   map.
-   [OK]          complex types          2   union.
-   [OK]          complex types          3   empty union.
-   [OK]          records                0   simple record.
-   [OK]          records                1   record with namespace.
-   [OK]          records                2   record with doc.
-   [OK]          records                3   record with field defaults.
-   [OK]          enums                  0   simple enum.
-   [OK]          enums                  1   enum with namespace.
-   [OK]          enums                  2   enum with default.
-   [OK]          fixed                  0   simple fixed.
-   [OK]          fixed                  1   fixed with namespace.
-   [OK]          nested                 0   complex nested.
-   [OK]          roundtrip              0   simple roundtrip.
-   [OK]          roundtrip              1   enum roundtrip.
-   [OK]          canonical              0   canonical form.
- 
- Full test results in `~/.opam/5.4/.opam-switch/build/avro-simple.0.1/_build/default/test/_build/_tests/Schema JSON'.
- Test Successful in 0.002s. 26 tests run.
- (cd _build/default/test && ./test_primitives.exe)
- Testing `Primitives'.
- This run has ID `5WTY2FPU'.
- 
-   [OK]          null             0   roundtrip.
-   [OK]          null             1   encoding.
-   [OK]          boolean          0   true.
-   [OK]          boolean          1   false.
-   [OK]          boolean          2   encoding.
-   [OK]          int              0   zero.
-   [OK]          int              1   positive.
-   [OK]          int              2   negative.
-   [OK]          int              3   boundaries.
-   [OK]          int              4   zigzag encoding.
-   [OK]          long             0   zero.
-   [OK]          long             1   positive.
-   [OK]          long             2   negative.
-   [OK]          long             3   boundaries.
-   [OK]          long             4   zigzag encoding.
-   [OK]          float            0   zero.
-   [OK]          float            1   positive.
-   [OK]          float            2   negative.
-   [OK]          float            3   special values.
-   [OK]          float            4   nan.
-   [OK]          double           0   zero.
-   [OK]          double           1   positive.
-   [OK]          double           2   negative.
-   [OK]          double           3   special values.
-   [OK]          double           4   nan.
-   [OK]          bytes            0   empty.
-   [OK]          bytes            1   short.
-   [OK]          bytes            2   long.
-   [OK]          bytes            3   binary.
-   [OK]          string           0   empty.
-   [OK]          string           1   ascii.
-   [OK]          string           2   unicode.
-   [OK]          string           3   long.
-   [OK]          string           4   special chars.
-   [OK]          string           5   encoding.
-   [OK]          fixed            0   4 bytes.
-   [OK]          fixed            1   16 bytes (UUID).
-   [OK]          fixed            2   encoding.
-   [OK]          fixed            3   size mismatch.
- 
- Full test results in `~/.opam/5.4/.opam-switch/build/avro-simple.0.1/_build/default/test/_build/_tests/Primitives'.
- Test Successful in 0.003s. 39 tests run.
- (cd _build/default/test && ./test_logical_types.exe)
- Testing `Logical Types'.
- This run has ID `PLJXQT4R'.
- 
-   [OK]          date                           0   epoch.
-   [OK]          date                           1   recent.
-   [OK]          date                           2   pre-epoch.
-   [OK]          date                           3   leap year.
-   [OK]          time-millis                    0   midnight.
-   [OK]          time-millis                    1   noon.
-   [OK]          time-micros                    0   midnight.
-   [OK]          time-micros                    1   precise.
-   [OK]          timestamps                     0   timestamp-millis epoch.
-   [OK]          timestamps                     1   timestamp-millis now.
-   [OK]          timestamps                     2   timestamp-micros epoch.
-   [OK]          timestamps                     3   timestamp-micros precise.
-   [OK]          decimal                        0   zero.
-   [OK]          decimal                        1   positive.
-   [OK]          decimal                        2   negative.
-   [OK]          decimal                        3   large.
-   [OK]          decimal-fixed                  0   positive.
-   [OK]          decimal-fixed                  1   negative.
-   [OK]          uuid                           0   roundtrip.
-   [OK]          uuid                           1   nil.
-   [OK]          duration                       0   zero.
-   [OK]          duration                       1   normal.
-   [OK]          duration                       2   large.
-   [OK]          custom                         0   money-cents.
-   [OK]          container integration          0   uuid in container.
-   [OK]          container integration          1   date in container.
- 
- Full test results in `~/.opam/5.4/.opam-switch/build/avro-simple.0.1/_build/default/test/_build/_tests/Logical Types'.
- Test Successful in 0.002s. 26 tests run.
- (cd _build/default/test && ./test_container.exe)
- Testing `Container Files'.
- This run has ID `XKFW7ONK'.
- 
-   [OK]          basic                  0   int roundtrip.
-   [OK]          basic                  1   string roundtrip.
-   [OK]          basic                  2   write block.
-   [OK]          complex types          0   array roundtrip.
-   [OK]          complex types          1   record roundtrip.
-   [OK]          iteration              0   iter.
-   [OK]          iteration              1   sequence.
-   [OK]          metadata               0   custom metadata.
-   [OK]          performance            0   large dataset.
- 
- Full test results in `~/.opam/5.4/.opam-switch/build/avro-simple.0.1/_build/default/test/_build/_tests/Container Files'.
- Test Successful in 0.004s. 9 tests run.
- (cd _build/default/test && ./test_qcheck_properties.exe)
- random seed: 12345
- ================================================================================
- success (ran 18 tests)
-> compiled  avro-simple.0.1
-> removed   avro-simple.0.1
-> installed avro-simple.0.1
Done.
# To update the current shell environment, run: eval $(opam env)
2025-11-19 07:58.04 ---> saved as "48f34c1080d46cffe950cee41ec679db8441dd6c373592d1a49938f005ac0758"
Job succeeded
2025-11-19 07:58.10: Job succeeded