2025-07-02 12:16.43: New job: test ocaml-multicore/effects-examples https://github.com/ocaml-multicore/effects-examples.git#refs/heads/master (8a7e80dd29e68e2d05fe4b0399c8535a51f36395) (linux-x86_64:debian-12-5.4~alpha1_opam-2.3) Base: ocaml/opam:debian-12-ocaml-5.4-alpha1@sha256:8582773c21cedba0ee784e7abc58e4ae8e8ec1fd5bb00bd01c6d864a18a3bd77 Opam project build To reproduce locally: git clone --recursive "https://github.com/ocaml-multicore/effects-examples.git" -b "master" && cd "effects-examples" && git reset --hard 8a7e80dd cat > Dockerfile <<'END-OF-DOCKERFILE' FROM ocaml/opam:debian-12-ocaml-5.4-alpha1@sha256:8582773c21cedba0ee784e7abc58e4ae8e8ec1fd5bb00bd01c6d864a18a3bd77 # debian-12-5.4~alpha1_opam-2.3 USER 1000:1000 ENV CLICOLOR_FORCE="1" ENV OPAMCOLOR="always" WORKDIR /src RUN sudo ln -f /usr/bin/opam-2.3 /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 a28eb8a148feb4fbc6466fa0791668993513dbde || git fetch origin master) && git reset -q --hard a28eb8a148feb4fbc6466fa0791668993513dbde && git log --no-decorate -n1 --oneline && opam update -u COPY --chown=1000:1000 effects-examples.opam ./ RUN opam pin add -yn effects-examples.dev './' RUN echo '(lang dune 3.0)' > './dune-project' ENV DEPS="base-bigarray.base base-bytes.base base-domains.base base-effects.base base-nnp.base base-threads.base base-unix.base cppo.1.8.0 csexp.1.5.2 dune.3.19.1 dune-configurator.3.19.1 lwt.5.9.1 multicont.1.0.3 ocaml.5.4.0 ocaml-base-compiler.5.4.0~alpha1 ocaml-compiler.5.4.0~alpha1 ocaml-config.3 ocaml-options-vanilla.1 ocamlfind.1.9.8 ocplib-endian.1.2" ENV CI="true" ENV OCAMLCI="true" RUN opam update --depexts && opam install --cli=2.3 --depext-only -y effects-examples.dev $DEPS RUN opam install $DEPS COPY --chown=1000:1000 . /src RUN opam exec -- dune build @install @check @runtest && rm -rf _build END-OF-DOCKERFILE docker build . END-REPRO-BLOCK 2025-07-02 12:16.43: Using cache hint "ocaml-multicore/effects-examples-ocaml/opam:debian-12-ocaml-5.4-alpha1@sha256:8582773c21cedba0ee784e7abc58e4ae8e8ec1fd5bb00bd01c6d864a18a3bd77-debian-12-5.4~alpha1_opam-2.3-0ef0014a7db1a75b52211cfa8053503b" 2025-07-02 12:16.43: Using OBuilder spec: ((from ocaml/opam:debian-12-ocaml-5.4-alpha1@sha256:8582773c21cedba0ee784e7abc58e4ae8e8ec1fd5bb00bd01c6d864a18a3bd77) (comment debian-12-5.4~alpha1_opam-2.3) (user (uid 1000) (gid 1000)) (env CLICOLOR_FORCE 1) (env OPAMCOLOR always) (workdir /src) (run (shell "sudo ln -f /usr/bin/opam-2.3 /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 a28eb8a148feb4fbc6466fa0791668993513dbde || git fetch origin master) && git reset -q --hard a28eb8a148feb4fbc6466fa0791668993513dbde && git log --no-decorate -n1 --oneline && opam update -u")) (copy (src effects-examples.opam) (dst ./)) (run (network host) (shell "opam pin add -yn effects-examples.dev './'")) (run (network host) (shell "echo '(lang dune 3.0)' > './dune-project'")) (env DEPS "base-bigarray.base base-bytes.base base-domains.base base-effects.base base-nnp.base base-threads.base base-unix.base cppo.1.8.0 csexp.1.5.2 dune.3.19.1 dune-configurator.3.19.1 lwt.5.9.1 multicont.1.0.3 ocaml.5.4.0 ocaml-base-compiler.5.4.0~alpha1 ocaml-compiler.5.4.0~alpha1 ocaml-config.3 ocaml-options-vanilla.1 ocamlfind.1.9.8 ocplib-endian.1.2") (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.3 --depext-only -y effects-examples.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 @install @check @runtest && rm -rf _build")) ) 2025-07-02 12:16.43: Waiting for resource in pool OCluster 2025-07-02 12:16.51: Waiting for worker… 2025-07-02 12:16.51: Got resource from pool OCluster Building on phoebe hint: Using 'master' as the name for the initial branch. This default branch name hint: is subject to change. To configure the initial branch name to use in all hint: of your new repositories, which will suppress this warning, call: hint: hint: git config --global init.defaultBranch <name> hint: hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and hint: 'development'. The just-created branch can be renamed via this command: hint: hint: git branch -m <name> Initialized empty Git repository in /var/cache/obuilder/ocluster/git/effects-examples.git-a1bacf9d4bce447b5edfecd0b50085fe4d7672d3/.git/ HEAD is now at 8a7e80d Merge pull request #44 from ocaml-multicore/multicont-1.0.3 (from ocaml/opam:debian-12-ocaml-5.4-alpha1@sha256:8582773c21cedba0ee784e7abc58e4ae8e8ec1fd5bb00bd01c6d864a18a3bd77) 2025-07-02 12:16.47 ---> using "7eeff0a897ba573e3887788a60a6c56290cc2b688e3dd8849ad000225167be2f" from cache /: (comment debian-12-5.4~alpha1_opam-2.3) /: (user (uid 1000) (gid 1000)) /: (env CLICOLOR_FORCE 1) /: (env OPAMCOLOR always) /: (workdir /src) /src: (run (shell "sudo ln -f /usr/bin/opam-2.3 /usr/bin/opam")) 2025-07-02 12:16.47 ---> using "f362fb86509f313e940fd46f809dea011c9e12de45cd732e10c9cb6f1e69dd99" 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 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 Format upgrade done. <><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><> [ERROR] Could not update repository "beta": "/usr/bin/git fetch -q" exited with code 128 "fatal: unable to access 'https://github.com/ocaml/ocaml-beta-repository/': Could not resolve host: github.com" [default] Initialised 2025-07-02 12:17.00 ---> saved as "83f26b8a182ca93e937604f79038f21c2d078c7be693bf219f6439df39ed5bb6" /src: (run (shell "uname -rs && opam exec -- ocaml -version && opam --version")) Linux 6.8.0-62-generic The OCaml toplevel, version 5.4.0~alpha1 2.3.0 2025-07-02 12:17.00 ---> saved as "4e6c1dbc65dc1f5ee77c6e77d9b87ac2d2372a2909f20b7eebc1b4323415fab2" /src: (workdir /src) /src: (run (shell "sudo chown opam /src")) 2025-07-02 12:17.00 ---> saved as "cc1fd244bac21da976d3e244ee9414006eca70002afed797b133c13a5cb211ca" /src: (run (cache (opam-archives (target /home/opam/.opam/download-cache))) (network host) (shell "cd ~/opam-repository && (git cat-file -e a28eb8a148feb4fbc6466fa0791668993513dbde || git fetch origin master) && git reset -q --hard a28eb8a148feb4fbc6466fa0791668993513dbde && git log --no-decorate -n1 --oneline && opam update -u")) a28eb8a148 Merge pull request #28017 from maiste/release-dune-3.19.1 <><> Updating package repositories ><><><><><><><><><><><><><><><><><><><><><><> [beta] no changes from git+https://github.com/ocaml/ocaml-beta-repository [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, 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-07-02 12:17.25 ---> saved as "29fc1c9fa26d0b531ed5ac3fde5403f699586a6eb6a39c3ebcc574f4c03b8242" /src: (copy (src effects-examples.opam) (dst ./)) 2025-07-02 12:17.26 ---> saved as "994bd96c070be096fa940af413905fa11e05d7bb889e8c646bbaa34bbb8ee3b7" /src: (run (network host) (shell "opam pin add -yn effects-examples.dev './'")) Package effects-examples does not exist, create as a NEW package? [y/n] y [effects-examples.dev] synchronised (file:///src) [WARNING] Failed checks on effects-examples package definition from source at file:///src: warning 68: Missing field 'license' effects-examples is now pinned to file:///src (version dev) 2025-07-02 12:17.29 ---> saved as "177662f3fece2b8e6a1e818fe30b7654a32d97d3a04005a941095a8e7f772e01" /src: (run (network host) (shell "echo '(lang dune 3.0)' > './dune-project'")) 2025-07-02 12:17.29 ---> saved as "c53280e58e6ed6fa543e79d0b6ae0cd2a4883bdfb588b46e105377fe6ddef7d8" /src: (env DEPS "base-bigarray.base base-bytes.base base-domains.base base-effects.base base-nnp.base base-threads.base base-unix.base cppo.1.8.0 csexp.1.5.2 dune.3.19.1 dune-configurator.3.19.1 lwt.5.9.1 multicont.1.0.3 ocaml.5.4.0 ocaml-base-compiler.5.4.0~alpha1 ocaml-compiler.5.4.0~alpha1 ocaml-config.3 ocaml-options-vanilla.1 ocamlfind.1.9.8 ocplib-endian.1.2") /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.3 --depext-only -y effects-examples.dev $DEPS")) + /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-security bookworm-security/main amd64 Packages [270 kB] - Fetched 373 kB in 0s (1067 kB/s) - Reading package lists... - <><> Synchronising pinned packages ><><><><><><><><><><><><><><><><><><><><><><> [effects-examples.dev] synchronised (file:///src) [NOTE] Package ocaml-options-vanilla is already installed (current version is 1). [NOTE] Package ocaml-config is already installed (current version is 3). [NOTE] Package ocaml-compiler is already installed (current version is 5.4.0~alpha1). [NOTE] Package ocaml-base-compiler is already installed (current version is 5.4.0~alpha1). [NOTE] Package ocaml is already installed (current version is 5.4.0). [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-nnp is already installed (current version is base). [NOTE] Package base-effects is already installed (current version is base). [NOTE] Package base-domains is already installed (current version is base). [NOTE] Package base-bigarray is already installed (current version is base). 2025-07-02 12:17.46 ---> saved as "6194ce89e80f85df26aae2c7319b616e2f178773b3319804e457228937814aef" /src: (run (cache (opam-archives (target /home/opam/.opam/download-cache))) (network host) (shell "opam install $DEPS")) [NOTE] Package ocaml-options-vanilla is already installed (current version is 1). [NOTE] Package ocaml-config is already installed (current version is 3). [NOTE] Package ocaml-compiler is already installed (current version is 5.4.0~alpha1). [NOTE] Package ocaml-base-compiler is already installed (current version is 5.4.0~alpha1). [NOTE] Package ocaml is already installed (current version is 5.4.0). [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-nnp is already installed (current version is base). [NOTE] Package base-effects is already installed (current version is base). [NOTE] Package base-domains 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 9 packages - install base-bytes base - install cppo 1.8.0 - install csexp 1.5.2 - install dune 3.19.1 - install dune-configurator 3.19.1 - install lwt 5.9.1 - install multicont 1.0.3 - install ocamlfind 1.9.8 - install ocplib-endian 1.2 <><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><> -> retrieved cppo.1.8.0 (cached) -> retrieved csexp.1.5.2 (cached) -> retrieved lwt.5.9.1 (cached) -> retrieved ocamlfind.1.9.8 (cached) -> retrieved ocplib-endian.1.2 (cached) -> retrieved multicont.1.0.3 (https://opam.ocaml.org/cache) -> retrieved dune.3.19.1, dune-configurator.3.19.1 (cached) -> installed ocamlfind.1.9.8 -> installed base-bytes.base -> installed dune.3.19.1 -> installed csexp.1.5.2 -> installed cppo.1.8.0 -> installed ocplib-endian.1.2 -> installed dune-configurator.3.19.1 -> installed multicont.1.0.3 -> installed lwt.5.9.1 Done. # To update the current shell environment, run: eval $(opam env) 2025-07-02 12:20.25 ---> saved as "76b0d775af3db9ecaf745408f348b5540bdb487e17a67d0eccdc58a7aec47223" /src: (copy (src .) (dst /src)) 2025-07-02 12:20.26 ---> saved as "4d9e7711a70556a65e6e79b5d1aae1e84e401a23563d9ef0c302391f94cfd415" /src: (run (shell "opam exec -- dune build @install @check @runtest && rm -rf _build")) 2025-07-02 12:20.27 ---> saved as "20a4be803f825406af5576e1cb950c67749c4093843f85c553d403192d07ab96" Job succeeded 2025-07-02 12:20.27: Job succeeded