(not at the head of any monitored branch or PR)
2025-03-13 14:03.37: New job: test cucumber.1.0.4 with ocamlfind.1.9.5, using opam dev
                              from https://github.com/ocaml/opam-repository.git#refs/pull/27618/head (817e2bca6bb374fd7865253f73a8e26703930da1)
                              on debian-12-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/27618/head" && git reset --hard 817e2bca
git fetch origin master
git merge --no-edit 906fb78ee221e4b7676dcd2285fb6d40cbdc59f2
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:debian-12-ocaml-4.14@sha256:a6696fcec2a7196cd06fe5e601406bdcfa34a6483ab7cf7de982ae17ea6a55f0
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 ocamlfind.1.9.5 1.9.5
RUN opam reinstall ocamlfind.1.9.5; \
    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 "\"debian-12\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'ocamlfind.1.9.5' && partial_fails="$partial_fails $pkg"; \
    done; \
    test "${partial_fails}" != "" && echo "opam-repo-ci detected dependencies failing: ${partial_fails}"; \
    exit 1
RUN opam reinstall cucumber.1.0.4; \
    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 "\"debian-12\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'cucumber.1.0.4' && 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 cucumber.1.0.4) || true
RUN opam reinstall --with-test --verbose cucumber.1.0.4; \
    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 "\"debian-12\""; then \
    echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
    fi; \
    test "$pkg" != 'cucumber.1.0.4' && 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-03-13 14:03.37: Using cache hint "ocaml/opam:debian-12-ocaml-4.14@sha256:a6696fcec2a7196cd06fe5e601406bdcfa34a6483ab7cf7de982ae17ea6a55f0-ocamlfind.1.9.5-cucumber.1.0.4-817e2bca6bb374fd7865253f73a8e26703930da1"
