- github
- ocaml
- opam-repository
- 4080d9
- distributions,fedora-41-ocaml-4.14,quickjs.0.1.2,tests
(not at the head of any monitored branch or PR)
2025-03-12 19:04.01: New job: test quickjs.0.1.2, using opam dev
from https://github.com/ocaml/opam-repository.git#refs/pull/27615/head (4080d99a77db79c247f32e749a7b12d67ac4a916)
on fedora-41-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/27615/head" && git reset --hard 4080d99a
git fetch origin master
git merge --no-edit 8f63148a9025a7b775a069a6c0b0385c22ad51d3
cat > ../Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:fedora-41-ocaml-4.14@sha256:59b5b6d90727d552ab41b08b1f2ae83fb9e88d6b7dfb4d628a9b7fb99231678b
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 quickjs.0.1.2 0.1.2
RUN opam reinstall quickjs.0.1.2; \
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 "\"fedora-41\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'quickjs.0.1.2' && 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 quickjs.0.1.2) || true
RUN opam reinstall --with-test --verbose quickjs.0.1.2; \
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 "\"fedora-41\""; then \
echo "A package failed and has been disabled for CI using the 'x-ci-accept-failures' field."; \
fi; \
test "$pkg" != 'quickjs.0.1.2' && 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-12 19:04.01: Using cache hint "ocaml/opam:fedora-41-ocaml-4.14@sha256:59b5b6d90727d552ab41b08b1f2ae83fb9e88d6b7dfb4d628a9b7fb99231678b-quickjs.0.1.2-4080d99a77db79c247f32e749a7b12d67ac4a916"
2025-03-12 19:04.01: Using OBuilder spec:
((from ocaml/opam:fedora-41-ocaml-4.14@sha256:59b5b6d90727d552ab41b08b1f2ae83fb9e88d6b7dfb4d628a9b7fb99231678b)
(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 quickjs.0.1.2 0.1.2"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall quickjs.0.1.2;\
\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 \"\\\"fedora-41\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'quickjs.0.1.2' && 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 quickjs.0.1.2) || true"))
(run (shell "opam reinstall --with-test --verbose quickjs.0.1.2;\
\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 \"\\\"fedora-41\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'quickjs.0.1.2' && 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-12 19:04.01: Waiting for resource in pool OCluster
2025-03-12 19:04.03: Waiting for worker…
2025-03-12 19:04.03: Got resource from pool OCluster
Building on doris.caelum.ci.dev
All commits already cached
HEAD is now at 8f63148a90 Merge pull request #27598 from jim-portegies/opam-publish-coq-waterproof.2.2.0-8.20
Merge made by the 'ort' strategy.
packages/quickjs/quickjs.0.1.1/opam | 2 +-
packages/quickjs/quickjs.0.1.2/opam | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
(from ocaml/opam:fedora-41-ocaml-4.14@sha256:59b5b6d90727d552ab41b08b1f2ae83fb9e88d6b7dfb4d628a9b7fb99231678b)
2025-03-12 19:04.55 ---> using "96270923649ba484667a62153bc70bc54de622ed5f9124ef0a8700bfc65af15c" 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-12 19:04.55 ---> using "39d9bf827877256c6c212c2c2a5c7a253ee341af585c761544dc198413d4eb7e" 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
[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 ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[opam-repository-archive] synchronised from git+https://github.com/ocaml/opam-repository-archive
[default] synchronised from file:///home/opam/opam-repository
2025-03-12 19:04.55 ---> using "994137052378c882e1eccc84c308f444823b63ec243f0d3f5805be1bf007e726" 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=fedora os-version=41
# solver builtin-0install
# install-criteria -changed,-count[avoid-version,solution]
# upgrade-criteria -count[avoid-version,solution]
# jobs 255
# 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-12 19:04.55 ---> using "3b6a125573314d56be8c4612e3f052b7b73ee108023dec11e061fc8e7e4e2018" 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-12 19:04.55 ---> using "29d01c85f62d343ddfe041a55486cb4134a00c918919361dfff7dc152f3cea02" from cache
/home/opam: (copy (src .) (dst opam-repository/))
2025-03-12 19:04.57 ---> saved as "a27cbefb9e7951d0c1e3ce72c7eb4b1f19ad886b47563d829d24b6183b24dfa6"
/home/opam: (run (shell "opam repository set-url --strict default opam-repository/"))
[default] Initialised
2025-03-12 19:05.41 ---> saved as "e1d303fe3c9242c08982f337923aa712865f11a7122fee5366ef75f92f09f1cc"
/home/opam: (run (network host)
(shell "opam update --depexts || true"))
+ /usr/bin/sudo "yum" "makecache"
- Updating and loading repositories:
- Fedora 41 - x86_64 - Updates 100% | 198.4 KiB/s | 25.6 KiB | 00m00s
- Fedora 41 - x86_64 - Updates 100% | 4.5 MiB/s | 2.8 MiB | 00m01s
- Repositories loaded.
- Metadata cache created.
2025-03-12 19:05.44 ---> saved as "8b42d2b3301a31e108c1bbc5731f975653b91c6a1b0c7f4cbcc948d0b9a69a8a"
/home/opam: (run (shell "opam pin add -k version -yn quickjs.0.1.2 0.1.2"))
quickjs is now pinned to version 0.1.2
2025-03-12 19:05.45 ---> saved as "b176f51cfe664940507c12c625725042df7499c921e75ac4707505020456a38f"
/home/opam: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam reinstall quickjs.0.1.2;\
\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 \"\\\"fedora-41\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'quickjs.0.1.2' && partial_fails=\"$partial_fails $pkg\";\
\n done;\
\n test \"${partial_fails}\" != \"\" && echo \"opam-repo-ci detected dependencies failing: ${partial_fails}\";\
\n exit 1"))
quickjs.0.1.2 is not installed. Install it? [Y/n] y
The following actions will be performed:
=== install 8 packages
- install bigarray-compat 1.1.0 [required by ctypes]
- install csexp 1.5.2 [required by dune-configurator]
- install ctypes 0.23.0 [required by quickjs]
- install dune 3.17.2 [required by quickjs]
- install dune-configurator 3.17.2 [required by ctypes]
- install integers 0.7.0 [required by quickjs]
- install quickjs 0.1.2 (pinned)
- install stdlib-shims 0.3.0 [required by integers]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved bigarray-compat.1.1.0 (cached)
-> retrieved csexp.1.5.2 (cached)
-> retrieved ctypes.0.23.0 (cached)
-> retrieved dune.3.17.2, dune-configurator.3.17.2 (cached)
-> retrieved integers.0.7.0 (cached)
-> retrieved quickjs.0.1.2 (cached)
-> retrieved stdlib-shims.0.3.0 (cached)
-> installed dune.3.17.2
-> installed stdlib-shims.0.3.0
-> installed csexp.1.5.2
-> installed bigarray-compat.1.1.0
-> installed integers.0.7.0
-> installed dune-configurator.3.17.2
-> installed ctypes.0.23.0
-> installed quickjs.0.1.2
Done.
# To update the current shell environment, run: eval $(opam env)
2025-03-12 19:06.23 ---> saved as "e657f9d482836871dd7954b5d3eac283f07586d3c4e553e7d49cc25bac7aa38d"
/home/opam: (run (network host)
(shell "(opam reinstall --with-test quickjs.0.1.2) || true"))
The following actions will be performed:
=== recompile 1 package
- recompile quickjs 0.1.2 (pinned)
=== install 49 packages
- install alcotest 1.8.0 [required by quickjs]
- install astring 0.8.5 [required by alcotest, ocaml-lsp-server]
- install base v0.16.3 [required by ocaml-lsp-server]
- install base-bytes base [required by ocp-indent]
- install camlp-streams 5.0.1 [required by ocaml-lsp-server]
- install chrome-trace 3.17.2 [required by ocaml-lsp-server]
- install cmdliner 1.3.0 [required by alcotest, ocamlformat]
- install conf-bash 1 [required by base]
- install dune-build-info 3.17.2 [required by ocaml-lsp-server]
- install dune-rpc 3.17.2 [required by ocaml-lsp-server]
- install dyn 3.17.2 [required by ocaml-lsp-server]
- install either 1.0.0 [required by ocamlformat-lib]
- install fiber 3.7.0 [required by ocaml-lsp-server]
- install fix 20230505 [required by ocamlformat-lib]
- install fmt 0.10.0 [required by quickjs]
- install fpath 0.7.3 [required by ocamlformat-lib]
- install jsonrpc 1.20.1 [required by ocaml-lsp-server]
- install lsp 1.20.1 [required by ocaml-lsp-server]
- install menhir 20240715 [required by ocamlformat-lib]
- install menhirCST 20240715 [required by menhir]
- install menhirLib 20240715 [required by ocamlformat-lib]
- install menhirSdk 20240715 [required by ocamlformat-lib]
- install merlin-lib 4.18-414 [required by ocaml-lsp-server]
- install ocaml-lsp-server 1.20.1-4.14 [required by quickjs]
- install ocaml-syntax-shims 1.0.0 [required by alcotest]
- install ocaml-version 3.7.3 [required by ocamlformat-lib]
- install ocamlbuild 0.16.1 [required by fmt, astring, uutf]
- install ocamlc-loc 3.17.2 [required by ocaml-lsp-server]
- install ocamlfind 1.9.8 [required by fmt, astring, uutf]
- install ocamlformat 0.26.1 [required by quickjs]
- install ocamlformat-lib 0.26.1 [required by ocamlformat]
- install ocamlformat-rpc-lib 0.27.0 [required by ocaml-lsp-server]
- install ocp-indent 1.8.1 [required by ocamlformat-lib]
- install ordering 3.17.2 [required by ocaml-lsp-server]
- install pp 2.0.0 [required by ocaml-lsp-server]
- install ppx_yojson_conv_lib v0.16.0 [required by ocaml-lsp-server]
- install re 1.12.0 [required by ocaml-lsp-server, alcotest, ocamlformat]
- install result 1.5 [required by ocamlformat-lib]
- install seq base [required by re]
- install sexplib0 v0.16.0 [required by base]
- install spawn v0.17.0 [required by ocaml-lsp-server]
- install stdio v0.16.0 [required by ocamlformat-lib]
- install stdune 3.17.2 [required by ocaml-lsp-server]
- install topkg 1.0.7 [required by fmt, astring, uutf]
- install uucp 16.0.0 [required by uuseg]
- install uuseg 16.0.0 [required by ocamlformat-lib]
- install uutf 1.0.3 [required by alcotest]
- install xdg 3.17.2 [required by ocaml-lsp-server]
- install yojson 2.2.2 [required by ocaml-lsp-server]
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved alcotest.1.8.0 (https://github.com/mirage/alcotest/releases/download/1.8.0/alcotest-1.8.0.tbz)
-> retrieved astring.0.8.5 (https://erratique.ch/software/astring/releases/astring-0.8.5.tbz)
-> retrieved base.v0.16.3 (https://github.com/janestreet/base/archive/refs/tags/v0.16.3.tar.gz)
-> retrieved camlp-streams.5.0.1 (https://github.com/ocaml/camlp-streams/archive/v5.0.1.tar.gz)
-> installed camlp-streams.5.0.1
-> retrieved chrome-trace.3.17.2, dune-build-info.3.17.2, dune-rpc.3.17.2, dyn.3.17.2, ocamlc-loc.3.17.2, ordering.3.17.2, stdune.3.17.2, xdg.3.17.2 (https://github.com/ocaml/dune/releases/download/3.17.2/dune-3.17.2.tbz)
-> retrieved cmdliner.1.3.0 (https://erratique.ch/software/cmdliner/releases/cmdliner-1.3.0.tbz)
-> installed conf-bash.1
-> retrieved either.1.0.0 (https://github.com/mirage/either/releases/download/1.0.0/either-1.0.0.tbz)
-> installed either.1.0.0
-> installed ordering.3.17.2
-> installed dune-build-info.3.17.2
-> installed chrome-trace.3.17.2
-> retrieved fiber.3.7.0 (https://github.com/ocaml-dune/fiber/releases/download/3.7.0/fiber-lwt-3.7.0.tbz)
-> installed xdg.3.17.2
-> retrieved fix.20230505 (https://gitlab.inria.fr/fpottier/fix/-/archive/20230505/archive.tar.gz)
-> retrieved fmt.0.10.0 (https://erratique.ch/software/fmt/releases/fmt-0.10.0.tbz)
-> retrieved fpath.0.7.3 (https://erratique.ch/software/fpath/releases/fpath-0.7.3.tbz)
-> installed fix.20230505
-> retrieved jsonrpc.1.20.1, lsp.1.20.1 (https://github.com/ocaml/ocaml-lsp/releases/download/1.20.1/lsp-1.20.1.tbz)
-> retrieved menhir.20240715, menhirCST.20240715, menhirLib.20240715, menhirSdk.20240715 (https://gitlab.inria.fr/fpottier/menhir/-/archive/20240715/archive.tar.gz)
-> installed cmdliner.1.3.0
-> installed jsonrpc.1.20.1
-> installed menhirCST.20240715
-> installed menhirSdk.20240715
-> retrieved merlin-lib.4.18-414 (https://github.com/ocaml/merlin/releases/download/v4.18-414/merlin-4.18-414.tbz)
-> installed menhirLib.20240715
-> retrieved ocaml-lsp-server.1.20.1-4.14 (https://github.com/ocaml/ocaml-lsp/releases/download/1.20.1-4.14/lsp-1.20.1-4.14.tbz)
-> retrieved ocaml-syntax-shims.1.0.0 (https://github.com/ocaml-ppx/ocaml-syntax-shims/releases/download/1.0.0/ocaml-syntax-shims-1.0.0.tbz)
-> retrieved ocaml-version.3.7.3 (https://github.com/ocurrent/ocaml-version/releases/download/v3.7.3/ocaml-version-3.7.3.tbz)
-> retrieved ocamlbuild.0.16.1 (https://github.com/ocaml/ocamlbuild/archive/refs/tags/0.16.1.tar.gz)
-> installed ocaml-version.3.7.3
-> retrieved ocamlfind.1.9.8 (https://github.com/ocaml/ocamlfind/archive/refs/tags/findlib-1.9.8.tar.gz)
-> installed ocaml-syntax-shims.1.0.0
-> retrieved ocamlformat.0.26.1, ocamlformat-lib.0.26.1 (https://github.com/ocaml-ppx/ocamlformat/releases/download/0.26.1/ocamlformat-0.26.1.tbz)
-> retrieved ocamlformat-rpc-lib.0.27.0 (https://github.com/ocaml-ppx/ocamlformat/releases/download/0.27.0/ocamlformat-0.27.0.tbz)
-> retrieved ocp-indent.1.8.1 (https://github.com/OCamlPro/ocp-indent/archive/1.8.1.tar.gz)
-> installed ocamlfind.1.9.8
-> installed base-bytes.base
-> installed ocamlformat-rpc-lib.0.27.0
-> retrieved pp.2.0.0 (https://github.com/ocaml-dune/pp/releases/download/2.0.0/pp-2.0.0.tbz)
-> retrieved ppx_yojson_conv_lib.v0.16.0 (https://ocaml.janestreet.com/ocaml-core/v0.16/files/ppx_yojson_conv_lib-v0.16.0.tar.gz)
-> installed pp.2.0.0
-> installed ocamlbuild.0.16.1
-> installed ocp-indent.1.8.1
-> retrieved re.1.12.0 (https://github.com/ocaml/ocaml-re/releases/download/1.12.0/re-1.12.0.tbz)
-> retrieved result.1.5 (https://github.com/janestreet/result/releases/download/1.5/result-1.5.tbz)
-> retrieved seq.base (2 extra sources)
-> retrieved seq.base (2 extra sources)
-> installed seq.base
-> retrieved sexplib0.v0.16.0 (https://ocaml.janestreet.com/ocaml-core/v0.16/files/sexplib0-v0.16.0.tar.gz)
-> installed result.1.5
-> installed dyn.3.17.2
-> installed re.1.12.0
-> installed sexplib0.v0.16.0
-> installed merlin-lib.4.18-414
-> retrieved spawn.v0.17.0 (https://github.com/janestreet/spawn/releases/download/v0.17.0/spawn-v0.17.0.tbz)
-> retrieved stdio.v0.16.0 (https://ocaml.janestreet.com/ocaml-core/v0.16/files/stdio-v0.16.0.tar.gz)
-> retrieved topkg.1.0.7 (https://erratique.ch/software/topkg/releases/topkg-1.0.7.tbz)
-> removed quickjs.0.1.2
-> installed spawn.v0.17.0
-> retrieved uucp.16.0.0 (https://erratique.ch/software/uucp/releases/uucp-16.0.0.tbz)
-> retrieved uuseg.16.0.0 (https://erratique.ch/software/uuseg/releases/uuseg-16.0.0.tbz)
-> installed ocamlc-loc.3.17.2
-> retrieved uutf.1.0.3 (https://erratique.ch/software/uutf/releases/uutf-1.0.3.tbz)
-> installed menhir.20240715
-> retrieved yojson.2.2.2 (https://github.com/ocaml-community/yojson/releases/download/2.2.2/yojson-2.2.2.tbz)
-> installed yojson.2.2.2
-> installed stdune.3.17.2
-> installed base.v0.16.3
-> installed topkg.1.0.7
-> installed ppx_yojson_conv_lib.v0.16.0
-> installed fiber.3.7.0
-> installed stdio.v0.16.0
-> installed uutf.1.0.3
-> installed fmt.0.10.0
-> installed dune-rpc.3.17.2
-> installed astring.0.8.5
-> installed fpath.0.7.3
-> installed alcotest.1.8.0
-> installed lsp.1.20.1
-> installed ocaml-lsp-server.1.20.1-4.14
-> installed uucp.16.0.0
-> installed uuseg.16.0.0
-> installed ocamlformat-lib.0.26.1
-> installed ocamlformat.0.26.1
-> installed quickjs.0.1.2
Done.
<><> ocp-indent.1.8.1 installed successfully ><><><><><><><><><><><><><><><><><>
=> This package requires additional configuration for use in editors. Install package 'user-setup', or manually:
* for Emacs, add these lines to ~/.emacs:
(add-to-list 'load-path "/home/opam/.opam/4.14/share/emacs/site-lisp")
(require 'ocp-indent)
* for Vim, add this line to ~/.vimrc:
set rtp^="/home/opam/.opam/4.14/share/ocp-indent/vim"
# To update the current shell environment, run: eval $(opam env)
2025-03-12 19:07.45 ---> saved as "afb1240ed88732f8f928f69c1f0eaf237b82dcbc4e537cc78dce929e3999538c"
/home/opam: (run (shell "opam reinstall --with-test --verbose quickjs.0.1.2;\
\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 \"\\\"fedora-41\\\"\"; then\
\n echo \"A package failed and has been disabled for CI using the 'x-ci-accept-failures' field.\";\
\n fi;\
\n test \"$pkg\" != 'quickjs.0.1.2' && 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 quickjs 0.1.2 (pinned)
<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
Processing 2/4: [quickjs: dune build]
+ /home/opam/.opam/opam-init/hooks/sandbox.sh "build" "dune" "build" "-p" "quickjs" "-j" "255" "@install" "@runtest" (CWD=/home/opam/.opam/4.14/.opam-switch/build/quickjs.0.1.2)
- (cd _build/default && /usr/bin/gcc -Iquickjs -g -I /home/opam/.opam/4.14/lib/ocaml -I /home/opam/.opam/4.14/lib/ctypes -I /home/opam/.opam/4.14/lib/ctypes/stubs -I /home/opam/.opam/4.14/lib/integers -o libregexp__c_cout_generated_functions__Function_description__Functions.o -c libregexp__c_cout_generated_functions__Function_description__Functions.c)
- libregexp__c_cout_generated_functions__Function_description__Functions.c: In function 'libregexp_stubs_4_lre_get_groupnames':
- libregexp__c_cout_generated_functions__Function_description__Functions.c:60:16: warning: initialization discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
- 60 | char* x62 = lre_get_groupnames(x61);
- | ^~~~~~~~~~~~~~~~~~
- (cd _build/default/test && ./test.exe)
- Testing `RegExp'.
- This run has ID `AIZ0T5Y6'.
-
- [OK] Success 0 flags....
- [OK] Success 1 test....
- [OK] Success 2 basic....
- [OK] Success 3 exec....
- [OK] Success 4 basic text....
- [OK] Success 5 with i (ignorecase)....
- [OK] Success 6 with m (multiline)....
- [OK] Success 7 with g (global)....
- [OK] Success 8 with y (sticky)....
- [OK] Success 9 sticky vs global....
- [OK] Success 10 groups....
- [OK] Success 11 named groups....
- [OK] Success 12 index....
- [OK] Success 13 lastIndex and index....
- [OK] Success 14 groups with (?: )....
- [OK] Success 15 negative....
- [OK] Success 16 http/s....
- [OK] Error 0 unexpected end....
- [OK] Error 1 expecting ')'....
- [OK] Error 2 nothing to repeat....
- [OK] Error in some engines, but not in JavaScript (neither in QuickJS) 0 a{,}....
- [OK] Error in some engines, but not in JavaScript (neither in QuickJS) 1 \1(a)....
- [OK] Error in some engines, but not in JavaScript (neither in QuickJS) 2 [a-z[]....
-
- Full test results in `~/.opam/4.14/.opam-switch/build/quickjs.0.1.2/_build/default/test/_build/_tests/RegExp'.
- Test Successful in 0.002s. 23 tests run.
-> compiled quickjs.0.1.2
-> removed quickjs.0.1.2
-> installed quickjs.0.1.2
Done.
# To update the current shell environment, run: eval $(opam env)
2025-03-12 19:07.52 ---> saved as "c45d2b54352c153adc92a3a418fdeb45c2a3c32739fc601b5d780a9191687de7"
Job succeeded
2025-03-12 19:07.59: Job succeeded