Organisationscraigfeprogress5d1f12 ()ubuntu-24.04-5.3_opam-2.4

ubuntu-24.04-5.3_opam-2.4

Link Copied
Code Copied

Logs

2025-09-18 08:04.55: New job: test craigfe/progress https://github.com/craigfe/progress.git#refs/pull/50/head (5d1f12e2c9b693cc943a946bf6b82365a8940b69) (linux-x86_64:ubuntu-24.04-5.3_opam-2.4)
Base: ocaml/opam:ubuntu-24.04-ocaml-5.3@sha256:a944e8caba71d986a38ea2486d80a4c138f0034cd7455f30c704105331f75503
Opam project build


To reproduce locally:


git clone --recursive "https://github.com/craigfe/progress.git" && cd "progress" && git fetch origin "refs/pull/50/head" && git reset --hard 5d1f12e2
cat > Dockerfile <<'END-OF-DOCKERFILE'
FROM ocaml/opam:ubuntu-24.04-ocaml-5.3@sha256:a944e8caba71d986a38ea2486d80a4c138f0034cd7455f30c704105331f75503
# ubuntu-24.04-5.3_opam-2.4
USER 1000:1000
ENV CLICOLOR_FORCE="1"
ENV OPAMCOLOR="always"
WORKDIR /src
RUN sudo ln -f /usr/bin/opam-2.4 /usr/bin/opam
RUN opam init --reinit -ni
RUN uname -rs && opam exec -- ocaml -version && opam --version
WORKDIR /src
RUN sudo chown opam /src
RUN cd ~/opam-repository && (git cat-file -e 6ef6813522b6ea29933f6451236a1639bdbaec61 || git fetch origin master) && git reset -q --hard 6ef6813522b6ea29933f6451236a1639bdbaec61 && git log --no-decorate -n1 --oneline && opam update -u
COPY --chown=1000:1000 terminal.opam progress.opam ./
RUN opam pin add -yn terminal.dev './' && \
opam pin add -yn progress.dev './'
RUN echo '(lang dune 3.0)' > './dune-project'
ENV DEPS="alcotest.1.9.0 astring.0.8.5 base-bigarray.base base-domains.base base-effects.base base-nnp.base base-threads.base base-unix.base cmdliner.1.3.0 dune.3.20.2 fmt.0.11.0 logs.0.9.0 mtime.2.1.0 ocaml.5.3.0 ocaml-base-compiler.5.3.0 ocaml-compiler.5.3.0 ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0 ocamlbuild.0.16.1 ocamlfind.1.9.8 optint.0.3.0 re.1.13.2 seq.base stdlib-shims.0.3.0 topkg.1.1.0 uucp.17.0.0 uutf.1.0.4"
ENV CI="true"
ENV OCAMLCI="true"
RUN opam update --depexts && opam install --cli=2.4 --depext-only -y terminal.dev progress.dev $DEPS
RUN opam install $DEPS
COPY --chown=1000:1000 . /src
RUN opam exec -- dune build @install @check @runtest && rm -rf _build


END-OF-DOCKERFILE
docker build .
END-REPRO-BLOCK