2025-03-13 14:03.37: Using OBuilder spec:
((from ocaml/opam:debian-12-ocaml-4.14@sha256:a6696fcec2a7196cd06fe5e601406bdcfa34a6483ab7cf7de982ae17ea6a55f0)
 (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 ocamlfind.1.9.5 1.9.5"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall ocamlfind.1.9.5;\
             \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 \"\\\"debian-12\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'ocamlfind.1.9.5' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
 (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
      (network host)
      (shell  "opam reinstall cucumber.1.0.4;\
             \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 \"\\\"debian-12\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'cucumber.1.0.4' && 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 cucumber.1.0.4) || true"))
 (run (shell  "opam reinstall --with-test --verbose cucumber.1.0.4;\
             \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 \"\\\"debian-12\\\"\"; then\
             \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
             \n          fi;\
             \n          test \"$pkg\" != 'cucumber.1.0.4' && partial_fails=\"$partial_fails $pkg\";\
             \n        done;\
             \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
             \n        exit 1"))
)

2025-03-13 14:03.37: Waiting for resource in pool OCluster
2025-03-13 16:38.26: Waiting for worker…
2025-03-13 16:40.25: Got resource from pool OCluster
Building on x86-bm-c1.sw.ocaml.org
All commits already cached
Updating files:  43% (9778/22644)
Updating files:  44% (9964/22644)
Updating files:  45% (10190/22644)
Updating files:  46% (10417/22644)
Updating files:  47% (10643/22644)
Updating files:  48% (10870/22644)
Updating files:  49% (11096/22644)
Updating files:  50% (11322/22644)
Updating files:  51% (11549/22644)
Updating files:  52% (11775/22644)
Updating files:  53% (12002/22644)
Updating files:  54% (12228/22644)
Updating files:  55% (12455/22644)
Updating files:  56% (12681/22644)
Updating files:  57% (12908/22644)
Updating files:  58% (13134/22644)
Updating files:  59% (13360/22644)
Updating files:  60% (13587/22644)
Updating files:  61% (13813/22644)
Updating files:  62% (14040/22644)
Updating files:  63% (14266/22644)
Updating files:  64% (14493/22644)
Updating files:  65% (14719/22644)
Updating files:  66% (14946/22644)
Updating files:  67% (15172/22644)
Updating files:  68% (15398/22644)
Updating files:  69% (15625/22644)
Updating files:  70% (15851/22644)
Updating files:  71% (16078/22644)
Updating files:  72% (16304/22644)
Updating files:  73% (16531/22644)
Updating files:  74% (16757/22644)
Updating files:  75% (16983/22644)
Updating files:  76% (17210/22644)
Updating files:  77% (17436/22644)
Updating files:  78% (17663/22644)
Updating files:  79% (17889/22644)
Updating files:  80% (18116/22644)
Updating files:  81% (18342/22644)
Updating files:  82% (18569/22644)
Updating files:  83% (18795/22644)
Updating files:  84% (19021/22644)
Updating files:  85% (19248/22644)
Updating files:  86% (19474/22644)
Updating files:  87% (19701/22644)
Updating files:  88% (19927/22644)
Updating files:  89% (20154/22644)
Updating files:  90% (20380/22644)
Updating files:  90% (20406/22644)
Updating files:  91% (20607/22644)
Updating files:  92% (20833/22644)
Updating files:  93% (21059/22644)
Updating files:  94% (21286/22644)
Updating files:  95% (21512/22644)
Updating files:  96% (21739/22644)
Updating files:  97% (21965/22644)
Updating files:  98% (22192/22644)
Updating files:  99% (22418/22644)
Updating files: 100% (22644/22644)
Updating files: 100% (22644/22644), done.
HEAD is now at 906fb78ee2 Merge pull request #27594 from mbarbin/dunolint
Merge made by the 'ort' strategy.
 packages/ocamlfind/ocamlfind.1.9.5/opam | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(from ocaml/opam:debian-12-ocaml-4.14@sha256:a6696fcec2a7196cd06fe5e601406bdcfa34a6483ab7cf7de982ae17ea6a55f0)
2025-03-13 16:40.29 ---> using "80fd7825ce1a116f8797a39876773ae08c12e9665497e2c87a54f899dfa0710c" from cache

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

/: (workdir /home/opam)

/home/opam: (run (shell "sudo ln -f /usr/bin/opam-dev /usr/bin/opam"))
2025-03-13 16:40.29 ---> using "2f79bcf5e8f633cc179931f47e4478f88e9aac17cfe5e7e859dc3cb46b8830f1" from cache

/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 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 ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[opam-repository-archive] synchronised from git+https://github.com/ocaml/opam-repository-archive
[default] synchronised from file:///home/opam/opam-repository
2025-03-13 16:40.29 ---> using "b247a5363e2b7a112eea930be80a14ef0483774222bc0faa32ee684629fac6c3" from cache

/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.4.0~alpha1~dev (f1cf50f2711981a605f81a80c68b73774d5841ff)
# self-upgrade         no
# system               arch=x86_64 os=linux os-distribution=debian os-version=12
# solver               builtin-0install
# install-criteria     -changed,-count[avoid-version,solution]
# upgrade-criteria     -count[avoid-version,solution]
# jobs                 39
# repositories         1 (local), 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-03-13 16:40.29 ---> using "738df2896a32e42d0ddd19b6bae8aa0827576b126c1f6655d8ccff0fff105b1f" from cache

/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-03-13 16:40.29 ---> using "d13c11b5fb48861869fac18fc65afc4519c0bda8c165f31f60c9096ea7040513" from cache

/home/opam: (copy (src .) (dst opam-repository/))
2025-03-13 16:40.31 ---> using "bf79031c9bde6b510b33ce29f6f54899aa875129bab60295e83b13d67edc0d4d" from cache

/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-03-13 16:40.31 ---> using "a2e88cbe0b8a7983007a53c9f3785bd4f6c313608e2f040410ae1adfd1aa1c51" from cache

/home/opam: (run (network host)
                 (shell "opam update --depexts || true"))
+ /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 [246 kB]
- Fetched 349 kB in 0s (1183 kB/s)
- Reading package lists...
2025-03-13 16:40.31 ---> using "b6d64f2b040376d9535f173f2507aad0eda5e91c35cf0f083ee33d2526295e11" from cache

/home/opam: (run (shell "opam pin add -k version -yn ocamlfind.1.9.5 1.9.5"))
ocamlfind is now pinned to version 1.9.5
2025-03-13 16:40.31 ---> using "009ab918fd26c27a6c93e6f8752ede71f76268f6829f5c7f9a198e42a4b1a46e" from cache

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

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved ocamlfind.1.9.5  (cached)
-> installed ocamlfind.1.9.5
Done.
# To update the current shell environment, run: eval $(opam env)
2025-03-13 16:40.31 ---> using "9a4f255864aea1b3bda3c7df8691aa25275d99cf83df4ca5890ba22397e225e6" from cache

/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
                 (network host)
                 (shell  "opam reinstall cucumber.1.0.4;\
                        \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 \"\\\"debian-12\\\"\"; then\
                        \n            echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
                        \n          fi;\
                        \n          test \"$pkg\" != 'cucumber.1.0.4' && partial_fails=\"$partial_fails $pkg\";\
                        \n        done;\
                        \n        test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
                        \n        exit 1"))
cucumber.1.0.4 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 10 packages
  - install base              v0.16.3 [required by cucumber]
  - install cmdliner          1.3.0   [required by cucumber]
  - install conf-bash         1       [required by base]
  - install csexp             1.5.2   [required by dune-configurator]
  - install cucumber          1.0.4
  - install dune              3.17.2  [required by cucumber]
  - install dune-configurator 3.17.2  [required by base]
  - install re                1.12.0  [required by cucumber]
  - install seq               base    [required by re]
  - install sexplib0          v0.16.0 [required by base]

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved base.v0.16.3  (cached)
-> retrieved cmdliner.1.3.0  (cached)
-> retrieved csexp.1.5.2  (cached)
-> installed conf-bash.1
-> retrieved cucumber.1.0.4  (https://github.com/cucumber/cucumber.ml/releases/download/v1.0.4/cucumber-1.0.4.tbz)
-> retrieved dune.3.17.2, dune-configurator.3.17.2  (cached)
-> retrieved re.1.12.0  (cached)
-> retrieved seq.base  (cached)
-> retrieved sexplib0.v0.16.0  (cached)
-> installed cmdliner.1.3.0
-> installed seq.base
-> installed dune.3.17.2
-> installed csexp.1.5.2
-> installed sexplib0.v0.16.0
-> installed re.1.12.0
-> installed dune-configurator.3.17.2
-> installed base.v0.16.3
-> installed cucumber.1.0.4
Done.
# To update the current shell environment, run: eval $(opam env)
2025-03-13 16:42.43 ---> saved as "2c2505d81b301b42cc277f5c5e4ecdd78c4b84ee258ef843355bb0a1e4acf628"

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

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved cucumber.1.0.4  (https://github.com/cucumber/cucumber.ml/releases/download/v1.0.4/cucumber-1.0.4.tbz)
-> removed   cucumber.1.0.4
-> installed cucumber.1.0.4
Done.
# To update the current shell environment, run: eval $(opam env)
2025-03-13 16:43.15 ---> saved as "d03bd827ea7ba5995e8d278569dedb670ae1bd74b9667c5c693006a48893d114"

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

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing  1/4: [cucumber.1.0.4: extract]
-> retrieved cucumber.1.0.4  (cached)
Processing  2/4: [cucumber: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "cucumber" "-j" "39" "@install" "@runtest" (CWD=/home/opam/.opam/4.14/.opam-switch/build/cucumber.1.0.4)
- (cd _build/default/lib/gherkin-c/c && /usr/bin/make libs libs_so)
- cd src; /usr/bin/make CC=cc libs
- make[1]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/cucumber.1.0.4/_build/default/lib/gherkin-c/c/src'
- mkdir -p ../objs/
- cc -c -Wall -Werror -g -fPIC  -MMD -MP -MF ../objs/file_reader.d -I ../include -I . file_reader.c -o ../objs/file_reader.o
- mkdir -p ../objs/
- cc -c -Wall -Werror -g -fPIC  -MMD -MP -MF ../objs/file_utf8_source.d -I ../include -I . file_utf8_source.c -o ../objs/file_utf8_source.o
- mkdir -p ../objs/
- cc -c -Wall -Werror -g -fPIC  -MMD -MP -MF ../objs/print_utilities.d -I ../include -I . print_utilities.c -o ../objs/print_utilities.o
- mkdir -p ../objs/
- cc -c -Wall -Werror -g -fPIC  -MMD -MP -MF ../objs/string_utilities.d -I ../include -I . string_utilities.c -o ../objs/string_utilities.o
- mkdir -p ../objs/
- cc -c -Wall -Werror -g -fPIC  -MMD -MP -MF ../objs/unicode_utilities.d -I ../include -I . unicode_utilities.c -o ../objs/unicode_utilities.o
- mkdir -p ../objs/
- cc -c -Wall -Werror -g -fPIC  -MMD -MP -MF ../objs/utf8_source.d -I ../include -I . utf8_source.c -o ../objs/utf8_source.o
- mkdir -p ../objs/
- cc -c -Wall -Werror -g -fPIC  -MMD -MP -MF ../objs/incrementing_id_generator.d -I ../include -I . incrementing_id_generator.c -o ../objs/incrementing_id_generator.o
- mkdir -p ../objs/
- cc -c -Wall -Werror -g -fPIC  -MMD -MP -MF ../objs/parser.d -I ../include -I . parser.c -o ../objs/parser.o
- mkdir -p ../objs/
- cc -c -Wall -Werror -g -fPIC  -MMD -MP -MF ../objs/token_scanner.d -I ../include -I . token_scanner.c -o ../objs/token_scanner.o
- mkdir -p ../objs/
- cc -c -Wall -Werror -g -fPIC  -MMD -MP -MF ../objs/file_token_scanner.d -I ../include -I . file_token_scanner.c -o ../objs/file_token_scanner.o
- mkdir -p ../objs/
- cc -c -Wall -Werror -g -fPIC  -MMD -MP -MF ../objs/string_token_scanner.d -I ../include -I . string_token_scanner.c -o ../objs/string_token_scanner.o
- mkdir -p ../objs/
- cc -c -Wall -Werror -g -fPIC  -MMD -MP -MF ../objs/token_matcher.d -I ../include -I . token_matcher.c -o ../objs/token_matcher.o
- mkdir -p ../objs/
- cc -c -Wall -Werror -g -fPIC  -MMD -MP -MF ../objs/token.d -I ../include -I . token.c -o ../objs/token.o
- mkdir -p ../objs/
- cc -c -Wall -Werror -g -fPIC  -MMD -MP -MF ../objs/token_queue.d -I ../include -I . token_queue.c -o ../objs/token_queue.o
- mkdir -p ../objs/
- cc -c -Wall -Werror -g -fPIC  -MMD -MP -MF ../objs/item_queue.d -I ../include -I . item_queue.c -o ../objs/item_queue.o
- mkdir -p ../objs/
- cc -c -Wall -Werror -g -fPIC  -MMD -MP -MF ../objs/gherkin_line.d -I ../include -I . gherkin_line.c -o ../objs/gherkin_line.o
- mkdir -p ../objs/
- cc -c -Wall -Werror -g -fPIC  -MMD -MP -MF ../objs/error.d -I ../include -I . error.c -o ../objs/error.o
- mkdir -p ../objs/
- cc -c -Wall -Werror -g -fPIC  -MMD -MP -MF ../objs/error_list.d -I ../include -I . error_list.c -o ../objs/error_list.o
- mkdir -p ../objs/
- cc -c -Wall -Werror -g -fPIC  -MMD -MP -MF ../objs/dialect.d -I ../include -I . dialect.c -o ../objs/dialect.o
- mkdir -p ../objs/
- cc -c -Wall -Werror -g -fPIC  -MMD -MP -MF ../objs/ast_builder.d -I ../include -I . ast_builder.c -o ../objs/ast_builder.o
- mkdir -p ../objs/
- cc -c -Wall -Werror -g -fPIC  -MMD -MP -MF ../objs/ast_node.d -I ../include -I . ast_node.c -o ../objs/ast_node.o
- mkdir -p ../objs/
- cc -c -Wall -Werror -g -fPIC  -MMD -MP -MF ../objs/gherkin_document.d -I ../include -I . gherkin_document.c -o ../objs/gherkin_document.o
- mkdir -p ../objs/
- cc -c -Wall -Werror -g -fPIC  -MMD -MP -MF ../objs/feature.d -I ../include -I . feature.c -o ../objs/feature.o
- mkdir -p ../objs/
- cc -c -Wall -Werror -g -fPIC  -MMD -MP -MF ../objs/rule.d -I ../include -I . rule.c -o ../objs/rule.o
- mkdir -p ../objs/
- cc -c -Wall -Werror -g -fPIC  -MMD -MP -MF ../objs/scenario.d -I ../include -I . scenario.c -o ../objs/scenario.o
- mkdir -p ../objs/
- cc -c -Wall -Werror -g -fPIC  -MMD -MP -MF ../objs/background.d -I ../include -I . background.c -o ../objs/background.o
- mkdir -p ../objs/
- cc -c -Wall -Werror -g -fPIC  -MMD -MP -MF ../objs/comment.d -I ../include -I . comment.c -o ../objs/comment.o
- mkdir -p ../objs/
- cc -c -Wall -Werror -g -fPIC  -MMD -MP -MF ../objs/data_table.d -I ../include -I . data_table.c -o ../objs/data_table.o
- mkdir -p ../objs/
- cc -c -Wall -Werror -g -fPIC  -MMD -MP -MF ../objs/doc_string.d -I ../include -I . doc_string.c -o ../objs/doc_string.o
- mkdir -p ../objs/
- cc -c -Wall -Werror -g -fPIC  -MMD -MP -MF ../objs/example_table.d -I ../include -I . example_table.c -o ../objs/example_table.o
- mkdir -p ../objs/
- cc -c -Wall -Werror -g -fPIC  -MMD -MP -MF ../objs/step.d -I ../include -I . step.c -o ../objs/step.o
- mkdir -p ../objs/
- cc -c -Wall -Werror -g -fPIC  -MMD -MP -MF ../objs/table_cell.d -I ../include -I . table_cell.c -o ../objs/table_cell.o
- mkdir -p ../objs/
- cc -c -Wall -Werror -g -fPIC  -MMD -MP -MF ../objs/table_row.d -I ../include -I . table_row.c -o ../objs/table_row.o
- mkdir -p ../objs/
- cc -c -Wall -Werror -g -fPIC  -MMD -MP -MF ../objs/tag.d -I ../include -I . tag.c -o ../objs/tag.o
- mkdir -p ../objs/
- cc -c -Wall -Werror -g -fPIC  -MMD -MP -MF ../objs/compiler.d -I ../include -I . compiler.c -o ../objs/compiler.o
- mkdir -p ../objs/
- cc -c -Wall -Werror -g -fPIC  -MMD -MP -MF ../objs/pickle.d -I ../include -I . pickle.c -o ../objs/pickle.o
- mkdir -p ../objs/
- cc -c -Wall -Werror -g -fPIC  -MMD -MP -MF ../objs/pickle_ast_node_id.d -I ../include -I . pickle_ast_node_id.c -o ../objs/pickle_ast_node_id.o
- mkdir -p ../objs/
- cc -c -Wall -Werror -g -fPIC  -MMD -MP -MF ../objs/pickle_cell.d -I ../include -I . pickle_cell.c -o ../objs/pickle_cell.o
- mkdir -p ../objs/
- cc -c -Wall -Werror -g -fPIC  -MMD -MP -MF ../objs/pickle_row.d -I ../include -I . pickle_row.c -o ../objs/pickle_row.o
- mkdir -p ../objs/
- cc -c -Wall -Werror -g -fPIC  -MMD -MP -MF ../objs/pickle_step.d -I ../include -I . pickle_step.c -o ../objs/pickle_step.o
- mkdir -p ../objs/
- cc -c -Wall -Werror -g -fPIC  -MMD -MP -MF ../objs/pickle_string.d -I ../include -I . pickle_string.c -o ../objs/pickle_string.o
- mkdir -p ../objs/
- cc -c -Wall -Werror -g -fPIC  -MMD -MP -MF ../objs/pickle_table.d -I ../include -I . pickle_table.c -o ../objs/pickle_table.o
- mkdir -p ../objs/
- cc -c -Wall -Werror -g -fPIC  -MMD -MP -MF ../objs/pickle_tag.d -I ../include -I . pickle_tag.c -o ../objs/pickle_tag.o
- mkdir -p ../objs/
- cc -c -Wall -Werror -g -fPIC  -MMD -MP -MF ../objs/event.d -I ../include -I . event.c -o ../objs/event.o
- mkdir -p ../objs/
- cc -c -Wall -Werror -g -fPIC  -MMD -MP -MF ../objs/error_event.d -I ../include -I . error_event.c -o ../objs/error_event.o
- mkdir -p ../objs/
- cc -c -Wall -Werror -g -fPIC  -MMD -MP -MF ../objs/gherkin_document_event.d -I ../include -I . gherkin_document_event.c -o ../objs/gherkin_document_event.o
- mkdir -p ../objs/
- cc -c -Wall -Werror -g -fPIC  -MMD -MP -MF ../objs/pickle_event.d -I ../include -I . pickle_event.c -o ../objs/pickle_event.o
- mkdir -p ../objs/
- cc -c -Wall -Werror -g -fPIC  -MMD -MP -MF ../objs/source_event.d -I ../include -I . source_event.c -o ../objs/source_event.o
- mkdir -p ../objs/
- cc -c -Wall -Werror -g -fPIC  -MMD -MP -MF ../objs/ast_printer.d -I ../include -I . ast_printer.c -o ../objs/ast_printer.o
- mkdir -p ../objs/
- cc -c -Wall -Werror -g -fPIC  -MMD -MP -MF ../objs/pickle_printer.d -I ../include -I . pickle_printer.c -o ../objs/pickle_printer.o
- mkdir -p ../libs/
- ar cr ../libs/libgherkin.a ../objs/file_reader.o ../objs/file_utf8_source.o ../objs/print_utilities.o ../objs/string_utilities.o ../objs/unicode_utilities.o ../objs/utf8_source.o ../objs/incrementing_id_generator.o ../objs/parser.o ../objs/token_scanner.o ../objs/file_token_scanner.o ../objs/string_token_scanner.o ../objs/token_matcher.o ../objs/token.o ../objs/token_queue.o ../objs/item_queue.o ../objs/gherkin_line.o ../objs/error.o ../objs/error_list.o ../objs/dialect.o ../objs/ast_builder.o ../objs/ast_node.o ../objs/gherkin_document.o ../objs/feature.o ../objs/rule.o ../objs/scenario.o ../objs/background.o ../objs/comment.o ../objs/data_table.o ../objs/doc_string.o ../objs/example_table.o ../objs/step.o ../objs/table_cell.o ../objs/table_row.o ../objs/tag.o ../objs/compiler.o ../objs/pickle.o ../objs/pickle_ast_node_id.o ../objs/pickle_cell.o ../objs/pickle_row.o ../objs/pickle_step.o ../objs/pickle_string.o ../objs/pickle_table.o ../objs/pickle_tag.o ../objs/event.o ../objs/error_event.o ../objs/gherkin_document_event.o ../objs/pickle_event.o ../objs/source_event.o ../objs/ast_printer.o ../objs/pickle_printer.o
- make[1]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/cucumber.1.0.4/_build/default/lib/gherkin-c/c/src'
- cd src; /usr/bin/make CC=cc libs_so
- make[1]: Entering directory '/home/opam/.opam/4.14/.opam-switch/build/cucumber.1.0.4/_build/default/lib/gherkin-c/c/src'
- mkdir -p ../libs/
- cc -shared ../objs/file_reader.o ../objs/file_utf8_source.o ../objs/print_utilities.o ../objs/string_utilities.o ../objs/unicode_utilities.o ../objs/utf8_source.o ../objs/incrementing_id_generator.o ../objs/parser.o ../objs/token_scanner.o ../objs/file_token_scanner.o ../objs/string_token_scanner.o ../objs/token_matcher.o ../objs/token.o ../objs/token_queue.o ../objs/item_queue.o ../objs/gherkin_line.o ../objs/error.o ../objs/error_list.o ../objs/dialect.o ../objs/ast_builder.o ../objs/ast_node.o ../objs/gherkin_document.o ../objs/feature.o ../objs/rule.o ../objs/scenario.o ../objs/background.o ../objs/comment.o ../objs/data_table.o ../objs/doc_string.o ../objs/example_table.o ../objs/step.o ../objs/table_cell.o ../objs/table_row.o ../objs/tag.o ../objs/compiler.o ../objs/pickle.o ../objs/pickle_ast_node_id.o ../objs/pickle_cell.o ../objs/pickle_row.o ../objs/pickle_step.o ../objs/pickle_string.o ../objs/pickle_table.o ../objs/pickle_tag.o ../objs/event.o ../objs/error_event.o ../objs/gherkin_document_event.o ../objs/pickle_event.o ../objs/source_event.o ../objs/ast_printer.o ../objs/pickle_printer.o -o ../libs/libgherkin.so.25.0.2
- make[1]: Leaving directory '/home/opam/.opam/4.14/.opam-switch/build/cucumber.1.0.4/_build/default/lib/gherkin-c/c/src'
-> compiled  cucumber.1.0.4
-> removed   cucumber.1.0.4
-> installed cucumber.1.0.4
Done.
# To update the current shell environment, run: eval $(opam env)
2025-03-13 16:43.46 ---> saved as "8bbe09d7231e99d2192faeec0f52ee0df08e7c5bd5735ffe74d24e072dd9b427"
Job succeeded
2025-03-13 16:44.02: Job succeeded