(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 freebsd-14.3-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 freebsd-14.3-ocaml-5.4
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/local/bin/opam-dev /usr/local/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 "\"freebsd-14.3\""; 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 "\"freebsd-14.3\""; 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 "freebsd-14.3-ocaml-5.4-avro-simple.0.1-bcff42d37dd17cc61f533b42262cc67e654385dd"
2025-11-19 07:54.45: Using OBuilder spec:
((from freebsd-14.3-ocaml-5.4)
(user (uid 1000) (gid 1000))
(workdir /home/opam)
(run (shell "sudo ln -f /usr/local/bin/opam-dev /usr/local/bin/opam"))
(run (network host)
(shell "opam init --reinit -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 \"\\\"freebsd-14.3\\\"\"; 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 \"\\\"freebsd-14.3\\\"\"; 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.45: Got resource from pool OCluster
Building on rosemary
All commits already cached
Updating files: 100% (18778/18778), done.
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 freebsd-14.3-ocaml-5.4)
2025-11-19 07:54.34 ---> using "463e9b939b79b2568bf98b05cff00f85b3ec5717170cf88773a44ae3b08f11e7" from cache
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/local/bin/opam-dev /usr/local/bin/opam"))
2025-11-19 07:54.34 ---> using "0f4f38cca0f09ffdac905c0015fdbe56f9214c89e28a28ae3325cd6eed47fd99" from cache
/home/opam: (run (network host)
(shell "opam init --reinit -ni"))
No configuration file found, using 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.1 to version 2.2, which can't be reverted.
You may want to back it up before going further.
Continue? [Y/n] y
[NOTE] The 'jobs' option was reset, its value was 1 and its new value will vary according to the current number of cores on your machine. You can restore the fixed value using:
opam option jobs=1 --global
Format upgrade done.
<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] no changes from git+file:///home/opam/opam-repository
2025-11-19 07:54.34 ---> using "430d75e95f6be08ef0776e6e6bb864bc698709d5f7d071fd7fbbf37d0a8617d5" 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.4.1
# self-upgrade no
# system arch=x86_64 os=freebsd os-distribution=freebsd os-version=1403000
# solver builtin-0install
# install-criteria -changed,-count[avoid-version,solution]
# upgrade-criteria -count[avoid-version,solution]
# jobs 39
# repositories 1 (version-controlled)
# pinned 0
# current-switch 5.4.0
# invariant ["ocaml-base-compiler" {= "5.4.0"} | "ocaml-system" {= "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.0/lib/ocaml/stublibs:/home/opam/.opam/5.4.0/lib/ocaml
# ocaml:preinstalled false
# ocaml:compiler 5.4.0
2025-11-19 07:54.35 ---> using "8a5a57fecc1d42886ddc4a5b75b36583eef8196838ccdc1bf870bc7798f6f185" 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:54.35 ---> using "5d57b5e6a2b42d2aa72fb2cc8558fd5735263edde7f2032c7588b729f1b1565f" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2025-11-19 07:54.41 ---> saved as "42707c7bcaa225e9d958b10d2d6a68c65bab082e40c610d5d5bd772c654e82e1"
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-11-19 07:54.54 ---> saved as "4e9f91911f6dfe95679db982cf233d37caaccc5ec318a03c67cf8ce9eb9d8156"
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
[WARNING] Unknown update command for bsd, skipping system update
2025-11-19 07:54.55 ---> saved as "f2520fe59a95dff6c1805952266d443dadaaa0339f031757a9808f3b0e280c89"
/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:54.55 ---> saved as "e625a9343dadc28f8b0e0c4e584b1b01a2a3dd95c57879769ef8f31d7b7b8d6d"
/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 \"\\\"freebsd-14.3\\\"\"; 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
∗ avro-simple 0.1 (pinned)
∗ bigstringaf 0.10.0 [required by avro-simple]
∗ checkseum 0.5.2 [required by decompress]
∗ cmdliner 2.0.0 [required by decompress, uuidm]
∗ conf-gmp 5 [required by zarith]
∗ conf-pkg-config 4 [required by zarith]
∗ csexp 1.5.2 [required by dune-configurator]
∗ decompress 1.5.3 [required by avro-simple]
∗ dune 3.20.2 [required by avro-simple]
∗ dune-configurator 3.20.2 [required by bigstringaf]
∗ ocamlbuild 0.16.1 [required by uuidm]
∗ ocamlfind 1.9.8 [required by uuidm, zarith]
∗ optint 0.3.0 [required by decompress]
∗ topkg 1.1.1 [required by uuidm]
∗ uuidm 0.9.10 [required by avro-simple]
∗ yojson 3.0.0 [required by avro-simple]
∗ zarith 1.14 [required by avro-simple]
The following system packages will first need to be installed:
gmp
<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>
opam believes some required external dependencies are missing. opam can:
> 1. Run pkg to install them (may need root/sudo access)
2. Display the recommended pkg 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/local/bin/sudo "pkg" "install" "-y" "gmp"
- Updating FreeBSD repository catalogue...
- [rosemary] Fetching data.pkg:
- ....
- ...... done
- Processing entries:
- ...
- ..
- ...
- .
- . done
- FreeBSD repository update completed. 36623 packages processed.
- Updating FreeBSD-kmods repository catalogue...
- [rosemary] Fetching data.pkg: .. done
- Processing entries: .......... done
- FreeBSD-kmods repository update completed. 213 packages processed.
- All repositories are up to date.
- New version of pkg detected; it needs to be installed first.
- The following 1 package(s) will be affected (of 0 checked):
-
- Installed packages to be UPGRADED:
- pkg: 2.3.1 -> 2.4.2 [FreeBSD]
-
- Number of packages to be upgraded: 1
-
- 12 MiB to be downloaded.
- [rosemary] [1/1] Fetching pkg-2.4.2.pkg:
- ..
- ....
- ..
- .
- . done
- Checking integrity... done (0 conflicting)
- [rosemary] [1/1] Upgrading pkg from 2.3.1 to 2.4.2...
- [rosemary] [1/1] Extracting pkg-2.4.2: .......... done
- Updating FreeBSD repository catalogue...
- FreeBSD repository is up to date.
- Updating FreeBSD-kmods repository catalogue...
- FreeBSD-kmods repository is up to date.
- All repositories are up to date.
- The following 1 package(s) will be affected (of 0 checked):
-
- New packages to be INSTALLED:
- gmp: 6.3.0 [FreeBSD]
-
- Number of packages to be installed: 1
-
- The process will require 3 MiB more space.
- 500 KiB to be downloaded.
- [rosemary] [1/1] Fetching gmp-6.3.0.pkg: .......... done
- Checking integrity... done (0 conflicting)
- [rosemary] [1/1] Installing gmp-6.3.0...
- [rosemary] [1/1] Extracting gmp-6.3.0: .......... done
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
⬇ retrieved avro-simple.0.1 (https://github.com/tmcgilchrist/ocaml-avro/releases/download/0.1/avro-simple-0.1.tbz)
⬇ 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)
⬇ retrieved topkg.1.1.1 (cached)
⬇ retrieved uuidm.0.9.10 (cached)
⬇ retrieved yojson.3.0.0 (cached)
⬇ retrieved zarith.1.14 (cached)
∗ installed cmdliner.2.0.0
∗ installed ocamlfind.1.9.8
∗ installed zarith.1.14
∗ installed ocamlbuild.0.16.1
∗ installed topkg.1.1.1
∗ installed uuidm.0.9.10
∗ installed dune.3.20.2
∗ installed csexp.1.5.2
∗ installed yojson.3.0.0
∗ installed optint.0.3.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.
2025-11-19 07:55.55 ---> saved as "c178e45553829276ed3c1e2c79bf9253dc65739dc9c31bf892d640454c4e60ad"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test avro-simple.0.1) || true"))
The following actions will be performed:
=== recompile 1 package
↻ avro-simple 0.1 (pinned)
=== install 12 packages
∗ alcotest 1.9.1 [required by avro-simple]
∗ astring 0.8.5 [required by alcotest]
∗ fmt 0.11.0 [required by alcotest]
∗ ocaml-syntax-shims 1.0.0 [required by alcotest]
∗ ounit2 2.2.7 [required by qcheck-ounit]
∗ qcheck 0.27 [required by avro-simple]
∗ qcheck-core 0.27 [required by qcheck]
∗ qcheck-ounit 0.27 [required by qcheck]
∗ re 1.14.0 [required by alcotest]
∗ seq base [required by ounit2]
∗ stdlib-shims 0.3.0 [required by alcotest]
∗ uutf 1.0.4 [required by alcotest]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
⬇ retrieved alcotest.1.9.1 (https://github.com/mirage/alcotest/releases/download/1.9.1/alcotest-1.9.1.tbz)
⬇ retrieved astring.0.8.5 (https://erratique.ch/software/astring/releases/astring-0.8.5.tbz)
⬇ retrieved fmt.0.11.0 (https://erratique.ch/software/fmt/releases/fmt-0.11.0.tbz)
⬇ retrieved ocaml-syntax-shims.1.0.0 (https://github.com/ocaml-ppx/ocaml-syntax-shims/releases/download/1.0.0/ocaml-syntax-shims-1.0.0.tbz)
⬇ retrieved ounit2.2.2.7 (https://github.com/gildor478/ounit/releases/download/v2.2.7/ounit-2.2.7.tbz)
∗ installed ocaml-syntax-shims.1.0.0
⬇ retrieved qcheck.0.27, qcheck-core.0.27, qcheck-ounit.0.27 (https://github.com/c-cube/qcheck/archive/v0.27.tar.gz)
∗ installed fmt.0.11.0
⬇ retrieved re.1.14.0 (https://github.com/ocaml/ocaml-re/archive/refs/tags/1.14.0.tar.gz)
⬇ retrieved seq.base (2 extra sources)
⬇ retrieved seq.base (2 extra sources)
∗ installed seq.base
∗ installed astring.0.8.5
⬇ retrieved stdlib-shims.0.3.0 (https://github.com/ocaml/stdlib-shims/releases/download/0.3.0/stdlib-shims-0.3.0.tbz)
⬇ retrieved uutf.1.0.4 (https://erratique.ch/software/uutf/releases/uutf-1.0.4.tbz)
∗ installed stdlib-shims.0.3.0
∗ installed qcheck-core.0.27
∗ installed re.1.14.0
⊘ 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.
2025-11-19 07:56.41 ---> saved as "6d6c48ae0fc04665ef049c64941134b44b2952b8df4877ecac13291f0715316e"
/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 \"\\\"freebsd-14.3\\\"\"; 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
↻ avro-simple 0.1 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 2/4: [avro-simple: dune build]
+ /home/opam/.opam/5.4.0/bin/dune "build" "-p" "avro-simple" "-j" "39" "@install" "@runtest" (CWD=/home/opam/.opam/5.4.0/.opam-switch/build/avro-simple.0.1)
- (cd _build/default/test && ./test_complex_types.exe)
- Testing `Complex Types'.
- This run has ID `8EAE97O2'.
-
- [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.0/.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 `N1307P8P'.
-
- [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.0/.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_compression.exe)
- Testing `Compression'.
- This run has ID `67NODWT2'.
-
- [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.0/.opam-switch/build/avro-simple.0.1/_build/default/test/_build/_tests/Compression'.
- Test Successful in 0.003s. 8 tests run.
- (cd _build/default/test && ./test_roundtrip.exe)
- Testing `Schema Evolution Roundtrip'.
- This run has ID `PDCWK5FB'.
-
- [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.0/.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_schema_validation.exe)
- Testing `Schema Validation'.
- This run has ID `2CDPJSUV'.
-
- [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.0/.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_recursive.exe)
- Testing `Recursive Types'.
- This run has ID `WLAOLTF5'.
-
- [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.0/.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 `ZBBF3AH2'.
-
- [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.0/.opam-switch/build/avro-simple.0.1/_build/default/test/_build/_tests/Schema JSON'.
- Test Successful in 0.003s. 26 tests run.
- (cd _build/default/test && ./test_schema_evolution.exe)
- Testing `Schema Evolution'.
- This run has ID `HMZJORQI'.
-
- [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.0/.opam-switch/build/avro-simple.0.1/_build/default/test/_build/_tests/Schema Evolution'.
- Test Successful in 0.003s. 36 tests run.
- (cd _build/default/test && ./test_container.exe)
- Testing `Container Files'.
- This run has ID `TUBU4RG8'.
-
- [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.0/.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_records.exe)
- Testing `Records'.
- This run has ID `77S8M4JM'.
-
- [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.0/.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_primitives.exe)
- Testing `Primitives'.
- This run has ID `5QRSF1OZ'.
-
- [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.0/.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 `FV8KPK6K'.
-
- [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.0/.opam-switch/build/avro-simple.0.1/_build/default/test/_build/_tests/Logical Types'.
- Test Successful in 0.003s. 26 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.
2025-11-19 07:57.23 ---> saved as "376411ed777db5019fe1f8149b3f01f8ac59b959ebc3db25bcfcf8faf8e7fbdb"
Job succeeded
2025-11-19 07:57.51: Job succeeded