2025-09-18 08:04.55: Using cache hint "craigfe/progress-ocaml/opam:ubuntu-24.04-ocaml-5.3@sha256:a944e8caba71d986a38ea2486d80a4c138f0034cd7455f30c704105331f75503-ubuntu-24.04-5.3_opam-2.4-18268b26019b0b0052e059d7e706cc29"
2025-09-18 08:04.55: Using OBuilder spec:
((from ocaml/opam:ubuntu-24.04-ocaml-5.3@sha256:a944e8caba71d986a38ea2486d80a4c138f0034cd7455f30c704105331f75503)
(comment ubuntu-24.04-5.3_opam-2.4)
(user (uid 1000) (gid 1000))
(env CLICOLOR_FORCE 1)
(env OPAMCOLOR always)
(workdir /src)
(run (shell "sudo ln -f /usr/bin/opam-2.4 /usr/bin/opam"))
(run (shell "opam init --reinit -ni"))
(run (shell "uname -rs && opam exec -- ocaml -version && opam --version"))
(workdir /src)
(run (shell "sudo chown opam /src"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "cd ~/opam-repository && (git cat-file -e 6ef6813522b6ea29933f6451236a1639bdbaec61 || git fetch origin master) && git reset -q --hard 6ef6813522b6ea29933f6451236a1639bdbaec61 && git log --no-decorate -n1 --oneline && opam update -u"))
(copy (src terminal.opam progress.opam) (dst ./))
(run (network host)
(shell  "opam pin add -yn terminal.dev './' && \
\nopam pin add -yn progress.dev './'"))
(run (network host)
(shell "echo '(lang dune 3.0)' > './dune-project'"))
(env DEPS "alcotest.1.9.0 astring.0.8.5 base-bigarray.base base-domains.base base-effects.base base-nnp.base base-threads.base base-unix.base cmdliner.1.3.0 dune.3.20.2 fmt.0.11.0 logs.0.9.0 mtime.2.1.0 ocaml.5.3.0 ocaml-base-compiler.5.3.0 ocaml-compiler.5.3.0 ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0 ocamlbuild.0.16.1 ocamlfind.1.9.8 optint.0.3.0 re.1.13.2 seq.base stdlib-shims.0.3.0 topkg.1.1.0 uucp.17.0.0 uutf.1.0.4")
(env CI true)
(env OCAMLCI true)
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam update --depexts && opam install --cli=2.4 --depext-only -y terminal.dev progress.dev $DEPS"))
(run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam install $DEPS"))
(copy (src .) (dst /src))
(run (shell "opam exec -- dune build @install @check @runtest && rm -rf _build"))
)


2025-09-18 08:04.55: Waiting for resource in pool OCluster
2025-09-18 08:17.06: Waiting for worker…
2025-09-18 08:20.37: Got resource from pool OCluster
Building on odawa.caelum.ci.dev
All commits already cached
HEAD is now at 5d1f12e remove package information from dune-project


(from ocaml/opam:ubuntu-24.04-ocaml-5.3@sha256:a944e8caba71d986a38ea2486d80a4c138f0034cd7455f30c704105331f75503)
2025-09-18 08:20.37 ---> using "a3fb076ae83bdaf7592966046ebc2761206d1317189e29c8754cf767b4f87c27" from cache


/: (comment ubuntu-24.04-5.3_opam-2.4)


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


/: (env CLICOLOR_FORCE 1)


/: (env OPAMCOLOR always)


/: (workdir /src)


/src: (run (shell "sudo ln -f /usr/bin/opam-2.4 /usr/bin/opam"))
2025-09-18 08:20.37 ---> using "d3ab3f07d7d6c1fbc4461c42fc2568ec90ac7b9cebe982af3884925436fffc84" from cache


/src: (run (shell "opam init --reinit -ni"))
Configuring from /home/opam/.opamrc and then 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
2025-09-18 08:20.37 ---> using "bb93f1c7a5f9d981e4e0c647fa689b0e4adfc6e3f0d8fcf80812d15d0c801ca0" from cache


/src: (run (shell "uname -rs && opam exec -- ocaml -version && opam --version"))
Linux 6.8.0-60-generic
The OCaml toplevel, version 5.3.0
2.4.1
2025-09-18 08:20.37 ---> using "5521c6d4c568a693550eb44a7f49d4c23542b83c4898d3831c6541214f31405f" from cache


/src: (workdir /src)


/src: (run (shell "sudo chown opam /src"))
2025-09-18 08:20.37 ---> using "c5e46e94efc02ee9159ad7321c25cf7b95179a8f81c8318e6bbac0c5f19e082c" from cache


/src: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "cd ~/opam-repository && (git cat-file -e 6ef6813522b6ea29933f6451236a1639bdbaec61 || git fetch origin master) && git reset -q --hard 6ef6813522b6ea29933f6451236a1639bdbaec61 && git log --no-decorate -n1 --oneline && opam update -u"))
From https://github.com/ocaml/opam-repository
* branch                  master     -> FETCH_HEAD
ee24528071..151ffce963  master     -> origin/master
6ef6813522 Merge pull request #28449 from dra27/ocaml-compiler-msvc


<><> Updating package repositories ><><><><><><><><><><><><><><><><><><><><><><>
[default] synchronised from git+file:///home/opam/opam-repository


Already up-to-date.
Nothing to do.
# To update the current shell environment, run: eval $(opam env)
2025-09-18 08:20.37 ---> using "5eda22df92fdf25c82907b1546a457f01e01ee15c916046bf2c68a5ffee29b76" from cache


/src: (copy (src terminal.opam progress.opam) (dst ./))
2025-09-18 08:20.37 ---> saved as "ea34e1d8a826a596bb0c7252d0d088f99b944a6bc74089fac375a37d6c98d023"


