- github
- ocaml
- opam-repository
- 8afc60
- distributions,centos-9-ocaml-4.14,ortac-runtime.0.8.0,tests
(not at the head of any monitored branch or PR)
2026-03-23 10:31.38: New job: test ortac-runtime.0.8.0, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/29564/head (8afc60ff3217de99b86954a6affb39ff08ce4c60)
on centos-9-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/29564/head" && git reset --hard 8afc60ff
git fetch origin master
git merge --no-edit 63b7ba71be83567e54bb667df0f2bb374d74fb61
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:centos-9-ocaml-4.14@sha256:0900beacae8621f323ae8f23cb0c84d34819b86679df1d8c964e158a4d4bde88
USER 1000:1000
WORKDIR /home/opam
RUN sudo ln -f /usr/bin/opam-dev /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 ortac-runtime.0.8.0 0.8.0
RUN opam reinstall ortac-runtime.0.8.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 "\"centos-9\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'ortac-runtime.0.8.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 ortac-runtime.0.8.0) || true
RUN opam reinstall --with-test --verbose ortac-runtime.0.8.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 "\"centos-9\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'ortac-runtime.0.8.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 .
2026-03-23 10:31.38: Using cache hint "ocaml/opam:centos-9-ocaml-4.14@sha256:0900beacae8621f323ae8f23cb0c84d34819b86679df1d8c964e158a4d4bde88-ortac-runtime.0.8.0-8afc60ff3217de99b86954a6affb39ff08ce4c60"
2026-03-23 10:31.38: Using OBuilder spec:
((from ocaml/opam:centos-9-ocaml-4.14@sha256:0900beacae8621f323ae8f23cb0c84d34819b86679df1d8c964e158a4d4bde88)
(user (uid 1000) (gid 1000))
(workdir /home/opam)
(run (shell "sudo ln -f /usr/bin/opam-dev /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 ortac-runtime.0.8.0 0.8.0"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall ortac-runtime.0.8.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 \"\\\"centos-9\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'ortac-runtime.0.8.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 ortac-runtime.0.8.0) || true"))
(run (shell "opam reinstall --with-test --verbose ortac-runtime.0.8.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 \"\\\"centos-9\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'ortac-runtime.0.8.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
)
2026-03-23 10:31.38: Waiting for resource in pool OCluster
2026-03-23 10:36.19: Waiting for worker…
2026-03-23 10:38.42: Got resource from pool OCluster
Building on toxis.caelum.ci.dev
All commits already cached
HEAD is now at 63b7ba71be Merge pull request #29573 from davesnx/release-parseff-0.2.0
Merge made by the 'ort' strategy.
Auto packing the repository in the background for optimum performance.
See "git help gc" for manual housekeeping.
warning: The last gc run reported the following. Please correct the root cause
and remove .git/gc.log
Automatic cleanup will not be performed until the file is removed.
warning: There are too many unreachable loose objects; run 'git prune' to remove them.
packages/ortac-core/ortac-core.0.8.0/opam | 65 ++++++++++++++++++++++
packages/ortac-dune/ortac-dune.0.8.0/opam | 47 ++++++++++++++++
.../ortac-qcheck-stm/ortac-qcheck-stm.0.8.0/opam | 64 +++++++++++++++++++++
.../ortac-runtime-qcheck-stm.0.8.0/opam | 51 +++++++++++++++++
packages/ortac-runtime/ortac-runtime.0.8.0/opam | 52 +++++++++++++++++
packages/ortac-wrapper/ortac-wrapper.0.8.0/opam | 57 +++++++++++++++++++
6 files changed, 336 insertions(+)
create mode 100644 packages/ortac-core/ortac-core.0.8.0/opam
create mode 100644 packages/ortac-dune/ortac-dune.0.8.0/opam
create mode 100644 packages/ortac-qcheck-stm/ortac-qcheck-stm.0.8.0/opam
create mode 100644 packages/ortac-runtime-qcheck-stm/ortac-runtime-qcheck-stm.0.8.0/opam
create mode 100644 packages/ortac-runtime/ortac-runtime.0.8.0/opam
create mode 100644 packages/ortac-wrapper/ortac-wrapper.0.8.0/opam
(from ocaml/opam:centos-9-ocaml-4.14@sha256:0900beacae8621f323ae8f23cb0c84d34819b86679df1d8c964e158a4d4bde88)
2026-03-23 10:45.21 ---> saved as "dac63719edf1fb21abdbd4be411809fd1fc4ba1e61f121a32295e1441c2ad5f6"
/: (user (uid 1000) (gid 1000))
/: (workdir /home/opam)
/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-03-23 10:45.22 ---> saved as "71dbb97d71e6460b05ec32d11b70da123019d56301d3bf840b8da494222830b7"
/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 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
2026-03-23 10:45.55 ---> saved as "cc7810378f1cc4ff5018728cd84c3f8d59184450cb20ac13dae814bdf947e85d"
/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.5.0
# self-upgrade no
# system arch=x86_64 os=linux os-distribution=centos os-version=9
# solver builtin-0install
# install-criteria -changed,-count[avoid-version,solution]
# upgrade-criteria -count[avoid-version,solution]
# jobs 71
# 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
2026-03-23 10:45.58 ---> saved as "8ae7199532a3bd978c316c7676fa3a4e0e477331048be7cf0634cf98fb60228a"
/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/"))
2026-03-23 10:46.09 ---> saved as "ec3c59830e7a9d178c0cd7d8c55035b3d6e78426eda3fc9454ced8a7aa5a7b3e"
/home/opam: (copy (src .) (dst opam-repository/))
2026-03-23 10:46.25 ---> saved as "30b6df40f54940776b1b61b83ca09e6659f28f0ebbe86594300e8dde7ef4b631"
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-23 10:46.54 ---> saved as "04a9612899a1b813c9e77d8ad51d462ed7734230d3848c853cb686a9664a3cae"
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "yum" "makecache"
- CentOS Stream 9 - BaseOS 77 kB/s | 15 kB 00:00
- CentOS Stream 9 - BaseOS 7.9 MB/s | 8.9 MB 00:01
- CentOS Stream 9 - AppStream 97 kB/s | 16 kB 00:00
- CentOS Stream 9 - AppStream 9.1 MB/s | 27 MB 00:02
- CentOS Stream 9 - CRB 79 kB/s | 15 kB 00:00
- CentOS Stream 9 - CRB 9.5 MB/s | 8.0 MB 00:00
- CentOS Stream 9 - Extras packages 114 kB/s | 17 kB 00:00
- Metadata cache created.
2026-03-23 10:47.25 ---> saved as "20c7a99e62ff52c4781d541f36b8df5c4b42867c55135a724a065eac70a88a89"
/home/opam: (run (shell "opam pin add -k version -yn ortac-runtime.0.8.0 0.8.0"))
ortac-runtime is now pinned to version 0.8.0
2026-03-23 10:47.26 ---> saved as "8429b9e3f0e3181a933e1ef87e95a70953097cf8fc90058c74e91ea0c924cf9d"
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall ortac-runtime.0.8.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 \"\\\"centos-9\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'ortac-runtime.0.8.0' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
ortac-runtime.0.8.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 9 packages
- install conf-gmp 5 [required by zarith]
- install conf-pkg-config 4 [required by zarith]
- install dune 3.22.0 [required by ortac-runtime]
- install fmt 0.11.0 [required by ortac-runtime]
- install ocamlbuild 0.16.1 [required by fmt]
- install ocamlfind 1.9.8 [required by fmt, zarith]
- install ortac-runtime 0.8.0 (pinned)
- install topkg 1.1.1 [required by fmt]
- install zarith 1.14 [required by ortac-runtime]
The following system packages will first need to be installed:
gmp-devel
<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>
opam believes some required external dependencies are missing. opam can:
> 1. Run yum to install them (may need root/sudo access)
2. Display the recommended yum 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/bin/sudo "yum" "install" "-y" "gmp-devel"
- Last metadata expiration check: 0:00:12 ago on Mon Mar 23 10:47:22 2026.
- Dependencies resolved.
- ================================================================================
- Package Architecture Version Repository Size
- ================================================================================
- Installing:
- gmp-devel x86_64 1:6.2.0-13.el9 appstream 174 k
- Installing dependencies:
- gmp-c++ x86_64 1:6.2.0-13.el9 appstream 19 k
-
- Transaction Summary
- ================================================================================
- Install 2 Packages
-
- Total download size: 193 k
- Installed size: 382 k
- Downloading Packages:
- (1/2): gmp-c++-6.2.0-13.el9.x86_64.rpm 759 kB/s | 19 kB 00:00
- (2/2): gmp-devel-6.2.0-13.el9.x86_64.rpm 2.5 MB/s | 174 kB 00:00
- --------------------------------------------------------------------------------
- Total 885 kB/s | 193 kB 00:00
- Running transaction check
- Transaction check succeeded.
- Running transaction test
- Transaction test succeeded.
- Running transaction
- Preparing : 1/1
- Installing : gmp-c++-1:6.2.0-13.el9.x86_64 1/2
- Installing : gmp-devel-1:6.2.0-13.el9.x86_64 2/2
- Running scriptlet: gmp-devel-1:6.2.0-13.el9.x86_64 2/2
-
- Verifying : gmp-c++-1:6.2.0-13.el9.x86_64 1/2
- Verifying : gmp-devel-1:6.2.0-13.el9.x86_64 2/2
-
- Installed:
- gmp-c++-1:6.2.0-13.el9.x86_64 gmp-devel-1:6.2.0-13.el9.x86_64
-
- Complete!
+ /usr/bin/rpm "-q" "--whatprovides" "gmp-devel"
- gmp-devel-6.2.0-13.el9.x86_64
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved conf-gmp.5 (cached)
-> installed conf-gmp.5
-> installed conf-pkg-config.4
-> retrieved dune.3.22.0 (cached)
-> retrieved fmt.0.11.0 (cached)
-> retrieved ocamlbuild.0.16.1 (cached)
-> retrieved ocamlfind.1.9.8 (cached)
-> retrieved ortac-runtime.0.8.0 (cached)
-> retrieved topkg.1.1.1 (cached)
-> retrieved zarith.1.14 (cached)
-> installed ocamlfind.1.9.8
-> installed ocamlbuild.0.16.1
-> installed zarith.1.14
-> installed topkg.1.1.1
-> installed fmt.0.11.0
-> installed dune.3.22.0
-> installed ortac-runtime.0.8.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-23 10:48.42 ---> saved as "c6fd735aace1513e7c640c5ac1b59ebdd6884c374da5d0c4830128f2e409171d"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test ortac-runtime.0.8.0) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile ortac-runtime 0.8.0 (pinned)
=== install 3 packages
- install afl-persistent 1.4 [required by monolith]
- install monolith 20250922 [required by ortac-runtime]
- install pprint 20230830 [required by monolith]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved afl-persistent.1.4 (https://opam.ocaml.org/cache)
-> retrieved monolith.20250922 (https://opam.ocaml.org/cache)
-> retrieved pprint.20230830 (https://opam.ocaml.org/cache)
-> installed afl-persistent.1.4
-> removed ortac-runtime.0.8.0
-> installed pprint.20230830
-> installed monolith.20250922
-> installed ortac-runtime.0.8.0
Done.
<><> afl-persistent.1.4 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, create an OCaml switch like:
opam switch create 4.14.2+afl ocaml-variants.4.14.2+options ocaml-option-afl
# To update the current shell environment, run: eval $(opam env)
2026-03-23 10:49.17 ---> saved as "1e37ceb7368ff339c7a42eca6ea862d8e3d37716d22398f3e843c89c95e4a5b3"
/home/opam: (run (shell "opam reinstall --with-test --verbose ortac-runtime.0.8.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 \"\\\"centos-9\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'ortac-runtime.0.8.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 ortac-runtime 0.8.0 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 2/4: [ortac-runtime: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "ortac-runtime" "-j" "71" "--promote-install-files=false" "@install" "@runtest" (CWD=/home/opam/.opam/4.14/.opam-switch/build/ortac-runtime.0.8.0)
- (cd _build/default && /usr/bin/timeout -s INT -k 3 20 test/runtime/stdlibset.exe)
- 1K tests run so far ( 19K/s overall, 197K/s now) (fuel = 20).
- 22K tests run so far ( 20K/s overall, 22K/s now) (fuel = 20).
- 43K tests run so far ( 20K/s overall, 22K/s now) (fuel = 20).
- 64K tests run so far ( 20K/s overall, 22K/s now) (fuel = 20).
- 85K tests run so far ( 20K/s overall, 21K/s now) (fuel = 20).
- 104K tests run so far ( 19K/s overall, 21K/s now) (fuel = 20).
- 123K tests run so far ( 19K/s overall, 19K/s now) (fuel = 20).
- 142K tests run so far ( 19K/s overall, 21K/s now) (fuel = 20).
- 162K tests run so far ( 19K/s overall, 22K/s now) (fuel = 20).
- 182K tests run so far ( 19K/s overall, 22K/s now) (fuel = 20).
- 202K tests run so far ( 19K/s overall, 21K/s now) (fuel = 20).
- 222K tests run so far ( 19K/s overall, 22K/s now) (fuel = 20).
- 242K tests run so far ( 19K/s overall, 22K/s now) (fuel = 20).
- 262K tests run so far ( 19K/s overall, 22K/s now) (fuel = 20).
- 280K tests run so far ( 19K/s overall, 19K/s now) (fuel = 20).
- 301K tests run so far ( 19K/s overall, 24K/s now) (fuel = 20).
- 322K tests run so far ( 19K/s overall, 23K/s now) (fuel = 20).
- 343K tests run so far ( 19K/s overall, 21K/s now) (fuel = 20).
- 364K tests run so far ( 19K/s overall, 22K/s now) (fuel = 20).
- 384K tests run so far ( 19K/s overall, 22K/s now) (fuel = 20).
Processing 2/4: [ortac-runtime: dune install]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "install" "-p" "ortac-runtime" "--create-install-files" "ortac-runtime" (CWD=/home/opam/.opam/4.14/.opam-switch/build/ortac-runtime.0.8.0)
-> compiled ortac-runtime.0.8.0
-> removed ortac-runtime.0.8.0
-> installed ortac-runtime.0.8.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-23 10:49.48 ---> saved as "e6e3944c3c4837bc56f719eaa0460470395ec03813724767665e103f4d1c1ca2"
Job succeeded
2026-03-23 10:49.57: Job succeeded