Build:
  1. 0
2026-03-11 09:12.19: New job: test rdf_json_ld.1.2.0, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/29537/head (150fd0172e6e8784bf77cbba212270cff708cb7d)
                              on ubuntu-24.04-ocaml-5.4/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/29537/head" && git reset --hard 150fd017
git fetch origin master
git merge --no-edit 3c0d72031e829cf7ddad3a74f39a8b01fe2bf302
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:ubuntu-24.04-ocaml-5.4@sha256:dd146440c079badd35a3a93925c46eb5393069563dd7a6048de35ff37c28c035
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 rdf_json_ld.1.2.0 1.2.0
RUN opam reinstall rdf_json_ld.1.2.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 "\"ubuntu-24.04\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'rdf_json_ld.1.2.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 rdf_json_ld.1.2.0) || true
RUN opam reinstall --with-test --verbose rdf_json_ld.1.2.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 "\"ubuntu-24.04\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'rdf_json_ld.1.2.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-11 09:12.19: Using cache hint "ocaml/opam:ubuntu-24.04-ocaml-5.4@sha256:dd146440c079badd35a3a93925c46eb5393069563dd7a6048de35ff37c28c035-rdf_json_ld.1.2.0-150fd0172e6e8784bf77cbba212270cff708cb7d"
2026-03-11 09:12.19: Using OBuilder spec:
((from ocaml/opam:ubuntu-24.04-ocaml-5.4@sha256:dd146440c079badd35a3a93925c46eb5393069563dd7a6048de35ff37c28c035)
 (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 rdf_json_ld.1.2.0 1.2.0"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall rdf_json_ld.1.2.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 \"\\\"ubuntu-24.04\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'rdf_json_ld.1.2.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 rdf_json_ld.1.2.0) || true"))
 (run (shell  "opam reinstall --with-test --verbose rdf_json_ld.1.2.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 \"\\\"ubuntu-24.04\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'rdf_json_ld.1.2.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-11 09:12.19: Waiting for resource in pool OCluster
2026-03-11 12:12.54: Waiting for worker…
2026-03-11 12:14.27: Got resource from pool OCluster
Building on clete
All commits already cached
Updating files:  99% (18394/18425)
Updating files: 100% (18425/18425)
Updating files: 100% (18425/18425), done.
HEAD is now at 3c0d72031e Merge pull request #29534 from filipeom/opam-publish-smtml.0.23.0
Updating 3c0d72031e..150fd0172e
Fast-forward
 packages/rdf/rdf.1.2.0/opam                       | 51 +++++++++++++++++++++++
 packages/rdf_impls/rdf_impls.1.2.0/opam           | 39 +++++++++++++++++
 packages/rdf_json_ld/rdf_json_ld.1.2.0/opam       | 40 ++++++++++++++++++
 packages/rdf_lwt/rdf_lwt.1.2.0/opam               | 39 +++++++++++++++++
 packages/rdf_mysql/rdf_mysql.1.2.0/opam           | 37 ++++++++++++++++
 packages/rdf_postgresql/rdf_postgresql.1.2.0/opam | 37 ++++++++++++++++
 packages/rdf_ppx/rdf_ppx.1.2.0/opam               | 37 ++++++++++++++++
 packages/rdf_rdfa/rdf_rdfa.1.2.0/opam             | 36 ++++++++++++++++
 8 files changed, 316 insertions(+)
 create mode 100644 packages/rdf/rdf.1.2.0/opam
 create mode 100644 packages/rdf_impls/rdf_impls.1.2.0/opam
 create mode 100644 packages/rdf_json_ld/rdf_json_ld.1.2.0/opam
 create mode 100644 packages/rdf_lwt/rdf_lwt.1.2.0/opam
 create mode 100644 packages/rdf_mysql/rdf_mysql.1.2.0/opam
 create mode 100644 packages/rdf_postgresql/rdf_postgresql.1.2.0/opam
 create mode 100644 packages/rdf_ppx/rdf_ppx.1.2.0/opam
 create mode 100644 packages/rdf_rdfa/rdf_rdfa.1.2.0/opam

(from ocaml/opam:ubuntu-24.04-ocaml-5.4@sha256:dd146440c079badd35a3a93925c46eb5393069563dd7a6048de35ff37c28c035)
2026-03-11 12:15.15 ---> saved as "ae7ae9e61981f1895c6e0ec22a30eff69b90ad3e8d19cfdae29e77ec9a401a19"

/: (user (uid 1000) (gid 1000))

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2026-03-11 12:15.15 ---> saved as "75609719660d5af5f14c622d123218c377ddc413c107d01a47e293812f2f8923"

/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-11 12:15.43 ---> saved as "b4a19bc086a862a79529cd032c470440c63c6d5dd7620cf7b312dcd96e2c1f4c"

/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=ubuntu os-version=24.04
# 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       5.4
# invariant            ["ocaml-base-compiler" {= "5.4.0"}]
# compiler-packages    ocaml-base-compiler.5.4.0, ocaml-compiler.5.4.0, ocaml-options-vanilla.1
# ocaml:native         true
# ocaml:native-tools   true
# ocaml:native-dynlink true
# ocaml:stubsdir       /home/opam/.opam/5.4/lib/ocaml/stublibs:/home/opam/.opam/5.4/lib/ocaml
# ocaml:preinstalled   false
# ocaml:compiler       5.4.0
2026-03-11 12:15.44 ---> saved as "092c9c37a9d4dc74b97cdc52695d296ff53013c37a8e46c72caacd52a2f59a25"

/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-11 12:15.53 ---> saved as "80ffd13aacc88f532745228c9bf1c68a7af34a4d476e92d627b1962787ba9acf"

/home/opam: (copy (src .) (dst opam-repository/))
2026-03-11 12:16.06 ---> saved as "80eb367ce564d47fa2d231b909d1a1551f425ba797fa832408cc5790b3b7ecb6"

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2026-03-11 12:16.25 ---> saved as "5911e29bf504f1cefc5ecd2f26655671a390e840d10c26cff133b546cff8da58"

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/bin/sudo "apt-get" "update"
- Hit:1 http://archive.ubuntu.com/ubuntu noble InRelease
- Get:2 http://archive.ubuntu.com/ubuntu noble-updates InRelease [126 kB]
- Get:3 http://archive.ubuntu.com/ubuntu noble-backports InRelease [126 kB]
- Get:4 http://archive.ubuntu.com/ubuntu noble-updates/restricted amd64 Packages [3486 kB]
- Get:5 http://archive.ubuntu.com/ubuntu noble-updates/universe amd64 Packages [2025 kB]
- Get:6 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 Packages [2285 kB]
- Get:7 http://security.ubuntu.com/ubuntu noble-security InRelease [126 kB]
- Get:8 http://security.ubuntu.com/ubuntu noble-security/main amd64 Packages [1899 kB]
- Get:9 http://security.ubuntu.com/ubuntu noble-security/universe amd64 Packages [1261 kB]
- Get:10 http://security.ubuntu.com/ubuntu noble-security/restricted amd64 Packages [3315 kB]
- Fetched 14.6 MB in 6s (2510 kB/s)
- Reading package lists...
- 
2026-03-11 12:16.34 ---> saved as "1ab528091d8c6d36e2a32ac385764f1d68b035b0ed879af490eedc90cbdb3391"

/home/opam: (run (shell "opam pin add -k version -yn rdf_json_ld.1.2.0 1.2.0"))
rdf_json_ld is now pinned to version 1.2.0
2026-03-11 12:16.36 ---> saved as "06809cb0dd20391f558843ee1c4b23aab3e2c0acf45ce557fd89884d14e08182"

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall rdf_json_ld.1.2.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 \"\\\"ubuntu-24.04\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'rdf_json_ld.1.2.0' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
rdf_json_ld.1.2.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 93 packages
  - install angstrom                0.16.1         [required by uri]
  - install asn1-combinators        0.3.2          [required by x509]
  - install astring                 0.8.5          [required by conduit]
  - install base                    v0.17.3        [required by ppx_sexp_conv]
  - install base-bytes              base           [required by ocplib-endian]
  - install base64                  3.5.2          [required by cohttp]
  - install bigstringaf             0.10.0         [required by angstrom]
  - install bos                     0.2.1          [required by ca-certs]
  - install ca-certs                1.0.1          [required by conduit-lwt-unix]
  - install cmdliner                2.1.0          [required by cohttp-lwt-unix]
  - install cohttp                  6.2.1          [required by cohttp-lwt-unix]
  - install cohttp-lwt              6.2.1          [required by cohttp-lwt-unix]
  - install cohttp-lwt-unix         6.2.1          [required by rdf_json_ld]
  - install conduit                 8.0.0          [required by conduit-lwt]
  - install conduit-lwt             8.0.0          [required by cohttp-lwt-unix]
  - install conduit-lwt-unix        8.0.0          [required by cohttp-lwt-unix]
  - install conf-gmp                5              [required by conf-gmp-powm-sec, zarith]
  - install conf-gmp-powm-sec       4              [required by mirage-crypto-pk]
  - install conf-libpcre            2              [required by pcre]
  - install conf-pkg-config         4              [required by conf-libpcre]
  - install cppo                    1.8.0          [required by lwt]
  - install csexp                   1.5.2          [required by dune-configurator]
  - install cstruct                 6.2.0          [required by hex]
  - install digestif                1.3.0          [required by ca-certs]
  - install domain-name             0.5.0          [required by ipaddr]
  - install dune                    3.21.1         [required by rdf_json_ld]
  - install dune-build-info         3.21.1         [required by rdf]
  - install dune-compiledb          0.6.0          [required by pcre]
  - install dune-configurator       3.21.1         [required by pcre]
  - install duration                0.2.1          [required by mirage-crypto-rng]
  - install eqaf                    0.10           [required by digestif, mirage-crypto]
  - install ezjsonm                 1.3.0          [required by dune-compiledb]
  - install fmt                     0.11.0         [required by cohttp-lwt-unix, rdf]
  - install fpath                   0.7.3          [required by ca-certs, dune-compiledb]
  - install gen                     1.1            [required by sedlex]
  - install gmap                    0.3.0          [required by x509]
  - install hex                     1.5.0          [required by ezjsonm]
  - install http                    6.2.1          [required by cohttp-lwt-unix]
  - install ipaddr                  5.6.2          [required by cohttp-lwt, cohttp, conduit-lwt-unix]
  - install ipaddr-sexp             5.6.2          [required by conduit-lwt-unix]
  - install iri                     1.2.0          [required by rdf]
  - install jsonm                   1.0.2          [required by rdf_json_ld]
  - install kdf                     1.0.0          [required by x509]
  - install logs                    0.10.0         [required by cohttp-lwt-unix, rdf]
  - install lwt                     6.1.1          [required by rdf_json_ld]
  - install lwt_ppx                 6.1.0          [required by rdf_json_ld]
  - install macaddr                 5.6.2          [required by ipaddr]
  - install magic-mime              1.3.1          [required by cohttp-lwt-unix]
  - install menhir                  20260209       [required by rdf]
  - install menhirCST               20260209       [required by menhir]
  - install menhirGLR               20260209       [required by menhir]
  - install menhirLib               20260209       [required by menhir]
  - install menhirSdk               20260209       [required by menhir]
  - install mirage-crypto           2.0.3          [required by ca-certs]
  - install mirage-crypto-ec        2.0.3          [required by x509]
  - install mirage-crypto-pk        2.0.3          [required by x509]
  - install mirage-crypto-rng       2.0.3          [required by x509]
  - install num                     1.6            [required by sexplib]
  - install ocaml-compiler-libs     v0.17.0        [required by ppxlib]
  - install ocaml-syntax-shims      1.0.0          [required by angstrom]
  - install ocaml_intrinsics_kernel v0.17.1        [required by base]
  - install ocamlbuild              0.16.1         [required by jsonm]
  - install ocamlfind               1.9.8          [required by jsonm]
  - install ocplib-endian           1.2            [required by lwt]
  - install ohex                    0.2.0          [required by ca-certs]
  - install parsexp                 v0.17.0        [required by sexplib]
  - install pcre                    8.0.5          [required by rdf]
  - install ppx_derivers            1.2.1          [required by ppxlib]
  - install ppx_sexp_conv           v0.17.1        [required by cohttp-lwt-unix]
  - install ppxlib                  0.37.0         [required by lwt_ppx]
  - install ppxlib_jane             v0.17.4        [required by ppx_sexp_conv]
  - install ptime                   1.2.0          [required by rdf]
  - install rdf                     1.2.0          [required by rdf_json_ld]
  - install rdf_json_ld             1.2.0 (pinned)
  - install re                      1.14.0         [required by rdf]
  - install rresult                 0.7.0          [required by bos]
  - install sedlex                  3.7            [required by rdf]
  - install seq                     base           [required by gen]
  - install sexplib                 v0.17.0        [required by dune-compiledb]
  - install sexplib0                v0.17.0        [required by cohttp-lwt, cohttp, conduit-lwt]
  - install stdlib-shims            0.3.0          [required by ppxlib]
  - install stringext               1.6.0          [required by cohttp]
  - install topkg                   1.1.1          [required by jsonm]
  - install uri                     4.4.0          [required by rdf]
  - install uri-sexp                4.4.0          [required by cohttp]
  - install uucp                    17.0.0         [required by rdf]
  - install uuidm                   0.9.10         [required by rdf]
  - install uunf                    17.0.0         [required by iri, uucp]
  - install uutf                    1.0.4          [required by jsonm, rdf]
  - install x509                    1.0.6          [required by ca-certs]
  - install xmlm                    1.4.0          [required by rdf]
  - install yojson                  3.0.0          [required by rdf]
  - install zarith                  1.14           [required by mirage-crypto-pk]

The following system packages will first need to be installed:
    libgmp-dev libpcre3-dev pkg-config

<><> Handling external dependencies <><><><><><><><><><><><><><><><><><><><><><>

opam believes some required external dependencies are missing. opam can:
> 1. Run apt-get to install them (may need root/sudo access)
  2. Display the recommended apt-get 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 "apt-get" "install" "-qq" "-yy" "libgmp-dev" "libpcre3-dev" "pkg-config"
- debconf: delaying package configuration, since apt-utils is not installed
- 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 ... 16365 files and directories currently installed.)
- Preparing to unpack .../00-libgmpxx4ldbl_2%3a6.3.0+dfsg-2ubuntu6.1_amd64.deb ...
- Unpacking libgmpxx4ldbl:amd64 (2:6.3.0+dfsg-2ubuntu6.1) ...
- Selecting previously unselected package libgmp-dev:amd64.
- Preparing to unpack .../01-libgmp-dev_2%3a6.3.0+dfsg-2ubuntu6.1_amd64.deb ...
- Unpacking libgmp-dev:amd64 (2:6.3.0+dfsg-2ubuntu6.1) ...
- Selecting previously unselected package libpcre16-3:amd64.
- Preparing to unpack .../02-libpcre16-3_2%3a8.39-15build1_amd64.deb ...
- Unpacking libpcre16-3:amd64 (2:8.39-15build1) ...
- Selecting previously unselected package libpcre3:amd64.
- Preparing to unpack .../03-libpcre3_2%3a8.39-15build1_amd64.deb ...
- Unpacking libpcre3:amd64 (2:8.39-15build1) ...
- Selecting previously unselected package libpcre32-3:amd64.
- Preparing to unpack .../04-libpcre32-3_2%3a8.39-15build1_amd64.deb ...
- Unpacking libpcre32-3:amd64 (2:8.39-15build1) ...
- Selecting previously unselected package libpcrecpp0v5:amd64.
- Preparing to unpack .../05-libpcrecpp0v5_2%3a8.39-15build1_amd64.deb ...
- Unpacking libpcrecpp0v5:amd64 (2:8.39-15build1) ...
- Selecting previously unselected package libpcre3-dev:amd64.
- Preparing to unpack .../06-libpcre3-dev_2%3a8.39-15build1_amd64.deb ...
- Unpacking libpcre3-dev:amd64 (2:8.39-15build1) ...
- Selecting previously unselected package libpkgconf3:amd64.
- Preparing to unpack .../07-libpkgconf3_1.8.1-2build1_amd64.deb ...
- Unpacking libpkgconf3:amd64 (1.8.1-2build1) ...
- Selecting previously unselected package pkgconf-bin.
- Preparing to unpack .../08-pkgconf-bin_1.8.1-2build1_amd64.deb ...
- Unpacking pkgconf-bin (1.8.1-2build1) ...
- Selecting previously unselected package pkgconf:amd64.
- Preparing to unpack .../09-pkgconf_1.8.1-2build1_amd64.deb ...
- Unpacking pkgconf:amd64 (1.8.1-2build1) ...
- Selecting previously unselected package pkg-config:amd64.
- Preparing to unpack .../10-pkg-config_1.8.1-2build1_amd64.deb ...
- Unpacking pkg-config:amd64 (1.8.1-2build1) ...
- Setting up libpcre16-3:amd64 (2:8.39-15build1) ...
- Setting up libpcre3:amd64 (2:8.39-15build1) ...
- Setting up libpkgconf3:amd64 (1.8.1-2build1) ...
- Setting up libgmpxx4ldbl:amd64 (2:6.3.0+dfsg-2ubuntu6.1) ...
- Setting up libpcre32-3:amd64 (2:8.39-15build1) ...
- Setting up pkgconf-bin (1.8.1-2build1) ...
- Setting up libpcrecpp0v5:amd64 (2:8.39-15build1) ...
- Setting up libgmp-dev:amd64 (2:6.3.0+dfsg-2ubuntu6.1) ...
- Setting up libpcre3-dev:amd64 (2:8.39-15build1) ...
- Setting up pkgconf:amd64 (1.8.1-2build1) ...
- Setting up pkg-config:amd64 (1.8.1-2build1) ...
- Processing triggers for libc-bin (2.39-0ubuntu8.7) ...

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved angstrom.0.16.1  (cached)
-> retrieved asn1-combinators.0.3.2  (cached)
-> retrieved astring.0.8.5  (cached)
-> retrieved base.v0.17.3  (cached)
-> retrieved base64.3.5.2  (cached)
-> retrieved bigstringaf.0.10.0  (cached)
-> retrieved bos.0.2.1  (cached)
-> retrieved ca-certs.1.0.1  (cached)
-> retrieved cmdliner.2.1.0  (cached)
-> retrieved cohttp.6.2.1, cohttp-lwt.6.2.1, cohttp-lwt-unix.6.2.1, http.6.2.1  (cached)
-> retrieved conduit.8.0.0, conduit-lwt.8.0.0, conduit-lwt-unix.8.0.0  (cached)
-> retrieved conf-gmp.5  (cached)
-> retrieved conf-gmp-powm-sec.4  (cached)
-> retrieved cppo.1.8.0  (cached)
-> retrieved csexp.1.5.2  (cached)
-> installed conf-pkg-config.4
-> installed conf-gmp.5
-> retrieved cstruct.6.2.0  (cached)
-> installed conf-libpcre.2
-> installed conf-gmp-powm-sec.4
-> retrieved digestif.1.3.0  (cached)
-> retrieved domain-name.0.5.0  (cached)
-> retrieved dune.3.21.1, dune-build-info.3.21.1, dune-configurator.3.21.1  (cached)
-> retrieved dune-compiledb.0.6.0  (cached)
-> retrieved duration.0.2.1  (cached)
-> retrieved eqaf.0.10  (cached)
-> retrieved ezjsonm.1.3.0  (cached)
-> retrieved fmt.0.11.0  (cached)
-> retrieved fpath.0.7.3  (cached)
-> retrieved gen.1.1  (cached)
-> retrieved gmap.0.3.0  (cached)
-> retrieved hex.1.5.0  (cached)
-> retrieved ipaddr.5.6.2, ipaddr-sexp.5.6.2, macaddr.5.6.2  (cached)
-> retrieved iri.1.2.0  (cached)
-> retrieved jsonm.1.0.2  (cached)
-> retrieved kdf.1.0.0  (cached)
-> retrieved logs.0.10.0  (cached)
-> installed cmdliner.2.1.0
-> retrieved lwt.6.1.1  (cached)
-> retrieved lwt_ppx.6.1.0  (cached)
-> retrieved magic-mime.1.3.1  (cached)
-> retrieved menhir.20260209, menhirCST.20260209, menhirGLR.20260209, menhirLib.20260209, menhirSdk.20260209  (cached)
-> retrieved mirage-crypto.2.0.3, mirage-crypto-ec.2.0.3, mirage-crypto-pk.2.0.3, mirage-crypto-rng.2.0.3  (cached)
-> retrieved num.1.6  (cached)
-> retrieved ocaml-compiler-libs.v0.17.0  (cached)
-> retrieved ocaml-syntax-shims.1.0.0  (cached)
-> retrieved ocaml_intrinsics_kernel.v0.17.1  (cached)
-> retrieved ocamlbuild.0.16.1  (cached)
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved ocplib-endian.1.2  (cached)
-> retrieved ohex.0.2.0  (cached)
-> retrieved parsexp.v0.17.0  (cached)
-> retrieved pcre.8.0.5  (cached)
-> retrieved ppx_derivers.1.2.1  (cached)
-> retrieved ppx_sexp_conv.v0.17.1  (cached)
-> retrieved ppxlib.0.37.0  (cached)
-> retrieved ppxlib_jane.v0.17.4  (cached)
-> retrieved ptime.1.2.0  (cached)
-> retrieved rdf.1.2.0, rdf_json_ld.1.2.0  (https://www.good-eris.net/ocaml-rdf/archives/ocaml-rdf-1.2.0.tar.bz2)
-> retrieved re.1.14.0  (cached)
-> retrieved rresult.0.7.0  (cached)
-> retrieved sedlex.3.7  (cached)
-> retrieved seq.base  (cached)
-> installed seq.base
-> retrieved sexplib.v0.17.0  (cached)
-> retrieved sexplib0.v0.17.0  (cached)
-> retrieved stdlib-shims.0.3.0  (cached)
-> retrieved stringext.1.6.0  (cached)
-> retrieved topkg.1.1.1  (cached)
-> retrieved uri.4.4.0, uri-sexp.4.4.0  (cached)
-> retrieved uucp.17.0.0  (cached)
-> installed num.1.6
-> retrieved uuidm.0.9.10  (cached)
-> retrieved uunf.17.0.0  (cached)
-> retrieved uutf.1.0.4  (cached)
-> retrieved x509.1.0.6  (cached)
-> retrieved xmlm.1.4.0  (cached)
-> retrieved yojson.3.0.0  (cached)
-> retrieved zarith.1.14  (cached)
-> installed ocamlfind.1.9.8
-> installed base-bytes.base
-> installed ocamlbuild.0.16.1
-> installed zarith.1.14
-> installed topkg.1.1.1
-> installed rresult.0.7.0
-> installed uuidm.0.9.10
-> installed fmt.0.11.0
-> installed uutf.1.0.4
-> installed xmlm.1.4.0
-> installed ptime.1.2.0
-> installed astring.0.8.5
-> installed jsonm.1.0.2
-> installed fpath.0.7.3
-> installed uunf.17.0.0
-> installed dune.3.21.1
-> installed asn1-combinators.0.3.2
-> installed base64.3.5.2
-> installed cppo.1.8.0
-> installed csexp.1.5.2
-> installed cstruct.6.2.0
-> installed domain-name.0.5.0
-> installed duration.0.2.1
-> installed eqaf.0.10
-> installed gen.1.1
-> installed gmap.0.3.0
-> installed http.6.2.1
-> installed macaddr.5.6.2
-> installed magic-mime.1.3.1
-> installed menhirCST.20260209
-> installed menhirGLR.20260209
-> installed menhirLib.20260209
-> installed menhirSdk.20260209
-> installed ocaml-compiler-libs.v0.17.0
-> installed ocaml-syntax-shims.1.0.0
-> installed ocaml_intrinsics_kernel.v0.17.1
-> installed ohex.0.2.0
-> installed ppx_derivers.1.2.1
-> installed re.1.14.0
-> installed sexplib0.v0.17.0
-> installed stdlib-shims.0.3.0
-> installed stringext.1.6.0
-> installed yojson.3.0.0
-> installed ocplib-endian.1.2
-> installed hex.1.5.0
-> installed digestif.1.3.0
-> installed ipaddr.5.6.2
-> installed ezjsonm.1.3.0
-> installed dune-build-info.3.21.1
-> installed parsexp.v0.17.0
-> installed dune-configurator.3.21.1
-> installed sexplib.v0.17.0
-> installed bigstringaf.0.10.0
-> installed dune-compiledb.0.6.0
-> installed angstrom.0.16.1
-> installed mirage-crypto.2.0.3
-> installed pcre.8.0.5
-> installed kdf.1.0.0
-> installed lwt.6.1.1
-> installed uri.4.4.0
-> installed logs.0.10.0
-> installed mirage-crypto-rng.2.0.3
-> installed menhir.20260209
-> installed mirage-crypto-pk.2.0.3
-> installed base.v0.17.3
-> installed bos.0.2.1
-> installed mirage-crypto-ec.2.0.3
-> installed x509.1.0.6
-> installed ca-certs.1.0.1
-> installed ppxlib.0.37.0
-> installed uucp.17.0.0
-> installed ppxlib_jane.v0.17.4
-> installed lwt_ppx.6.1.0
-> installed sedlex.3.7
-> installed ppx_sexp_conv.v0.17.1
-> installed uri-sexp.4.4.0
-> installed iri.1.2.0
-> installed ipaddr-sexp.5.6.2
-> installed conduit.8.0.0
-> installed cohttp.6.2.1
-> installed conduit-lwt.8.0.0
-> installed cohttp-lwt.6.2.1
-> installed conduit-lwt-unix.8.0.0
-> installed cohttp-lwt-unix.6.2.1
-> installed rdf.1.2.0
-> installed rdf_json_ld.1.2.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-11 12:19.51 ---> saved as "b96ceef340cc2efce518f12aaefdaac924910984bb30d7818ed936cbcb270fc0"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test rdf_json_ld.1.2.0) || true"))
The following actions will be performed:
=== recompile 1 package
  - recompile rdf_json_ld 1.2.0 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> removed   rdf_json_ld.1.2.0
-> installed rdf_json_ld.1.2.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-11 12:20.01 ---> saved as "50528cfd10e67b4883c09adaa3695bd5e953363d6b872a7132150902635dd4e7"

/home/opam: (run (shell  "opam reinstall --with-test --verbose rdf_json_ld.1.2.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 \"\\\"ubuntu-24.04\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'rdf_json_ld.1.2.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 rdf_json_ld 1.2.0 (pinned)

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  2/4: [rdf_json_ld: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "rdf_json_ld" "-j" "71" "@install" "@runtest" (CWD=/home/opam/.opam/5.4/.opam-switch/build/rdf_json_ld.1.2.0)
-> compiled  rdf_json_ld.1.2.0
-> removed   rdf_json_ld.1.2.0
-> installed rdf_json_ld.1.2.0
Done.
# To update the current shell environment, run: eval $(opam env)
2026-03-11 12:20.10 ---> saved as "0d22889759baa7fb434d94859f9e7c6707a90fe1e6cca27403a41c33788636aa"
Job succeeded
2026-03-11 12:20.25: Job succeeded