(not at the head of any monitored branch or PR)
2025-11-19 19:31.57: New job: test ocaml-protoc.4.0, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/28902/head (adc5db1552e3f9d4ca0762400bfebd1c1ac398e9)
                              on opensuse-tumbleweed-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/28902/head" && git reset --hard adc5db15
git fetch origin master
git merge --no-edit fec8c490c3a00e719b359dce180fbfff342471f7
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:opensuse-tumbleweed-ocaml-4.14@sha256:647bda240b5534c405da64407168e99d757ce468a79984a17d8bdbf6b4c0bd5c
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 ocaml-protoc.4.0 4.0
RUN opam reinstall ocaml-protoc.4.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 "\"opensuse-tumbleweed\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'ocaml-protoc.4.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 ocaml-protoc.4.0) || true
RUN opam reinstall --with-test --verbose ocaml-protoc.4.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 "\"opensuse-tumbleweed\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'ocaml-protoc.4.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 .

2025-11-19 19:31.57: Using cache hint "ocaml/opam:opensuse-tumbleweed-ocaml-4.14@sha256:647bda240b5534c405da64407168e99d757ce468a79984a17d8bdbf6b4c0bd5c-ocaml-protoc.4.0-adc5db1552e3f9d4ca0762400bfebd1c1ac398e9"
2025-11-19 19:31.57: Using OBuilder spec:
((from ocaml/opam:opensuse-tumbleweed-ocaml-4.14@sha256:647bda240b5534c405da64407168e99d757ce468a79984a17d8bdbf6b4c0bd5c)
 (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 ocaml-protoc.4.0 4.0"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall ocaml-protoc.4.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 \"\\\"opensuse-tumbleweed\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'ocaml-protoc.4.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 ocaml-protoc.4.0) || true"))
 (run (shell  "opam reinstall --with-test --verbose ocaml-protoc.4.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 \"\\\"opensuse-tumbleweed\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'ocaml-protoc.4.0' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2025-11-19 19:31.57: Waiting for resource in pool OCluster
2025-11-19 19:31.59: Waiting for worker…
2025-11-19 19:34.28: Got resource from pool OCluster
Building on asteria.caelum.ci.dev
All commits already cached
Updating files:  78% (14666/18783)
Updating files:  79% (14839/18783)
Updating files:  80% (15027/18783)
Updating files:  81% (15215/18783)
Updating files:  82% (15403/18783)
Updating files:  83% (15590/18783)
Updating files:  84% (15778/18783)
Updating files:  85% (15966/18783)
Updating files:  86% (16154/18783)
Updating files:  87% (16342/18783)
Updating files:  88% (16530/18783)
Updating files:  89% (16717/18783)
Updating files:  90% (16905/18783)
Updating files:  91% (17093/18783)
Updating files:  92% (17281/18783)
Updating files:  93% (17469/18783)
Updating files:  94% (17657/18783)
Updating files:  95% (17844/18783)
Updating files:  96% (18032/18783)
Updating files:  97% (18220/18783)
Updating files:  98% (18408/18783)
Updating files:  99% (18596/18783)
Updating files: 100% (18783/18783)
Updating files: 100% (18783/18783), done.
HEAD is now at fec8c490c3 Merge pull request #28851 from jhjourdan/unison_release
Updating fec8c490c3..adc5db1552
Fast-forward
 packages/ocaml-protoc/ocaml-protoc.4.0/opam   | 42 +++++++++++++++++++++++++++
 packages/pbrt/pbrt.4.0/opam                   | 40 +++++++++++++++++++++++++
 packages/pbrt_services/pbrt_services.4.0/opam | 38 ++++++++++++++++++++++++
 packages/pbrt_yojson/pbrt_yojson.4.0/opam     | 41 ++++++++++++++++++++++++++
 4 files changed, 161 insertions(+)
 create mode 100644 packages/ocaml-protoc/ocaml-protoc.4.0/opam
 create mode 100644 packages/pbrt/pbrt.4.0/opam
 create mode 100644 packages/pbrt_services/pbrt_services.4.0/opam
 create mode 100644 packages/pbrt_yojson/pbrt_yojson.4.0/opam

(from ocaml/opam:opensuse-tumbleweed-ocaml-4.14@sha256:647bda240b5534c405da64407168e99d757ce468a79984a17d8bdbf6b4c0bd5c)
Unable to find image 'ocaml/opam:opensuse-tumbleweed-ocaml-4.14@sha256:647bda240b5534c405da64407168e99d757ce468a79984a17d8bdbf6b4c0bd5c' locally
docker.io/ocaml/opam@sha256:647bda240b5534c405da64407168e99d757ce468a79984a17d8bdbf6b4c0bd5c: Pulling from ocaml/opam
98114c719d86: Pulling fs layer
0303a1544664: Pulling fs layer
c0669a9e8386: Pulling fs layer
789ef0f497fe: Pulling fs layer
abd0954e14bb: Pulling fs layer
abd0954e14bb: Waiting
c0669a9e8386: Verifying Checksum
c0669a9e8386: Download complete
789ef0f497fe: Verifying Checksum
789ef0f497fe: Download complete
abd0954e14bb: Download complete
0303a1544664: Verifying Checksum
98114c719d86: Pull complete
0303a1544664: Pull complete
c0669a9e8386: Pull complete
789ef0f497fe: Pull complete
abd0954e14bb: Pull complete
Digest: sha256:647bda240b5534c405da64407168e99d757ce468a79984a17d8bdbf6b4c0bd5c
Status: Downloaded newer image for ocaml/opam@sha256:647bda240b5534c405da64407168e99d757ce468a79984a17d8bdbf6b4c0bd5c
2025-11-19 19:36.00 ---> saved as "0d83ad1dae6c81dbbd2d5992e6572eb7fc41b863e11864b35cc456f8341b3084"

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

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2025-11-19 19:36.01 ---> saved as "98890736e8e887cf2ba3d7147640b7becb40194fda3b8b3292ae5d6b55123778"

/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
[NOTE] The 'jobs' option was reset, its value was 71 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=71 --global
Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] Initialised
2025-11-19 19:36.27 ---> saved as "ccd8a5caacb521fbabfee47ad0d751db9612f55accbd9f660d5d5af4b25e1f23"

/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~beta1
# self-upgrade         no
# system               arch=x86_64 os=linux os-distribution=opensuse-tumbleweed os-version=20251113
# solver               builtin-0install
# install-criteria     -changed,-count[avoid-version,solution]
# upgrade-criteria     -count[avoid-version,solution]
# jobs                 255
# 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
2025-11-19 19:36.28 ---> saved as "040aba3a97859a9b9c6112db0233e4d4fa966efbc1fdd2f0581ecae2311d6a2a"

/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/"))
2025-11-19 19:37.02 ---> saved as "ccb5bcbfcde0a72802856e7284166a37ad25dcf4ce3b29956ab9ea62ce1e98f7"

/home/opam: (copy (src .) (dst opam-repository/))
2025-11-19 19:37.20 ---> saved as "2e58a0ba87f54901ba1e578170427a23d73d4d62c5621d7825ba2f8597bdc658"

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-11-19 19:37.49 ---> saved as "a678e22617d58fc3d17b749cea3b916ad703b51b16e4d2095bee210c12c3ee46"

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /usr/bin/sudo "zypper" "--non-interactive" "refresh"
- Repository 'openSUSE-Tumbleweed-Update' is up to date.
- Retrieving repository 'openSUSE-Tumbleweed-Non-Oss' metadata [...
- Looking for gpg keys in repository openSUSE-Tumbleweed-Non-Oss.
-   gpgkey=http://download.opensuse.org/tumbleweed/repo/non-oss/repodata/repomd.xml.key
- ......
- ...done]
- Building repository 'openSUSE-Tumbleweed-Non-Oss' cache [....done]
- Retrieving repository 'openSUSE-Tumbleweed-Oss' metadata [...
- Looking for gpg keys in repository openSUSE-Tumbleweed-Oss.
-   gpgkey=http://download.opensuse.org/tumbleweed/repo/oss/repodata/repomd.xml.key
- ....
- ..........
- .........
- .........
- ..........
- ...........
- .........
- ..........
- ..........
- .......done]
- Building repository 'openSUSE-Tumbleweed-Oss' cache [..
- ..done]
- All repositories have been refreshed.
2025-11-19 19:38.05 ---> saved as "3e15a891b5997a479b64069df2d84399e84a653249fa287783dafa67bf58c190"

/home/opam: (run (shell "opam pin add -k version -yn ocaml-protoc.4.0 4.0"))
ocaml-protoc is now pinned to version 4.0
2025-11-19 19:38.06 ---> saved as "e0298e638501d7a0d6e8d0082748131a1f9594be365807d6d362b1f0ca896814"

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall ocaml-protoc.4.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 \"\\\"opensuse-tumbleweed\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'ocaml-protoc.4.0' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
ocaml-protoc.4.0 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 4 packages
  - install dune         3.20.2       [required by ocaml-protoc]
  - install ocaml-protoc 4.0 (pinned)
  - install pbrt         4.0          [required by ocaml-protoc]
  - install stdlib-shims 0.3.0        [required by pbrt]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved dune.3.20.2  (cached)
-> retrieved ocaml-protoc.4.0, pbrt.4.0  (cached)
-> retrieved stdlib-shims.0.3.0  (cached)
-> installed dune.3.20.2
-> installed stdlib-shims.0.3.0
-> installed pbrt.4.0
-> installed ocaml-protoc.4.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-11-19 19:38.44 ---> saved as "81546c2e42ff744c089b35a127ce48d75ef1d20114f6161aa5452fe534d85cf7"

/home/opam: (run (network host)
                 (shell "(opam reinstall --with-test ocaml-protoc.4.0) || true"))
The following actions will be performed:
=== recompile 1 package
  - recompile ocaml-protoc        4.0 (pinned)
=== install 11 packages
  - install   base64              3.5.2        [required by pbrt_yojson]
  - install   cppo                1.8.0        [required by ppx_deriving]
  - install   ocaml-compiler-libs v0.12.4      [required by ppxlib]
  - install   ocamlfind           1.9.8        [required by ppx_deriving]
  - install   pbrt_services       4.0          [required by ocaml-protoc]
  - install   pbrt_yojson         4.0          [required by ocaml-protoc]
  - install   ppx_derivers        1.2.1        [required by ppx_deriving]
  - install   ppx_deriving        6.1.1        [required by ocaml-protoc]
  - install   ppxlib              0.37.0       [required by ppx_deriving]
  - install   sexplib0            v0.17.0      [required by ppxlib]
  - install   yojson              3.0.0        [required by pbrt_yojson]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved base64.3.5.2  (https://opam.ocaml.org/cache)
-> retrieved cppo.1.8.0  (https://opam.ocaml.org/cache)
-> retrieved ocaml-compiler-libs.v0.12.4  (https://opam.ocaml.org/cache)
-> installed base64.3.5.2
-> retrieved ocaml-protoc.4.0, pbrt_services.4.0, pbrt_yojson.4.0  (https://github.com/mransan/ocaml-protoc/releases/download/v4.0/ocaml-protoc-4.0.tbz)
-> retrieved ocamlfind.1.9.8  (https://opam.ocaml.org/cache)
-> retrieved ppx_derivers.1.2.1  (https://opam.ocaml.org/cache)
-> retrieved ppx_deriving.6.1.1  (https://opam.ocaml.org/cache)
-> installed ppx_derivers.1.2.1
-> retrieved ppxlib.0.37.0  (https://opam.ocaml.org/cache)
-> installed cppo.1.8.0
-> retrieved sexplib0.v0.17.0  (https://opam.ocaml.org/cache)
-> installed ocaml-compiler-libs.v0.12.4
-> retrieved yojson.3.0.0  (https://opam.ocaml.org/cache)
-> installed sexplib0.v0.17.0
-> installed yojson.3.0.0
-> installed pbrt_yojson.4.0
-> installed pbrt_services.4.0
-> removed   ocaml-protoc.4.0
-> installed ocamlfind.1.9.8
-> installed ppxlib.0.37.0
-> installed ppx_deriving.6.1.1
-> installed ocaml-protoc.4.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-11-19 19:39.21 ---> saved as "b8b98527b0eeca7b97933ce63e23f4ccc78c0d3d396aeb04c5ecd2ca3c8d6f3f"

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

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  2/4: [ocaml-protoc: dune subst]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "subst" (CWD=/home/opam/.opam/4.14/.opam-switch/build/ocaml-protoc.4.0)
Processing  2/4: [ocaml-protoc: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "ocaml-protoc" "-j" "255" "@install" "@runtest" (CWD=/home/opam/.opam/4.14/.opam-switch/build/ocaml-protoc.4.0)
- (cd _build/default/src/tests/unit-tests && ./graph_test.exe)
- Graph Test ... Ok
- (cd _build/default/src/tests/unit-tests && ./verify_syntax_invariants.exe)
- Verify syntax invariants ... Ok
- (cd _build/default/src/tests/unit-tests && ./pbtt_compile_p2.exe)
- Pbtt Compile P2 ... Ok
- (cd _build/default/src/tests/unit-tests && ./parse_message.exe)
- Parse Message ... Ok
- Parse Message ... Ok
- (cd _build/default/src/tests/unit-tests && ./parse_field_options.exe)
- Parse Field Options ... Ok
- (cd _build/default/src/tests/unit-tests && ./pbtt_compile_p1.exe)
- Pbtt Compile P1 ... Ok
- (cd _build/default/src/tests/unit-tests && ./parse_import.exe)
- Parse Import ... Ok
- (cd _build/default/src/tests/unit-tests && ./parse_file_options.exe)
- Parse File Options ... Ok
- (cd _build/default/src/tests/unit-tests && ./parse_enum.exe)
- Parse Enum ... Ok
- (cd _build/default/src/tests/yojson && ./yojson_unittest_ml.exe)
- {"basic":[{"name":"basic0"}],"repeatedEnum":["VALUE0","Value1","Value_Two"],"singleOneOfRecursive":{"recursiveValue":{"smallMessage":{"smString":"This \"IS\" a small string"}}},"singleOneOfSmallMessage":{"smallMessage":{"smString":"This \"IS\" a small string"}},"singleOneOfEnum":{"enumValue":"VALUE0"},"singleOneOfInt":{"intValue":-273962069},"singleOneOfString":{"stringValue":"This is the single one \"string\""},"testEnum2":"Value_Two","testEnum1":"Value1","testEnum0":"VALUE0","allBasicTypes":{"repeated14":["This is a test \"string\""],"repeated13":[true],"repeated10":["-1464888499971052629"],"repeated09":[-268435457],"repeated08":["-1464888499971052629"],"repeated07":[-268435457],"repeated06":["8911405041490570155"],"repeated05":[2147483647],"repeated04":["-1464888499971052629"],"repeated03":[-268435457],"repeated02":[1.2],"repeated01":["1.2000001"],"field14":"This is a test \"string\"","field13":true,"field10":"-1464888499971052629","field09":-268435457,"field08":"-1464888499971052629","field07":-268435457,"field06":"8911405041490570155","field05":2147483647,"field04":"-1464888499971052629","field03":-268435457,"field02":1.2,"field01":"1.2000001"}}
- 
- Consistency tests... Ok
- 
- Conformance tests ... Ok
- (cd _build/default/src/tests/google_unittest && ./google_unittest.exe)
- Google unittest .... OK
-> compiled  ocaml-protoc.4.0
-> removed   ocaml-protoc.4.0
-> installed ocaml-protoc.4.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-11-19 19:39.32 ---> saved as "7ec6ceb5b9f1cb4b7822d54c42343f1a22292b706d9d9560123004eca9d28b36"
Job succeeded
2025-11-19 19:39.45: Job succeeded