Build:
- 0
2025-08-04 21:07.51: New job: test tyxml-jsx.4.6.0 with reason.3.17.0, using opam 2.3 from https://github.com/ocaml/opam-repository.git#refs/pull/28287/head (981f1b8b66c46cf4ad3fdd579eb3a572a57a2d02) on debian-12-ocaml-4.14/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/28287/head" && git reset --hard 981f1b8b git fetch origin master git merge --no-edit 3dab8c734b15bf2b5c1d8b99bb134f51361a6bee cat > ../Dockerfile <<'END-OF-DOCKERFILE' FROM ocaml/opam:debian-12-ocaml-4.14@sha256:b3b4d6d5643af6178c2c7da1f4185223f562d83280904781325cdf5798986a63 USER 1000:1000 WORKDIR /home/opam RUN sudo ln -f /usr/bin/opam-2.3 /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 reason.3.17.0 3.17.0 RUN opam reinstall reason.3.17.0; \ 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 "\"debian-12\""; then \ echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \ fi; \ test "$pkg" != 'reason.3.17.0' && partial_fails="$partial_fails $pkg"; \ done; \ test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \ exit 1 RUN opam reinstall tyxml-jsx.4.6.0; \ 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 "\"debian-12\""; then \ echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \ fi; \ test "$pkg" != 'tyxml-jsx.4.6.0' && 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 tyxml-jsx.4.6.0) || true RUN opam reinstall --with-test --verbose tyxml-jsx.4.6.0; \ 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 "\"debian-12\""; then \ echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \ fi; \ test "$pkg" != 'tyxml-jsx.4.6.0' && 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-08-04 21:07.51: Using cache hint "ocaml/opam:debian-12-ocaml-4.14@sha256:b3b4d6d5643af6178c2c7da1f4185223f562d83280904781325cdf5798986a63-reason.3.17.0-tyxml-jsx.4.6.0-981f1b8b66c46cf4ad3fdd579eb3a572a57a2d02" 2025-08-04 21:07.51: Using OBuilder spec: ((from ocaml/opam:debian-12-ocaml-4.14@sha256:b3b4d6d5643af6178c2c7da1f4185223f562d83280904781325cdf5798986a63) (user (uid 1000) (gid 1000)) (workdir /home/opam) (run (shell "sudo ln -f /usr/bin/opam-2.3 /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 reason.3.17.0 3.17.0")) (run (cache (opam-archives (target /home/opam/.opam/download-cache))) (network host) (shell "opam reinstall reason.3.17.0;\ \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 \"\\\"debian-12\\\"\"; then\ \n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\ \n fi;\ \n test \"$pkg\" != 'reason.3.17.0' && partial_fails=\"$partial_fails $pkg\";\ \n done;\ \n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\ \n exit 1")) (run (cache (opam-archives (target /home/opam/.opam/download-cache))) (network host) (shell "opam reinstall tyxml-jsx.4.6.0;\ \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 \"\\\"debian-12\\\"\"; then\ \n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\ \n fi;\ \n test \"$pkg\" != 'tyxml-jsx.4.6.0' && 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 tyxml-jsx.4.6.0) || true")) (run (shell "opam reinstall --with-test --verbose tyxml-jsx.4.6.0;\ \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 \"\\\"debian-12\\\"\"; then\ \n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\ \n fi;\ \n test \"$pkg\" != 'tyxml-jsx.4.6.0' && partial_fails=\"$partial_fails $pkg\";\ \n done;\ \n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\ \n exit 1")) ) 2025-08-04 21:07.51: Waiting for resource in pool OCluster 2025-08-04 21:07.51: Waiting for worker… 2025-08-04 21:07.51: Got resource from pool OCluster Building on odawa.caelum.ci.dev All commits already cached HEAD is now at 3dab8c734b Merge pull request #28295 from kit-ty-kate/opam-2.4.1-no-avoid-version Merge made by the 'ort' strategy. packages/reason/reason.3.17.0/opam | 50 ++++++++++++++++++++++++++++++++++++++ packages/rtop/rtop.3.17.0/opam | 43 ++++++++++++++++++++++++++++++++ 2 files changed, 93 insertions(+) create mode 100644 packages/reason/reason.3.17.0/opam create mode 100644 packages/rtop/rtop.3.17.0/opam (from ocaml/opam:debian-12-ocaml-4.14@sha256:b3b4d6d5643af6178c2c7da1f4185223f562d83280904781325cdf5798986a63) Unable to find image 'ocaml/opam:debian-12-ocaml-4.14@sha256:b3b4d6d5643af6178c2c7da1f4185223f562d83280904781325cdf5798986a63' locally docker.io/ocaml/opam@sha256:b3b4d6d5643af6178c2c7da1f4185223f562d83280904781325cdf5798986a63: Pulling from ocaml/opam a77c4f4a24ac: Already exists 9d1a03aa3c71: Pulling fs layer baba434270f2: Pulling fs layer 2a8a0f93626e: Pulling fs layer f6ba2ed01176: Pulling fs layer 9d1a03aa3c71: Waiting 2a8a0f93626e: Waiting f6ba2ed01176: Waiting 9d1a03aa3c71: Verifying Checksum 9d1a03aa3c71: Download complete baba434270f2: Verifying Checksum baba434270f2: Download complete 2a8a0f93626e: Verifying Checksum 2a8a0f93626e: Download complete f6ba2ed01176: Download complete 9d1a03aa3c71: Pull complete baba434270f2: Pull complete 2a8a0f93626e: Pull complete f6ba2ed01176: Pull complete Digest: sha256:b3b4d6d5643af6178c2c7da1f4185223f562d83280904781325cdf5798986a63 Status: Downloaded newer image for ocaml/opam@sha256:b3b4d6d5643af6178c2c7da1f4185223f562d83280904781325cdf5798986a63 2025-08-04 21:09.12 ---> saved as "7f53aba96fd697ea92c7c7d3f6be48133fa7f3f6538a693606c4cbcecd7917b8" /: (user (uid 1000) (gid 1000)) /: (workdir /home/opam) /home/opam: (run (shell "sudo ln -f /usr/bin/opam-2.3 /usr/bin/opam")) 2025-08-04 21:09.12 ---> saved as "e4ec4ab2139d3c4a94c2b5470fe84288e4986c518ff4f4ae2d7c7e30aeac0731" /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 development 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 [NOTE] The 'jobs' option was reset, its value was 71 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=71 --global Format upgrade done. <><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><> [default] Initialised 2025-08-04 21:09.33 ---> saved as "707659fd6393183061072104f3ce800d69d94ba93e0f39ab380130268d0ee81e" /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.3.0 (35acd0c5abc5e66cdbd5be16ba77aa6c33a4c724) # self-upgrade no # system arch=x86_64 os=linux os-distribution=debian os-version=12 # solver builtin-0install # install-criteria -changed,-count[avoid-version,solution] # upgrade-criteria -count[avoid-version,solution] # jobs 255 # repositories 1 (version-controlled) # pinned 1 (version) # current-switch 4.14 # invariant ["ocaml-base-compiler" {= "4.14.2"}] # compiler-packages ocaml-base-compiler.4.14.2, ocaml-options-vanilla.1 # ocaml:native true # ocaml:native-tools true # ocaml:native-dynlink true # ocaml:stubsdir /home/opam/.opam/4.14/lib/ocaml/stublibs:/home/opam/.opam/4.14/lib/ocaml # ocaml:preinstalled false # ocaml:compiler 4.14.2 2025-08-04 21:09.33 ---> saved as "3ec3067d40f73cc0ec4554b242939c55b0261973e091b54a647662451dc49933" /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-08-04 21:09.46 ---> saved as "376e3b49c8c08cb1ff0d45feb403c06e037d8df5800c560fdd8dd472f1e36b9a" /home/opam: (copy (src .) (dst opam-repository/)) 2025-08-04 21:09.54 ---> saved as "fb379f7ef5abc591c5785512005be9b78173bd8366accc1d79fc9741ce4c7c3e" /home/opam: (run (shell "opam repository set-url --strict default opam-repository/")) [default] Initialised 2025-08-04 21:10.10 ---> saved as "d8de713830f0e66f595cccd35d760ed146aa505e46c68b7852643892330f4810" /home/opam: (run (network host) (shell "opam update --depexts || true")) + /usr/bin/sudo "apt-get" "update" - Hit:1 http://deb.debian.org/debian bookworm InRelease - Get:2 http://deb.debian.org/debian bookworm-updates InRelease [55.4 kB] - Get:3 http://deb.debian.org/debian-security bookworm-security InRelease [48.0 kB] - Get:4 http://deb.debian.org/debian bookworm-updates/main amd64 Packages.diff/Index [19.6 kB] - Ign:4 http://deb.debian.org/debian bookworm-updates/main amd64 Packages.diff/Index - Get:5 http://deb.debian.org/debian bookworm-updates/main amd64 Packages [6916 B] - Get:6 http://deb.debian.org/debian-security bookworm-security/main amd64 Packages [272 kB] - Fetched 402 kB in 0s (864 kB/s) - Reading package lists... 2025-08-04 21:10.11 ---> saved as "987ef13b7f47eabdb5d81291f34c8eff95232c44747f51d5c8809214735c8f9f" /home/opam: (run (shell "opam pin add -k version -yn reason.3.17.0 3.17.0")) reason is now pinned to version 3.17.0 2025-08-04 21:10.12 ---> saved as "de9bf7e3e50d750f1a04be58bb063a57a2af514b86cd57fb84b4415105e6a089" /home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache))) (network host) (shell "opam reinstall reason.3.17.0;\ \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 \"\\\"debian-12\\\"\"; then\ \n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\ \n fi;\ \n test \"$pkg\" != 'reason.3.17.0' && partial_fails=\"$partial_fails $pkg\";\ \n done;\ \n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\ \n exit 1")) reason.3.17.0 is not installed. Install it? [y/n] y The following actions will be performed: === install 17 packages - install cmdliner 1.3.0 [required by reason] - install cppo 1.8.0 [required by reason] - install dune 3.19.1 [required by reason] - install dune-build-info 3.19.1 [required by reason] - install fix 20250428 [required by reason] - install menhir 20240715 [required by reason] - install menhirCST 20240715 [required by menhir] - install menhirLib 20240715 [required by menhir] - install menhirSdk 20240715 [required by menhir] - install merlin-extend 0.6.2 [required by reason] - install ocaml-compiler-libs v0.12.4 [required by ppxlib] - install ocamlfind 1.9.8 [required by reason] - install ppx_derivers 1.2.1 [required by ppxlib] - install ppxlib 0.36.0 [required by reason] - install reason 3.17.0 (pinned) - install sexplib0 v0.17.0 [required by ppxlib] - install stdlib-shims 0.3.0 [required by ppxlib] <><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><> -> retrieved cmdliner.1.3.0 (cached) -> retrieved cppo.1.8.0 (cached) -> retrieved dune.3.19.1, dune-build-info.3.19.1 (cached) -> retrieved fix.20250428 (cached) -> retrieved menhir.20240715, menhirCST.20240715, menhirLib.20240715, menhirSdk.20240715 (cached) -> retrieved merlin-extend.0.6.2 (cached) -> retrieved ocaml-compiler-libs.v0.12.4 (cached) -> retrieved ocamlfind.1.9.8 (cached) -> retrieved ppx_derivers.1.2.1 (cached) -> installed cmdliner.1.3.0 -> retrieved ppxlib.0.36.0 (cached) -> retrieved reason.3.17.0 (cached) -> retrieved sexplib0.v0.17.0 (cached) -> retrieved stdlib-shims.0.3.0 (cached) -> installed ocamlfind.1.9.8 -> installed dune.3.19.1 -> installed cppo.1.8.0 -> installed menhirCST.20240715 -> installed ppx_derivers.1.2.1 -> installed fix.20250428 -> installed stdlib-shims.0.3.0 -> installed merlin-extend.0.6.2 -> installed menhirSdk.20240715 -> installed sexplib0.v0.17.0 -> installed menhirLib.20240715 -> installed dune-build-info.3.19.1 -> installed ocaml-compiler-libs.v0.12.4 -> installed menhir.20240715 -> installed ppxlib.0.36.0 -> installed reason.3.17.0 Done. # To update the current shell environment, run: eval $(opam env) 2025-08-04 21:10.58 ---> saved as "87856b2de86d7f23927132066196a0a8ef83f3ae64dbf62b248ac8afd7639e27" /home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache))) (network host) (shell "opam reinstall tyxml-jsx.4.6.0;\ \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 \"\\\"debian-12\\\"\"; then\ \n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\ \n fi;\ \n test \"$pkg\" != 'tyxml-jsx.4.6.0' && partial_fails=\"$partial_fails $pkg\";\ \n done;\ \n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\ \n exit 1")) tyxml-jsx.4.6.0 is not installed. Install it? [y/n] y The following actions will be performed: === install 8 packages - install ocamlbuild 0.16.1 [required by uutf] - install re 1.13.2 [required by tyxml, tyxml-syntax] - install seq base [required by tyxml] - install topkg 1.1.0 [required by uutf] - install tyxml 4.6.0 [required by tyxml-jsx] - install tyxml-jsx 4.6.0 - install tyxml-syntax 4.6.0 [required by tyxml-jsx] - install uutf 1.0.4 [required by tyxml, tyxml-syntax] <><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><> -> retrieved ocamlbuild.0.16.1 (cached) -> retrieved re.1.13.2 (cached) -> retrieved seq.base (cached) -> installed seq.base -> retrieved topkg.1.1.0 (cached) -> retrieved tyxml.4.6.0, tyxml-jsx.4.6.0, tyxml-syntax.4.6.0 (cached) -> retrieved uutf.1.0.4 (cached) -> installed re.1.13.2 -> installed ocamlbuild.0.16.1 -> installed topkg.1.1.0 -> installed uutf.1.0.4 -> installed tyxml.4.6.0 -> installed tyxml-syntax.4.6.0 -> installed tyxml-jsx.4.6.0 Done. # To update the current shell environment, run: eval $(opam env) 2025-08-04 21:11.14 ---> saved as "c5d76939340b5f01b0218fb2095bdbd55c4a6919ec1fb518e0124cd155fee467" /home/opam: (run (network host) (shell "(opam reinstall --with-test tyxml-jsx.4.6.0) || true")) The following actions will be performed: === recompile 1 package - recompile tyxml-jsx 4.6.0 === install 4 packages - install alcotest 1.9.0 [required by tyxml-jsx] - 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] <><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><> -> retrieved alcotest.1.9.0 (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 tyxml-jsx.4.6.0 (https://opam.ocaml.org/cache) -> installed ocaml-syntax-shims.1.0.0 -> installed fmt.0.11.0 -> removed tyxml-jsx.4.6.0 -> installed astring.0.8.5 -> installed alcotest.1.9.0 -> installed tyxml-jsx.4.6.0 Done. # To update the current shell environment, run: eval $(opam env) 2025-08-04 21:11.22 ---> saved as "8fcecb7ee3ad45f0752473720564d3924f8d80584539abd012d5c822a69cc63b" /home/opam: (run (shell "opam reinstall --with-test --verbose tyxml-jsx.4.6.0;\ \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 \"\\\"debian-12\\\"\"; then\ \n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\ \n fi;\ \n test \"$pkg\" != 'tyxml-jsx.4.6.0' && 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 tyxml-jsx 4.6.0 <><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><> Processing 1/4: [tyxml-jsx.4.6.0: extract] -> retrieved tyxml-jsx.4.6.0 (cached) Processing 2/4: [tyxml-jsx: dune build] + /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "tyxml-jsx" "-j" "255" "@install" "@runtest" (CWD=/home/opam/.opam/4.14/.opam-switch/build/tyxml-jsx.4.6.0) - (cd _build/default/examples/basic_website_jsx && ./site_html.exe) - Generating: index.html - (cd _build/default/test && ./test_jsx.exe) - Testing `tyxml-jsx'. - This run has ID `TR09WZV7'. - - [OK] ppx basics 0 elems. - [OK] ppx basics 1 child. - [OK] ppx basics 2 list. - [OK] ppx basics 3 attrib. - [OK] ppx basics 4 attribs. - [OK] ppx basics 5 txt. - [OK] ppx basics 6 document. - [OK] ppx basics 7 let. - [OK] ppx basics 8 nested let. - [OK] ppx basics 9 let and. - [OK] ppx basics 10 let fun. - [OK] ppx basics 11 let fun spread. - [OK] ppx attribs 0 unit. - [OK] ppx attribs 1 bool default. - [OK] ppx attribs 2 bool true. - [OK] ppx attribs 3 bool false. - [OK] ppx attribs 4 form autocomplete default is on. - [OK] ppx attribs 5 form autocomplete on. - [OK] ppx attribs 6 form autocomplete off. - [OK] ppx attribs 7 form autocomplete tokenlist. - [OK] ppx attribs 8 form autocomplete tokenlist em... - [OK] ppx attribs 9 input autocomplete default is on. - [OK] ppx attribs 10 input autocomplete on. - [OK] ppx attribs 11 input autocomplete off. - [OK] ppx attribs 12 input autocomplete tokenlist. - [OK] ppx attribs 13 input autocomplete tokenlist e... - [OK] ppx attribs 14 link rel=canonical. - [OK] ppx attribs 15 embed type. - [OK] ppx attribs 16 output for. - [OK] ppx attribs 17 input min time. - [OK] ppx attribs 18 aria attributes. - [OK] ppx attribs 19 touch events. - [OK] ppx attribs 20 empty string as referrer policy. - [OK] ppx attribs 21 dashes in referrer policy. - [OK] ppx attribs 22 script type=module. - [OK] ppx attribs 23 script type=mime. - [OK] ppx attribs 24 camel-case data attribs. - [OK] ppx attribs 25 kebab-case data attribs. - [OK] ppx attribs 26 kebab-case data attribs, again. - [OK] ppx attribs 27 arbitrary (unchecked) attribut... - [OK] ppx attribs 28 arbitrary (unchecked) attribut... - [OK] namespace nesting 0 html/svg. - [OK] namespace nesting 1 nested svg. - [OK] namespace nesting 2 with_neighbour. - [OK] namespace nesting 3 ambiguous tag. - [OK] ppx antiquot 0 child. - [OK] ppx antiquot 1 list child. - [OK] ppx antiquot 2 insertion. - [OK] ppx antiquot 3 attrib. - [OK] ppx antiquot 4 wrapped functions. - [OK] svg 0 basic. - [OK] svg 1 transform. - [OK] svg 2 offset percentage. - [OK] svg 3 text x, y. - [OK] svg 4 text dx, dy. - [OK] svg 5 feColorMatrix type. - [OK] svg 6 feTurbulence type. - [OK] svg 7 animateTransform type. - [OK] svg 8 feFuncR type, offset. - [OK] svg 9 feComposite operator. - [OK] svg 10 feMorphology operator. - [OK] svg 11 animate fill, values. - [OK] svg 12 fill_rule nonzero. - [OK] svg 13 fill_rule evenodd. - [OK] svg element names 0 textPath. - [OK] svg element names 1 linearGradient. - [OK] svg element names 2 radialGradient. - [OK] svg element names 3 clipPath. - [OK] svg element names 4 feDistantLight. - [OK] svg element names 5 fePointLight. - [OK] svg element names 6 feSpotLight. - [OK] svg element names 7 feBlend. - [OK] svg element names 8 feColorMatrix. - [OK] svg element names 9 feComponentTransfer. - [OK] svg element names 10 feFuncA. - [OK] svg element names 11 feFuncG. - [OK] svg element names 12 feFuncB. - [OK] svg element names 13 feFuncR. - [OK] svg element names 14 feComposite. - [OK] svg element names 15 feConvolveMatrix. - [OK] svg element names 16 feDiffuseLighting. - [OK] svg element names 17 feDisplacementMap. - [OK] svg element names 18 feFlood. - [OK] svg element names 19 feGaussianBlur. - [OK] svg element names 20 feImage. - [OK] svg element names 21 feMerge. - [OK] svg element names 22 feMorphology. - [OK] svg element names 23 feOffset. - [OK] svg element names 24 feSpecularLighting. - [OK] svg element names 25 feTile. - [OK] svg element names 26 feTurbulence. - [OK] svg element names 27 animateMotion. - [OK] svg element names 28 animateColor. - [OK] svg element names 29 animateTransform. - [OK] wrapping 0 elem. - [OK] wrapping 1 child. - [OK] wrapping 2 list. - [OK] wrapping 3 attrib. - [OK] wrapping 4 attribs. - [OK] wrapping 5 txt. - [OK] wrapping 6 wrapped functions. - [OK] jsx basics 0 enable jsx. - - Full test results in `~/.opam/4.14/.opam-switch/build/tyxml-jsx.4.6.0/_build/default/test/_build/_tests/tyxml-jsx'. - Test Successful in 0.006s. 102 tests run. -> compiled tyxml-jsx.4.6.0 -> removed tyxml-jsx.4.6.0 -> installed tyxml-jsx.4.6.0 Done. # To update the current shell environment, run: eval $(opam env) 2025-08-04 21:11.28 ---> saved as "87666fc536e0177334e46fd008240d778b2f30e5f67497f7a3d1036e67e8b13b" Job succeeded 2025-08-04 21:11.31: Job succeeded