2025-12-14 10:17.23: New job: test ocaml-gospel/ortac https://github.com/ocaml-gospel/ortac.git#refs/heads/main (2a9ae8418ab85f8ac2df934448bd83e35a64cdfa) (linux-x86_64:(lower-bound)) Base: ocaml/opam:debian-13-ocaml-4.12@sha256:f4e5d1a1459039645b2cd047ecc298c512b1871b1cec960a002338d6496d2c7a Opam project build To reproduce locally: git clone --recursive "https://github.com/ocaml-gospel/ortac.git" -b "main" && cd "ortac" && git reset --hard 2a9ae841 cat > Dockerfile <<'END-OF-DOCKERFILE' FROM ocaml/opam:debian-13-ocaml-4.12@sha256:f4e5d1a1459039645b2cd047ecc298c512b1871b1cec960a002338d6496d2c7a # debian-13-4.12_opam-2.4 USER 1000:1000 ENV CLICOLOR_FORCE="1" ENV OPAMCOLOR="always" WORKDIR /src RUN sudo ln -f /usr/bin/opam-2.4 /usr/bin/opam RUN opam init --reinit -ni RUN uname -rs && opam exec -- ocaml -version && opam --version WORKDIR /src RUN sudo chown opam /src RUN cd ~/opam-repository && (git cat-file -e e4bdfa6ec85336d4142dbbc3538534d9704fabeb || git fetch origin master) && git reset -q --hard e4bdfa6ec85336d4142dbbc3538534d9704fabeb && git log --no-decorate -n1 --oneline && opam update -u COPY --chown=1000:1000 ortac-wrapper.opam ortac-runtime.opam ortac-runtime-qcheck-stm.opam ortac-runtime-monolith.opam ortac-qcheck-stm.opam ortac-monolith.opam ortac-examples.opam ortac-dune.opam ortac-core.opam ./ RUN opam pin add -yn ortac-wrapper.dev './' && \ opam pin add -yn ortac-runtime.dev './' && \ opam pin add -yn ortac-runtime-qcheck-stm.dev './' && \ opam pin add -yn ortac-runtime-monolith.dev './' && \ opam pin add -yn ortac-qcheck-stm.dev './' && \ opam pin add -yn ortac-monolith.dev './' && \ opam pin add -yn ortac-examples.dev './' && \ opam pin add -yn ortac-dune.dev './' && \ opam pin add -yn ortac-core.dev './' RUN echo '(lang dune 3.0)' > './dune-project' ENV DEPS="afl-persistent.1.3 alcotest.1.0.1 astring.0.8.5 base-bigarray.base base-bytes.base base-threads.base base-unix.base camlp-streams.5.0.1 cmdliner.1.3.0 conf-gmp.5 conf-m4.1 conf-perl.1 cppo.1.6.1 csexp.1.5.1 dune.3.12.1 dune-build-info.2.9.3 dune-private-libs.3.15.3 dune-site.3.15.3 dyn.3.15.3 fmt.0.9.0 gospel.dev jbuilder.1.0+beta20.1 logs.0.7.0 mdx.2.3.0 menhir.20181006 monolith.20201026 ocaml.4.12.1 ocaml-base-compiler.4.12.1 ocaml-compiler-libs.v0.12.0 ocaml-config.2 ocaml-options-vanilla.1 ocaml-version.3.5.0 ocamlbuild.0.14.0 ocamlfind.1.8.1 odoc-parser.1.0.1 ordering.3.15.3 pp.1.2.0 pp_loc.2.1.0 pprint.20200410 ppx_derivers.1.0 ppx_deriving.6.1.0 ppxlib.0.37.0 qcheck-core.0.25 qcheck-multicoretests-util.0.8 qcheck-stm.0.8 re.1.7.2 result.1.5 seq.0.3 sexplib0.v0.12.0 stdlib-shims.0.1.0 stdune.3.15.3 topkg.1.0.8 uuidm.0.9.7 zarith.1.7-1" ENV CI="true" ENV OCAMLCI="true" RUN opam update --depexts && opam install --cli=2.4 --depext-only -y ortac-wrapper.dev ortac-runtime.dev ortac-runtime-qcheck-stm.dev ortac-runtime-monolith.dev ortac-qcheck-stm.dev ortac-monolith.dev ortac-dune.dev ortac-core.dev $DEPS RUN opam install $DEPS COPY --chown=1000:1000 . /src RUN opam exec -- dune build --only-packages=ortac-wrapper,ortac-runtime,ortac-runtime-qcheck-stm,ortac-runtime-monolith,ortac-qcheck-stm,ortac-monolith,ortac-dune,ortac-core @install @check @runtest && rm -rf _build END-OF-DOCKERFILE docker build . END-REPRO-BLOCK 2025-12-14 10:17.23: Using cache hint "ocaml-gospel/ortac-ocaml/opam:debian-13-ocaml-4.12@sha256:f4e5d1a1459039645b2cd047ecc298c512b1871b1cec960a002338d6496d2c7a-debian-13-4.12_opam-2.4-bdd3ff1f7db207da33a9417cb7eef4c9" 2025-12-14 10:17.23: Using OBuilder spec: ((from ocaml/opam:debian-13-ocaml-4.12@sha256:f4e5d1a1459039645b2cd047ecc298c512b1871b1cec960a002338d6496d2c7a) (comment debian-13-4.12_opam-2.4) (user (uid 1000) (gid 1000)) (env CLICOLOR_FORCE 1) (env OPAMCOLOR always) (workdir /src) (run (shell "sudo ln -f /usr/bin/opam-2.4 /usr/bin/opam")) (run (shell "opam init --reinit -ni")) (run (shell "uname -rs && opam exec -- ocaml -version && opam --version")) (workdir /src) (run (shell "sudo chown opam /src")) (run (cache (opam-archives (target /home/opam/.opam/download-cache))) (network host) (shell "cd ~/opam-repository && (git cat-file -e e4bdfa6ec85336d4142dbbc3538534d9704fabeb || git fetch origin master) && git reset -q --hard e4bdfa6ec85336d4142dbbc3538534d9704fabeb && git log --no-decorate -n1 --oneline && opam update -u")) (copy (src ortac-wrapper.opam ortac-runtime.opam ortac-runtime-qcheck-stm.opam ortac-runtime-monolith.opam ortac-qcheck-stm.opam ortac-monolith.opam ortac-examples.opam ortac-dune.opam ortac-core.opam) (dst ./)) (run (network host) (shell "opam pin add -yn ortac-wrapper.dev './' && \ \nopam pin add -yn ortac-runtime.dev './' && \ \nopam pin add -yn ortac-runtime-qcheck-stm.dev './' && \ \nopam pin add -yn ortac-runtime-monolith.dev './' && \ \nopam pin add -yn ortac-qcheck-stm.dev './' && \ \nopam pin add -yn ortac-monolith.dev './' && \ \nopam pin add -yn ortac-examples.dev './' && \ \nopam pin add -yn ortac-dune.dev './' && \ \nopam pin add -yn ortac-core.dev './'")) (run (network host) (shell "echo '(lang dune 3.0)' > './dune-project'")) (env DEPS "afl-persistent.1.3 alcotest.1.0.1 astring.0.8.5 base-bigarray.base base-bytes.base base-threads.base base-unix.base camlp-streams.5.0.1 cmdliner.1.3.0 conf-gmp.5 conf-m4.1 conf-perl.1 cppo.1.6.1 csexp.1.5.1 dune.3.12.1 dune-build-info.2.9.3 dune-private-libs.3.15.3 dune-site.3.15.3 dyn.3.15.3 fmt.0.9.0 gospel.dev jbuilder.1.0+beta20.1 logs.0.7.0 mdx.2.3.0 menhir.20181006 monolith.20201026 ocaml.4.12.1 ocaml-base-compiler.4.12.1 ocaml-compiler-libs.v0.12.0 ocaml-config.2 ocaml-options-vanilla.1 ocaml-version.3.5.0 ocamlbuild.0.14.0 ocamlfind.1.8.1 odoc-parser.1.0.1 ordering.3.15.3 pp.1.2.0 pp_loc.2.1.0 pprint.20200410 ppx_derivers.1.0 ppx_deriving.6.1.0 ppxlib.0.37.0 qcheck-core.0.25 qcheck-multicoretests-util.0.8 qcheck-stm.0.8 re.1.7.2 result.1.5 seq.0.3 sexplib0.v0.12.0 stdlib-shims.0.1.0 stdune.3.15.3 topkg.1.0.8 uuidm.0.9.7 zarith.1.7-1") (env CI true) (env OCAMLCI true) (run (cache (opam-archives (target /home/opam/.opam/download-cache))) (network host) (shell "opam update --depexts && opam install --cli=2.4 --depext-only -y ortac-wrapper.dev ortac-runtime.dev ortac-runtime-qcheck-stm.dev ortac-runtime-monolith.dev ortac-qcheck-stm.dev ortac-monolith.dev ortac-dune.dev ortac-core.dev $DEPS")) (run (cache (opam-archives (target /home/opam/.opam/download-cache))) (network host) (shell "opam install $DEPS")) (copy (src .) (dst /src)) (run (shell "opam exec -- dune build --only-packages=ortac-wrapper,ortac-runtime,ortac-runtime-qcheck-stm,ortac-runtime-monolith,ortac-qcheck-stm,ortac-monolith,ortac-dune,ortac-core @install @check @runtest && rm -rf _build")) ) 2025-12-14 10:17.23: Waiting for resource in pool OCluster 2025-12-14 12:12.23: Waiting for worker… 2025-12-14 12:16.01: Got resource from pool OCluster Building on toxis.caelum.ci.dev All commits already cached HEAD is now at 2a9ae84 Merge pull request #368 from n-osborne/documentation-frequencies (from ocaml/opam:debian-13-ocaml-4.12@sha256:f4e5d1a1459039645b2cd047ecc298c512b1871b1cec960a002338d6496d2c7a) Unable to find image 'ocaml/opam:debian-13-ocaml-4.12@sha256:f4e5d1a1459039645b2cd047ecc298c512b1871b1cec960a002338d6496d2c7a' locally docker.io/ocaml/opam@sha256:f4e5d1a1459039645b2cd047ecc298c512b1871b1cec960a002338d6496d2c7a: Pulling from ocaml/opam 2981f7e8980b: Already exists 9c63e1c4ba84: Already exists 02578b9c9f1b: Already exists 3801cb7ba5e6: Already exists 1c4cdedd39f1: Already exists 40f6006c5f5a: Already exists c451a17216ec: Already exists e4104b8f72ee: Already exists 7c7dbc5e7919: Already exists aa82be714e7c: Already exists 922520f12384: Already exists 9bfea042cef8: Already exists 1244979f7c21: Already exists 7583a0e34f94: Already exists 14bef3f2665a: Already exists 3a4b42ce6cb5: Already exists b0a08a900877: Already exists b0a08a900877: Already exists 16ac87e68d60: Already exists 74ac6e8c9b82: Already exists b41290a57dc5: Already exists 592e5bcb7159: Already exists 4f4fb700ef54: Already exists 1db0705661a3: Already exists 76bb8e35b9cc: Already exists 3bc9d98c3b49: Already exists 7096ef42e6c0: Already exists cd0e70de8125: Already exists 23ffab57f98e: Already exists b974353d8023: Already exists c74fba566723: Already exists 5ad399846f45: Already exists 3e7203fa3980: Already exists 0b8915d2a92b: Already exists e68c7a56c438: Already exists 9024d680a167: Already exists 3c7c73421b6e: Already exists 7134fa9b4278: Pulling fs layer 9d94fb523099: Pulling fs layer 20d06dbdae7e: Pulling fs layer b9a45e537661: Pulling fs layer 2ede2ddc2495: Pulling fs layer 90618cb27e55: Pulling fs layer f8c1ae88daf6: Pulling fs layer 4afa8689ae83: Pulling fs layer 4afa8689ae83: Waiting 9d94fb523099: Download complete 20d06dbdae7e: Download complete b9a45e537661: Download complete 90618cb27e55: Verifying Checksum 90618cb27e55: Download complete f8c1ae88daf6: Verifying Checksum f8c1ae88daf6: Download complete 4afa8689ae83: Verifying Checksum 4afa8689ae83: Download complete 2ede2ddc2495: Verifying Checksum 2ede2ddc2495: Download complete 7134fa9b4278: Pull complete 9d94fb523099: Pull complete 20d06dbdae7e: Pull complete b9a45e537661: Pull complete 2ede2ddc2495: Pull complete 90618cb27e55: Pull complete f8c1ae88daf6: Pull complete 4afa8689ae83: Pull complete Digest: sha256:f4e5d1a1459039645b2cd047ecc298c512b1871b1cec960a002338d6496d2c7a Status: Downloaded newer image for ocaml/opam@sha256:f4e5d1a1459039645b2cd047ecc298c512b1871b1cec960a002338d6496d2c7a 2025-12-14 12:16.02 ---> using "c6b8ba26269bede3ec915c3d1cb4e21bf07ca291d8c3b0f2ea655411615b77d4" from cache /: (comment debian-13-4.12_opam-2.4) /: (user (uid 1000) (gid 1000)) /: (env CLICOLOR_FORCE 1) /: (env OPAMCOLOR always) /: (workdir /src) /src: (run (shell "sudo ln -f /usr/bin/opam-2.4 /usr/bin/opam")) 2025-12-14 12:16.02 ---> using "c0cd2fba0907a86cc9c71cce10bb7cc29b16f68887950186a401f764b04c8a9f" from cache /src: (run (shell "opam init --reinit -ni")) Configuring from /home/opam/.opamrc and then 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-12-14 12:16.02 ---> using "590049f02a82e80407a427e2cfcf2e26906769ff1e957f1efdf5f3a9b2f7a5df" from cache /src: (run (shell "uname -rs && opam exec -- ocaml -version && opam --version")) Linux 5.15.0-134-generic The OCaml toplevel, version 4.12.1 2.4.1 2025-12-14 12:16.02 ---> using "2af5ea08c29e1a57ede610a50d11b6b301633761e4da5911c50e04c9a1dda605" from cache /src: (workdir /src) /src: (run (shell "sudo chown opam /src")) 2025-12-14 12:16.02 ---> using "d5191a541b526edc4ea871760fd03a8d0d9cfef81b82a0b7c87c4ded07af167f" from cache /src: (run (cache (opam-archives (target /home/opam/.opam/download-cache))) (network host) (shell "cd ~/opam-repository && (git cat-file -e e4bdfa6ec85336d4142dbbc3538534d9704fabeb || git fetch origin master) && git reset -q --hard e4bdfa6ec85336d4142dbbc3538534d9704fabeb && git log --no-decorate -n1 --oneline && opam update -u")) e4bdfa6ec8 Merge pull request #29045 from dkalinichenko-js/janestreet-package-maintanence-intent <><> Updating package repositories ><><><><><><><><><><><><><><><><><><><><><><> [default] synchronised from git+file:///home/opam/opam-repository Everything as up-to-date as possible (run with --verbose to show unavailable upgrades). However, you may "opam upgrade" these packages explicitly at these versions (e.g. "opam upgrade ocaml.5.4.0"), which will ask permission to downgrade or uninstall the conflicting packages. Nothing to do. # To update the current shell environment, run: eval $(opam env) 2025-12-14 12:16.02 ---> using "ece6a3ad99b6fde55438acfbe83579aa73b69a9fc3ea1e60a51d0b3beb92b742" from cache /src: (copy (src ortac-wrapper.opam ortac-runtime.opam ortac-runtime-qcheck-stm.opam ortac-runtime-monolith.opam ortac-qcheck-stm.opam ortac-monolith.opam ortac-examples.opam ortac-dune.opam ortac-core.opam) (dst ./)) 2025-12-14 12:16.02 ---> using "271bfafe693798469842d79c9da1f9576227a1870f0004f4a5660f0fa18b44d1" from cache /src: (run (network host) (shell "opam pin add -yn ortac-wrapper.dev './' && \ \nopam pin add -yn ortac-runtime.dev './' && \ \nopam pin add -yn ortac-runtime-qcheck-stm.dev './' && \ \nopam pin add -yn ortac-runtime-monolith.dev './' && \ \nopam pin add -yn ortac-qcheck-stm.dev './' && \ \nopam pin add -yn ortac-monolith.dev './' && \ \nopam pin add -yn ortac-examples.dev './' && \ \nopam pin add -yn ortac-dune.dev './' && \ \nopam pin add -yn ortac-core.dev './'")) [ortac-wrapper.dev] synchronised (file:///src) The following additional pinnings are required by ortac-wrapper.dev: - gospel.dev at git+https://github.com/ocaml-gospel/gospel#c17ae6b808f11192f42009e2837f9c3c9e829eb3 Pin and install them? [Y/n] y [gospel.dev] synchronised (no changes) gospel is now pinned to git+https://github.com/ocaml-gospel/gospel#c17ae6b808f11192f42009e2837f9c3c9e829eb3 (version dev) ortac-wrapper is now pinned to file:///src (version dev) [ortac-runtime.dev] synchronised (file:///src) ortac-runtime is now pinned to file:///src (version dev) [ortac-runtime-qcheck-stm.dev] synchronised (file:///src) ortac-runtime-qcheck-stm is now pinned to file:///src (version dev) [NOTE] Package ortac-runtime-monolith does not exist in opam repositories registered in the current switch. [ortac-runtime-monolith.dev] synchronised (file:///src) ortac-runtime-monolith is now pinned to file:///src (version dev) [ortac-qcheck-stm.dev] synchronised (file:///src) ortac-qcheck-stm is now pinned to file:///src (version dev) [NOTE] Package ortac-monolith does not exist in opam repositories registered in the current switch. [ortac-monolith.dev] synchronised (file:///src) ortac-monolith is now pinned to file:///src (version dev) [NOTE] Package ortac-examples does not exist in opam repositories registered in the current switch. [ortac-examples.dev] synchronised (file:///src) ortac-examples is now pinned to file:///src (version dev) [ortac-dune.dev] synchronised (file:///src) ortac-dune is now pinned to file:///src (version dev) [ortac-core.dev] synchronised (file:///src) ortac-core is now pinned to file:///src (version dev) 2025-12-14 12:16.25 ---> saved as "d465e3d533f88cf248a60a0987b3b08692cbcc7175140b8e47326f096ba84e8a" /src: (run (network host) (shell "echo '(lang dune 3.0)' > './dune-project'")) 2025-12-14 12:16.26 ---> saved as "2e5319b966fd143b35f735d21413b9a0133034e1337edd572e10a07dc40d4669" /src: (env DEPS "afl-persistent.1.3 alcotest.1.0.1 astring.0.8.5 base-bigarray.base base-bytes.base base-threads.base base-unix.base camlp-streams.5.0.1 cmdliner.1.3.0 conf-gmp.5 conf-m4.1 conf-perl.1 cppo.1.6.1 csexp.1.5.1 dune.3.12.1 dune-build-info.2.9.3 dune-private-libs.3.15.3 dune-site.3.15.3 dyn.3.15.3 fmt.0.9.0 gospel.dev jbuilder.1.0+beta20.1 logs.0.7.0 mdx.2.3.0 menhir.20181006 monolith.20201026 ocaml.4.12.1 ocaml-base-compiler.4.12.1 ocaml-compiler-libs.v0.12.0 ocaml-config.2 ocaml-options-vanilla.1 ocaml-version.3.5.0 ocamlbuild.0.14.0 ocamlfind.1.8.1 odoc-parser.1.0.1 ordering.3.15.3 pp.1.2.0 pp_loc.2.1.0 pprint.20200410 ppx_derivers.1.0 ppx_deriving.6.1.0 ppxlib.0.37.0 qcheck-core.0.25 qcheck-multicoretests-util.0.8 qcheck-stm.0.8 re.1.7.2 result.1.5 seq.0.3 sexplib0.v0.12.0 stdlib-shims.0.1.0 stdune.3.15.3 topkg.1.0.8 uuidm.0.9.7 zarith.1.7-1") /src: (env CI true) /src: (env OCAMLCI true) /src: (run (cache (opam-archives (target /home/opam/.opam/download-cache))) (network host) (shell "opam update --depexts && opam install --cli=2.4 --depext-only -y ortac-wrapper.dev ortac-runtime.dev ortac-runtime-qcheck-stm.dev ortac-runtime-monolith.dev ortac-qcheck-stm.dev ortac-monolith.dev ortac-dune.dev ortac-core.dev $DEPS")) + /usr/bin/sudo "apt-get" "update" - Hit:1 http://deb.debian.org/debian trixie InRelease - Get:2 http://deb.debian.org/debian trixie-updates InRelease [47.3 kB] - Get:3 http://deb.debian.org/debian-security trixie-security InRelease [43.4 kB] - Get:4 http://deb.debian.org/debian-security trixie-security/main amd64 Packages [82.1 kB] - Fetched 173 kB in 0s (1497 kB/s) - Reading package lists... - <><> Synchronising pinned packages ><><><><><><><><><><><><><><><><><><><><><><> [ortac-core.dev] synchronised (file:///src) [ortac-dune.dev] synchronised (file:///src) [ortac-monolith.dev] synchronised (file:///src) [ortac-qcheck-stm.dev] synchronised (file:///src) [ortac-runtime.dev] synchronised (file:///src) [ortac-runtime-monolith.dev] synchronised (file:///src) [ortac-runtime-qcheck-stm.dev] synchronised (file:///src) [ortac-wrapper.dev] synchronised (file:///src) [ERROR] Could not synchronize /home/opam/.opam/4.12/.opam-switch/sources/gospel from "git+https://github.com/ocaml-gospel/gospel#c17ae6b808f11192f42009e2837f9c3c9e829eb3": "/usr/bin/git fetch -q" exited with code 1 "error: https://github.com/ocaml-gospel/gospel did not send all necessary objects" [gospel.dev] fetching sources failed: git+https://github.com/ocaml-gospel/gospel#c17ae6b808f11192f42009e2837f9c3c9e829eb3 [NOTE] Package ocaml-options-vanilla is already installed (current version is 1). [NOTE] Package ocaml-config is already installed (current version is 2). [NOTE] Package ocaml-base-compiler is already installed (current version is 4.12.1). [NOTE] Package ocaml is already installed (current version is 4.12.1). [NOTE] Package base-unix is already installed (current version is base). [NOTE] Package base-threads is already installed (current version is base). [NOTE] Package base-bigarray is already installed (current version is base). The following system packages will first need to be installed: libgmp-dev m4 <><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><> + /usr/bin/sudo "apt-get" "install" "-qq" "-yy" "libgmp-dev" "m4" - Selecting previously unselected package libgmpxx4ldbl: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 ... 20622 files and directories currently installed.) - Preparing to unpack .../libgmpxx4ldbl_2%3a6.3.0+dfsg-3_amd64.deb ... - Unpacking libgmpxx4ldbl:amd64 (2:6.3.0+dfsg-3) ... - Selecting previously unselected package libgmp-dev:amd64. - Preparing to unpack .../libgmp-dev_2%3a6.3.0+dfsg-3_amd64.deb ... - Unpacking libgmp-dev:amd64 (2:6.3.0+dfsg-3) ... - Selecting previously unselected package m4. - Preparing to unpack .../archives/m4_1.4.19-8_amd64.deb ... - Unpacking m4 (1.4.19-8) ... - Setting up m4 (1.4.19-8) ... - Setting up libgmpxx4ldbl:amd64 (2:6.3.0+dfsg-3) ... - Setting up libgmp-dev:amd64 (2:6.3.0+dfsg-3) ... - Processing triggers for libc-bin (2.41-12) ... 2025-12-14 12:16.53 ---> saved as "86d4760178eb68736e3d6915504e9fa1122fd62dc804136c78e151a82c74d8d4" /src: (run (cache (opam-archives (target /home/opam/.opam/download-cache))) (network host) (shell "opam install $DEPS")) <><> Synchronising pinned packages ><><><><><><><><><><><><><><><><><><><><><><> [ERROR] Could not synchronize /home/opam/.opam/4.12/.opam-switch/sources/gospel from "git+https://github.com/ocaml-gospel/gospel#c17ae6b808f11192f42009e2837f9c3c9e829eb3": "/usr/bin/git fetch -q" exited with code 1 "error: https://github.com/ocaml-gospel/gospel did not send all necessary objects" [gospel.dev] fetching sources failed: git+https://github.com/ocaml-gospel/gospel#c17ae6b808f11192f42009e2837f9c3c9e829eb3 [NOTE] Package ocaml-options-vanilla is already installed (current version is 1). [NOTE] Package ocaml-config is already installed (current version is 2). [NOTE] Package ocaml-base-compiler is already installed (current version is 4.12.1). [NOTE] Package ocaml is already installed (current version is 4.12.1). [NOTE] Package base-unix is already installed (current version is base). [NOTE] Package base-threads is already installed (current version is base). [NOTE] Package base-bigarray is already installed (current version is base). The following actions will be performed: === install 47 packages - install afl-persistent 1.3 - install alcotest 1.0.1 - install astring 0.8.5 - install base-bytes base - install camlp-streams 5.0.1 - install cmdliner 1.3.0 - install conf-gmp 5 - install conf-m4 1 - install conf-perl 1 - install cppo 1.6.1 - install csexp 1.5.1 - install dune 3.12.1 - install dune-build-info 2.9.3 - install dune-private-libs 3.15.3 - install dune-site 3.15.3 - install dyn 3.15.3 - install fmt 0.9.0 - install gospel dev (pinned) - install jbuilder 1.0+beta20.1 (deprecated) - install logs 0.7.0 - install mdx 2.3.0 - install menhir 20181006 - install monolith 20201026 - install ocaml-compiler-libs v0.12.0 - install ocaml-version 3.5.0 - install ocamlbuild 0.14.0 - install ocamlfind 1.8.1 - install odoc-parser 1.0.1 - install ordering 3.15.3 - install pp 1.2.0 - install pp_loc 2.1.0 - install pprint 20200410 - install ppx_derivers 1.0 - install ppx_deriving 6.1.0 - install ppxlib 0.37.0 - install qcheck-core 0.25 - install qcheck-multicoretests-util 0.8 - install qcheck-stm 0.8 - install re 1.7.2 - install result 1.5 - install seq 0.3 - install sexplib0 v0.12.0 - install stdlib-shims 0.1.0 - install stdune 3.15.3 - install topkg 1.0.8 - install uuidm 0.9.7 - install zarith 1.7-1 <><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><> -> retrieved afl-persistent.1.3 (cached) -> retrieved alcotest.1.0.1 (cached) -> retrieved astring.0.8.5 (cached) -> retrieved conf-gmp.5 (cached) -> retrieved camlp-streams.5.0.1 (cached) -> retrieved cmdliner.1.3.0 (cached) -> retrieved cppo.1.6.1 (cached) -> installed conf-gmp.5 -> installed conf-m4.1 -> installed conf-perl.1 -> retrieved csexp.1.5.1 (cached) -> installed afl-persistent.1.3 -> retrieved dune-build-info.2.9.3 (cached) -> retrieved dune.3.12.1 (cached) -> retrieved dune-private-libs.3.15.3, dune-site.3.15.3, dyn.3.15.3, ordering.3.15.3, stdune.3.15.3 (cached) -> retrieved fmt.0.9.0 (cached) -> retrieved jbuilder.1.0+beta20.1 (cached) -> retrieved logs.0.7.0 (cached) -> retrieved mdx.2.3.0 (cached) -> installed cmdliner.1.3.0 -> retrieved monolith.20201026 (https://opam.ocaml.org/cache) -> retrieved menhir.20181006 (cached) -> retrieved ocaml-compiler-libs.v0.12.0 (cached) -> retrieved ocaml-version.3.5.0 (cached) -> retrieved ocamlbuild.0.14.0 (cached) -> retrieved ocamlfind.1.8.1 (cached) -> retrieved odoc-parser.1.0.1 (cached) -> retrieved pp.1.2.0 (cached) -> retrieved pp_loc.2.1.0 (cached) -> retrieved pprint.20200410 (cached) -> retrieved ppx_derivers.1.0 (cached) -> retrieved ppx_deriving.6.1.0 (cached) -> retrieved qcheck-core.0.25 (cached) -> retrieved qcheck-multicoretests-util.0.8, qcheck-stm.0.8 (cached) -> retrieved re.1.7.2 (cached) -> retrieved ppxlib.0.37.0 (cached) -> retrieved result.1.5 (cached) -> retrieved sexplib0.v0.12.0 (cached) -> retrieved seq.0.3 (cached) -> retrieved stdlib-shims.0.1.0 (cached) -> retrieved uuidm.0.9.7 (cached) -> retrieved zarith.1.7-1 (cached) -> retrieved topkg.1.0.8 (cached) [ERROR] Could not synchronize /home/opam/.opam/4.12/.opam-switch/sources/gospel from "git+https://github.com/ocaml-gospel/gospel#c17ae6b808f11192f42009e2837f9c3c9e829eb3": "/usr/bin/git fetch -q" exited with code 1 "error: https://github.com/ocaml-gospel/gospel did not send all necessary objects" [ERROR] Failed to get sources of gospel.dev: git+https://github.com/ocaml-gospel/gospel#c17ae6b808f11192f42009e2837f9c3c9e829eb3 -> installed ocamlfind.1.8.1 -> installed base-bytes.base -> installed ocamlbuild.0.14.0 -> installed zarith.1.7-1 -> installed jbuilder.1.0+beta20.1 -> installed ppx_derivers.1.0 -> installed cppo.1.6.1 -> installed re.1.7.2 -> installed topkg.1.0.8 -> installed uuidm.0.9.7 -> installed fmt.0.9.0 -> installed astring.0.8.5 -> installed logs.0.7.0 -> installed dune.3.12.1 -> installed camlp-streams.5.0.1 -> installed csexp.1.5.1 -> installed dune-build-info.2.9.3 -> installed ocaml-version.3.5.0 -> installed ocaml-compiler-libs.v0.12.0 -> installed result.1.5 -> installed seq.0.3 -> installed pp.1.2.0 -> installed pp_loc.2.1.0 -> installed stdlib-shims.0.1.0 -> installed pprint.20200410 -> installed sexplib0.v0.12.0 -> installed odoc-parser.1.0.1 -> installed ordering.3.15.3 -> installed qcheck-core.0.25 -> installed alcotest.1.0.1 -> installed monolith.20201026 -> installed qcheck-multicoretests-util.0.8 -> installed dyn.3.15.3 -> installed mdx.2.3.0 -> installed qcheck-stm.0.8 -> installed stdune.3.15.3 -> installed dune-private-libs.3.15.3 -> installed dune-site.3.15.3 -> installed menhir.20181006 -> installed ppxlib.0.37.0 -> installed ppx_deriving.6.1.0 #=== ERROR while fetching sources for gospel.dev ==============================# OpamSolution.Fetch_fail("git+https://github.com/ocaml-gospel/gospel#c17ae6b808f11192f42009e2837f9c3c9e829eb3") <><> Error report <><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><> +- The following actions failed | - fetch gospel dev +- +- The following changes have been performed | - install afl-persistent 1.3 | - install alcotest 1.0.1 | - install astring 0.8.5 | - install base-bytes base | - install camlp-streams 5.0.1 | - install cmdliner 1.3.0 | - install conf-gmp 5 | - install conf-m4 1 | - install conf-perl 1 | - install cppo 1.6.1 | - install csexp 1.5.1 | - install dune 3.12.1 | - install dune-build-info 2.9.3 | - install dune-private-libs 3.15.3 | - install dune-site 3.15.3 | - install dyn 3.15.3 | - install fmt 0.9.0 | - install jbuilder 1.0+beta20.1 | - install logs 0.7.0 | - install mdx 2.3.0 | - install menhir 20181006 | - install monolith 20201026 | - install ocaml-compiler-libs v0.12.0 | - install ocaml-version 3.5.0 | - install ocamlbuild 0.14.0 | - install ocamlfind 1.8.1 | - install odoc-parser 1.0.1 | - install ordering 3.15.3 | - install pp 1.2.0 | - install pp_loc 2.1.0 | - install pprint 20200410 | - install ppx_derivers 1.0 | - install ppx_deriving 6.1.0 | - install ppxlib 0.37.0 | - install qcheck-core 0.25 | - install qcheck-multicoretests-util 0.8 | - install qcheck-stm 0.8 | - install re 1.7.2 | - install result 1.5 | - install seq 0.3 | - install sexplib0 v0.12.0 | - install stdlib-shims 0.1.0 | - install stdune 3.15.3 | - install topkg 1.0.8 | - install uuidm 0.9.7 | - install zarith 1.7-1 +- <><> jbuilder.1.0+beta20.1 installed successfully <><><><><><><><><><><><><><><> => Note: This package is deprecated. <><> afl-persistent.1.3 installed successfully ><><><><><><><><><><><><><><><><> => afl-persistent is installed, but since the current OCaml compiler does not enable AFL instrumentation by default, most packages will not be instrumented and fuzzing with afl-fuzz may not be effective. To globally enable AFL instrumentation, use an OCaml switch such as 4.07.1+afl. The former state can be restored with: /usr/bin/opam switch import "/home/opam/.opam/4.12/.opam-switch/backup/state-20251214121654.export" # To update the current shell environment, run: eval $(opam env) "/usr/bin/env" "bash" "-c" "opam install $DEPS" failed with exit status 40 2025-12-14 12:19.01: Job failed: Failed: Build failed