/src: (run (network host)
(shell  "opam pin add -yn terminal.dev './' && \
\nopam pin add -yn progress.dev './'"))
[terminal.dev] synchronised (file:///src)
terminal is now pinned to file:///src (version dev)
[progress.dev] synchronised (file:///src)
progress is now pinned to file:///src (version dev)
2025-09-18 08:20.40 ---> saved as "b06f37faf9f60793eabc2829e41e077ca76a076b743ee84b358fc4a730307e60"


/src: (run (network host)
(shell "echo '(lang dune 3.0)' > './dune-project'"))
2025-09-18 08:20.40 ---> saved as "a2a1cd02b5ec76c5b98508c143ed993c4d9aafe2b66794d7cffc0bf6140d0deb"


/src: (env DEPS "alcotest.1.9.0 astring.0.8.5 base-bigarray.base base-domains.base base-effects.base base-nnp.base base-threads.base base-unix.base cmdliner.1.3.0 dune.3.20.2 fmt.0.11.0 logs.0.9.0 mtime.2.1.0 ocaml.5.3.0 ocaml-base-compiler.5.3.0 ocaml-compiler.5.3.0 ocaml-config.3 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0 ocamlbuild.0.16.1 ocamlfind.1.9.8 optint.0.3.0 re.1.13.2 seq.base stdlib-shims.0.3.0 topkg.1.1.0 uucp.17.0.0 uutf.1.0.4")


/src: (env CI true)


/src: (env OCAMLCI true)


/src: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam update --depexts && opam install --cli=2.4 --depext-only -y terminal.dev progress.dev $DEPS"))
+ /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://security.ubuntu.com/ubuntu noble-security InRelease [126 kB]
- Get:5 http://archive.ubuntu.com/ubuntu noble-updates/restricted amd64 Packages [2414 kB]
- Get:6 http://archive.ubuntu.com/ubuntu noble-updates/multiverse amd64 Packages [38.9 kB]
- Get:7 http://archive.ubuntu.com/ubuntu noble-updates/universe amd64 Packages [1922 kB]
- Get:8 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 Packages [1793 kB]
- Get:9 http://security.ubuntu.com/ubuntu noble-security/multiverse amd64 Packages [44.3 kB]
- Get:10 http://security.ubuntu.com/ubuntu noble-security/restricted amd64 Packages [2245 kB]
- Get:11 http://security.ubuntu.com/ubuntu noble-security/main amd64 Packages [1415 kB]
- Get:12 http://security.ubuntu.com/ubuntu noble-security/universe amd64 Packages [1136 kB]
- Fetched 11.4 MB in 1s (9713 kB/s)
- Reading package lists...
- 


<><> Synchronising pinned packages ><><><><><><><><><><><><><><><><><><><><><><>
[progress.dev] synchronised (file:///src)
[terminal.dev] synchronised (file:///src)


[NOTE] Package ocaml-options-vanilla is already installed (current version is 1).
[NOTE] Package ocaml-config is already installed (current version is 3).
[NOTE] Package ocaml-compiler is already installed (current version is 5.3.0).
[NOTE] Package ocaml-base-compiler is already installed (current version is 5.3.0).
[NOTE] Package ocaml is already installed (current version is 5.3.0).
[NOTE] Package base-unix is already installed (current version is base).
[NOTE] Package base-threads is already installed (current version is base).
[NOTE] Package base-nnp is already installed (current version is base).
[NOTE] Package base-effects is already installed (current version is base).
[NOTE] Package base-domains is already installed (current version is base).
[NOTE] Package base-bigarray is already installed (current version is base).
2025-09-18 08:20.49 ---> saved as "b0261d7320a8db68ba43152ed58f902f9a2ebf973eed115e75440955ac8d8511"


/src: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
(network host)
(shell "opam install $DEPS"))
[NOTE] Package ocaml-options-vanilla is already installed (current version is 1).
[NOTE] Package ocaml-config is already installed (current version is 3).
[NOTE] Package ocaml-compiler is already installed (current version is 5.3.0).
[NOTE] Package ocaml-base-compiler is already installed (current version is 5.3.0).
[NOTE] Package ocaml is already installed (current version is 5.3.0).
[NOTE] Package base-unix is already installed (current version is base).
[NOTE] Package base-threads is already installed (current version is base).
[NOTE] Package base-nnp is already installed (current version is base).
[NOTE] Package base-effects is already installed (current version is base).
[NOTE] Package base-domains is already installed (current version is base).
[NOTE] Package base-bigarray is already installed (current version is base).
The following actions will be performed:
=== install 17 packages
- install alcotest           1.9.0
- install astring            0.8.5
- install cmdliner           1.3.0
- install dune               3.20.2
- install fmt                0.11.0
- install logs               0.9.0
- install mtime              2.1.0
- install ocaml-syntax-shims 1.0.0
- install ocamlbuild         0.16.1
- install ocamlfind          1.9.8
- install optint             0.3.0
- install re                 1.13.2
- install seq                base
- install stdlib-shims       0.3.0
- install topkg              1.1.0
- install uucp               17.0.0
- install uutf               1.0.4


<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved alcotest.1.9.0  (cached)
-> retrieved astring.0.8.5  (cached)
-> retrieved cmdliner.1.3.0  (cached)
-> retrieved fmt.0.11.0  (cached)
-> retrieved logs.0.9.0  (cached)
-> retrieved mtime.2.1.0  (cached)
-> retrieved ocaml-syntax-shims.1.0.0  (cached)
-> retrieved ocamlfind.1.9.8  (cached)
-> retrieved ocamlbuild.0.16.1  (cached)
-> retrieved optint.0.3.0  (cached)
-> retrieved seq.base  (cached)
-> installed seq.base
-> retrieved re.1.13.2  (cached)
-> retrieved stdlib-shims.0.3.0  (cached)
-> retrieved topkg.1.1.0  (cached)
-> retrieved uutf.1.0.4  (cached)
-> retrieved uucp.17.0.0  (cached)
-> retrieved dune.3.20.2  (cached)
-> installed cmdliner.1.3.0
-> installed ocamlfind.1.9.8
-> installed ocamlbuild.0.16.1
-> installed topkg.1.1.0
-> installed uutf.1.0.4
-> installed mtime.2.1.0
-> installed fmt.0.11.0
-> installed astring.0.8.5
-> installed logs.0.9.0
-> installed dune.3.20.2
-> installed stdlib-shims.0.3.0
-> installed optint.0.3.0
-> installed ocaml-syntax-shims.1.0.0
-> installed re.1.13.2
-> installed alcotest.1.9.0
-> installed uucp.17.0.0
Done.
# To update the current shell environment, run: eval $(opam env)
2025-09-18 08:21.22 ---> saved as "408eb6e6cd6e21640eb854c7a96c898975646930771808e0476dfbf3142ca22c"


/src: (copy (src .) (dst /src))
2025-09-18 08:21.22 ---> saved as "f9567113bf447d2212c603ea4a44d035be2f38a5826ec01e41b9d63588a3b6df"


/src: (run (shell "opam exec -- dune build @install @check @runtest && rm -rf _build"))
(cd _build/default/src/terminal/tests && ./test.exe)
Testing `src/terminal/tests/test.ml'.
This run has ID `8A8DGFCW'.


[OK]          colours          0   rgb.
[OK]          colours          1   hex.
[OK]          width            0   guess_width.
[OK]          width            1   truncate.


Full test results in `/src/_build/default/src/terminal/tests/_build/_tests/src-terminal-tests-test.ml'.
Test Successful in 0.000s. 4 tests run.
(cd _build/default/src/progress/tests && ./test.exe)
Testing `src/progress/tests/test.ml'.
This run has ID `6LLI97TQ'.


[OK]          main                0   Pair.
[OK]          main                1   Unicode bar.
[OK]          main                2   Progress bar lifecycle....
[OK]          main                3   Progress bar width.
[OK]          main                4   Pre-provided counter....
[OK]          boxes               0   Unsized element not in box.
[OK]          boxes               1   Two unsized elements in box.
[OK]          units               0   percentage.
[OK]          units               1   bytes.
[OK]          units               2   duration.
[OK]          printers            0   int.
[OK]          printers            1   string.
[OK]          flow_meter          0   linear.
[OK]          flow_meter          1   non-linear.


Full test results in `/src/_build/default/src/progress/tests/_build/_tests/src-progress-tests-test.ml'.
Test Successful in 0.002s. 14 tests run.
2025-09-18 08:21.23 ---> saved as "4ce44ea5b3717931df6289d37bdff01ae7bb7bd7665b11d6dd9745eaea793e99"
Job succeeded
2025-09-18 08:21.24: Job succeeded