2025-10-07 16:47.59: New job: test ocaml-community/utop https://github.com/ocaml-community/utop.git#refs/heads/master (33201e60767fec2b4d7f43d5f033ec1e961ac1ff) (freebsd-x86_64:freebsd-14.3-5.3_opam-2.4)
Base: freebsd-14.3-ocaml-5.3
Opam project build
To reproduce locally:
git clone --recursive "https://github.com/ocaml-community/utop.git" -b "master" && cd "utop" && git reset --hard 33201e60
cat > Dockerfile <<'END-OF-DOCKERFILE'
FROM freebsd-14.3-ocaml-5.3
# freebsd-14.3-5.3_opam-2.4
USER 1000:1000
ENV CLICOLOR_FORCE="1"
ENV OPAMCOLOR="always"
WORKDIR /src
RUN sudo ln -f /usr/local/bin/opam-2.4 /usr/local/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 241aae26db44294142794da0ce695e8beac418df || git fetch origin master) && git reset -q --hard 241aae26db44294142794da0ce695e8beac418df && git log --no-decorate -n1 --oneline && opam update -u
COPY --chown=1000:1000 utop.opam ./
RUN opam pin add -yn utop.dev './'
RUN echo '(lang dune 3.0)' > './dune-project'
ENV DEPS="alcotest.1.9.1 astring.0.8.5 base-bigarray.base base-bytes.base base-domains.base base-effects.base base-nnp.base base-threads.base base-unix.base cmdliner.2.0.0 cppo.1.8.0 csexp.1.5.2 dune.3.20.2 dune-configurator.3.20.2 fmt.0.11.0 lambda-term.3.3.2 logs.0.9.0 lwt.5.9.2 lwt_react.1.2.0 mew.0.1.0 mew_vi.0.5.0 ocaml.5.3.0 ocaml-base-compiler.5.3.0 ocaml-compiler.5.3.0 ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0 ocamlbuild.0.16.1 ocamlfind.1.9.8 ocplib-endian.1.2 re.1.14.0 react.1.2.2 result.1.5 stdlib-shims.0.3.0 topkg.1.1.0 trie.1.0.0 uchar.0.0.2 uucp.17.0.0 uuseg.17.0.0 uutf.1.0.4 xdg.3.20.2 zed.3.2.3"
ENV CI="true"
ENV OCAMLCI="true"
RUN opam update --depexts && opam install --cli=2.4 --depext-only -y utop.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-10-07 16:47.59: Using cache hint "ocaml-community/utop-freebsd-14.3-ocaml-5.3-freebsd-14.3-5.3_opam-2.4-122202625bf62bf93284bebc87979e19"
2025-10-07 16:47.59: Using OBuilder spec:
((from freebsd-14.3-ocaml-5.3)
(comment freebsd-14.3-5.3_opam-2.4)
(user (uid 1000) (gid 1000))
(env CLICOLOR_FORCE 1)
(env OPAMCOLOR always)
(workdir /src)
(run (shell "sudo ln -f /usr/local/bin/opam-2.4 /usr/local/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 241aae26db44294142794da0ce695e8beac418df || git fetch origin master) && git reset -q --hard 241aae26db44294142794da0ce695e8beac418df && git log --no-decorate -n1 --oneline && opam update -u"))
(copy (src utop.opam) (dst ./))
(run (network host)
(shell "opam pin add -yn utop.dev './'"))
(run (network host)
(shell "echo '(lang dune 3.0)' > './dune-project'"))
(env DEPS "alcotest.1.9.1 astring.0.8.5 base-bigarray.base base-bytes.base base-domains.base base-effects.base base-nnp.base base-threads.base base-unix.base cmdliner.2.0.0 cppo.1.8.0 csexp.1.5.2 dune.3.20.2 dune-configurator.3.20.2 fmt.0.11.0 lambda-term.3.3.2 logs.0.9.0 lwt.5.9.2 lwt_react.1.2.0 mew.0.1.0 mew_vi.0.5.0 ocaml.5.3.0 ocaml-base-compiler.5.3.0 ocaml-compiler.5.3.0 ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0 ocamlbuild.0.16.1 ocamlfind.1.9.8 ocplib-endian.1.2 re.1.14.0 react.1.2.2 result.1.5 stdlib-shims.0.3.0 topkg.1.1.0 trie.1.0.0 uchar.0.0.2 uucp.17.0.0 uuseg.17.0.0 uutf.1.0.4 xdg.3.20.2 zed.3.2.3")
(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 utop.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-10-07 16:47.59: Waiting for resource in pool OCluster
2025-10-07 16:48.00: Waiting for worker…
2025-10-07 17:36.48: Got resource from pool OCluster
Building on rosemary
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>
hint:
hint: Disable this message with "git config set advice.defaultBranchName false"
Initialized empty Git repository in /obuilder/state/git/utop.git-86567039758a30d91652117bacb9b12471dd306f/.git/
HEAD is now at 33201e6 Merge pull request #506 from qexat/fix/utoprc-templates
(from freebsd-14.3-ocaml-5.3)
2025-10-07 17:35.02 ---> using "60bac7f21805020c29d2a88a6913503683a681e01c7da46429af43006be5190e" from cache
/: (comment freebsd-14.3-5.3_opam-2.4)
/: (user (uid 1000) (gid 1000))
/: (env CLICOLOR_FORCE 1)
/: (env OPAMCOLOR always)
/: (workdir /src)
/src: (run (shell "sudo ln -f /usr/local/bin/opam-2.4 /usr/local/bin/opam"))
2025-10-07 17:35.03 ---> using "4d63dfa430f870863e128ed3c471110b31bb3e53377210a2ea894afe5e37bcbb" from cache
/src: (run (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-10-07 17:35.03 ---> using "08dcdc7a41451c03feaf1cde41bdf093eeb3b516304c17e950a6225d1dbc12be" from cache
/src: (run (shell "uname -rs && opam exec -- ocaml -version && opam --version"))
FreeBSD 14.3-RELEASE-p3
The OCaml toplevel, version 5.3.0
2.4.1
2025-10-07 17:35.03 ---> using "89dfe63ac7dbdaa6723d28341400dd0a5b1be839b593d33c65eaf4466d13b257" from cache
/src: (workdir /src)
/src: (run (shell "sudo chown opam /src"))
2025-10-07 17:35.04 ---> using "ec3674891376259f4044950e2c0e886ef7c9543b50a81fe66e196cb6a302a954" from cache
/src: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "cd ~/opam-repository && (git cat-file -e 241aae26db44294142794da0ce695e8beac418df || git fetch origin master) && git reset -q --hard 241aae26db44294142794da0ce695e8beac418df && git log --no-decorate -n1 --oneline && opam update -u"))
241aae26db Merge pull request #28629 from dinosaure/release-alcotest-1.9.1
<><> Updating package repositories ><><><><><><><><><><><><><><><><><><><><><><>
[default] synchronised from git+file:///home/opam/opam-repository
Already up-to-date.
Nothing to do.
2025-10-07 17:35.04 ---> using "a7e7f5c4538fdba711b561cea4444a89749a4f2b77e6309c1516724a760ed312" from cache
/src: (copy (src utop.opam) (dst ./))
2025-10-07 17:35.06 ---> saved as "574c953005f8cae503781f574421cdccfabfcd262b827c3e897aacc72e35a4dd"
/src: (run (network host)
(shell "opam pin add -yn utop.dev './'"))
[utop.dev] synchronised (file:///src)
utop is now pinned to file:///src (version dev)
2025-10-07 17:35.09 ---> saved as "6a9073484f018b2207ad9015b4a935fd5e468012bb898c3fe55b5a644e63bee6"
/src: (run (network host)
(shell "echo '(lang dune 3.0)' > './dune-project'"))
2025-10-07 17:35.10 ---> saved as "eb54fd457c588f6e854789531fce43834031c2a1b37f3a628fe567f756b76fae"
/src: (env DEPS "alcotest.1.9.1 astring.0.8.5 base-bigarray.base base-bytes.base base-domains.base base-effects.base base-nnp.base base-threads.base base-unix.base cmdliner.2.0.0 cppo.1.8.0 csexp.1.5.2 dune.3.20.2 dune-configurator.3.20.2 fmt.0.11.0 lambda-term.3.3.2 logs.0.9.0 lwt.5.9.2 lwt_react.1.2.0 mew.0.1.0 mew_vi.0.5.0 ocaml.5.3.0 ocaml-base-compiler.5.3.0 ocaml-compiler.5.3.0 ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0 ocamlbuild.0.16.1 ocamlfind.1.9.8 ocplib-endian.1.2 re.1.14.0 react.1.2.2 result.1.5 stdlib-shims.0.3.0 topkg.1.1.0 trie.1.0.0 uchar.0.0.2 uucp.17.0.0 uuseg.17.0.0 uutf.1.0.4 xdg.3.20.2 zed.3.2.3")
/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 utop.dev $DEPS"))
[WARNING] Unknown update command for bsd, skipping system update
<><> Synchronising pinned packages ><><><><><><><><><><><><><><><><><><><><><><>
[utop.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.3.0).
[NOTE] Package ocaml-base-compiler is already installed (current version is 5.3.0).
[NOTE] Package ocaml is already installed (current version is 5.3.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-10-07 17:35.27 ---> saved as "056c068324b79c55ef60345af64c49f11b9be176636abb9959aebf4aa7664719"
/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.3.0).
[NOTE] Package ocaml-base-compiler is already installed (current version is 5.3.0).
[NOTE] Package ocaml is already installed (current version is 5.3.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 31 packages
∗ alcotest 1.9.1
∗ astring 0.8.5
∗ base-bytes base
∗ cmdliner 2.0.0
∗ cppo 1.8.0
∗ csexp 1.5.2
∗ dune 3.20.2
∗ dune-configurator 3.20.2
∗ fmt 0.11.0
∗ lambda-term 3.3.2
∗ logs 0.9.0
∗ lwt 5.9.2
∗ lwt_react 1.2.0
∗ mew 0.1.0
∗ mew_vi 0.5.0
∗ ocaml-syntax-shims 1.0.0
∗ ocamlbuild 0.16.1
∗ ocamlfind 1.9.8
∗ ocplib-endian 1.2
∗ re 1.14.0
∗ react 1.2.2
∗ result 1.5
∗ stdlib-shims 0.3.0
∗ topkg 1.1.0
∗ trie 1.0.0
∗ uchar 0.0.2
∗ uucp 17.0.0
∗ uuseg 17.0.0
∗ uutf 1.0.4
∗ xdg 3.20.2
∗ zed 3.2.3
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
⬇ retrieved astring.0.8.5 (https://erratique.ch/software/astring/releases/astring-0.8.5.tbz)
⬇ retrieved cppo.1.8.0 (cached)
⬇ retrieved alcotest.1.9.1 (https://github.com/mirage/alcotest/releases/download/1.9.1/alcotest-1.9.1.tbz)
⬇ retrieved csexp.1.5.2 (cached)
⬇ retrieved cmdliner.2.0.0 (https://erratique.ch/software/cmdliner/releases/cmdliner-2.0.0.tbz)
⬇ retrieved fmt.0.11.0 (https://erratique.ch/software/fmt/releases/fmt-0.11.0.tbz)
⬇ retrieved logs.0.9.0 (https://erratique.ch/software/logs/releases/logs-0.9.0.tbz)
⬇ retrieved lambda-term.3.3.2 (https://github.com/ocaml-community/lambda-term/archive/refs/tags/3.3.2.tar.gz)
⬇ retrieved lwt.5.9.2 (https://github.com/ocsigen/lwt/archive/refs/tags/5.9.2.tar.gz)
⬇ retrieved lwt_react.1.2.0 (https://github.com/ocsigen/lwt/archive/5.6.0.tar.gz)
⬇ retrieved mew.0.1.0 (https://github.com/kandu/mew/archive/0.1.0.tar.gz)
⬇ 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 mew_vi.0.5.0 (https://github.com/kandu/mew_vi/archive/0.5.0.tar.gz)
⬇ retrieved ocamlbuild.0.16.1 (cached)
⬇ retrieved ocamlfind.1.9.8 (cached)
⬇ retrieved dune.3.20.2, dune-configurator.3.20.2, xdg.3.20.2 (cached)
⬇ retrieved react.1.2.2 (https://erratique.ch/software/react/releases/react-1.2.2.tbz)
⬇ retrieved re.1.14.0 (https://github.com/ocaml/ocaml-re/archive/refs/tags/1.14.0.tar.gz)
⬇ retrieved ocplib-endian.1.2 (https://github.com/OCamlPro/ocplib-endian/archive/refs/tags/1.2.tar.gz)
⬇ retrieved stdlib-shims.0.3.0 (cached)
⬇ retrieved topkg.1.1.0 (cached)
⬇ retrieved uchar.0.0.2 (cached)
⬇ retrieved trie.1.0.0 (https://github.com/kandu/trie/archive/1.0.0.tar.gz)
⬇ retrieved result.1.5 (https://github.com/janestreet/result/releases/download/1.5/result-1.5.tbz)
⬇ retrieved uutf.1.0.4 (cached)
⬇ retrieved uucp.17.0.0 (https://erratique.ch/software/uucp/releases/uucp-17.0.0.tbz)
⬇ retrieved uuseg.17.0.0 (https://erratique.ch/software/uuseg/releases/uuseg-17.0.0.tbz)
⬇ retrieved zed.3.2.3 (https://github.com/ocaml-community/zed/archive/refs/tags/3.2.3.tar.gz)
∗ installed cmdliner.2.0.0
∗ installed ocamlbuild.0.16.1
∗ installed uchar.0.0.2
∗ installed ocamlfind.1.9.8
∗ installed base-bytes.base
∗ installed topkg.1.1.0
∗ installed uutf.1.0.4
∗ installed react.1.2.2
∗ installed astring.0.8.5
∗ installed fmt.0.11.0
∗ installed dune.3.20.2
∗ installed trie.1.0.0
∗ installed stdlib-shims.0.3.0
∗ installed result.1.5
∗ installed ocaml-syntax-shims.1.0.0
∗ installed csexp.1.5.2
∗ installed mew.0.1.0
∗ installed cppo.1.8.0
∗ installed re.1.14.0
∗ installed xdg.3.20.2
∗ installed ocplib-endian.1.2
∗ installed mew_vi.0.5.0
∗ installed dune-configurator.3.20.2
∗ installed alcotest.1.9.1
∗ installed lwt.5.9.2
∗ installed lwt_react.1.2.0
∗ installed uucp.17.0.0
∗ installed logs.0.9.0
∗ installed uuseg.17.0.0
∗ installed zed.3.2.3
∗ installed lambda-term.3.3.2
Done.
2025-10-07 17:38.49 ---> saved as "4ff9463a2ec0c49da3e183915db9c22e084ec6681b54779dadba9866cf419b70"
/src: (copy (src .) (dst /src))
2025-10-07 17:38.50 ---> saved as "4097ae8ad46479fccb7629e4d1d4ae2ae6f57e65981a6322e8e1f84cbecbfc52"
/src: (run (shell "opam exec -- dune build @install @check @runtest && rm -rf _build"))
(cd _build/default/test && ./test_lib.exe)
Testing `utop'.
This run has ID `Z0ZBX84Z'.
[OK] fix_string 0 small.
[OK] fix_string 1 empty.
Full test results in `/src/_build/default/test/_build/_tests/utop'.
Test Successful in 0.001s. 2 tests run.
2025-10-07 17:39.04 ---> saved as "9ed648c105949f50cc6b34224a519e55a2883030a597e70039cde87241e8a3b3"
Job succeeded
2025-10-07 17:40.51: Job succeeded