Organisationsmbarbindunolint521b0d ()macos-homebrew-4.14_opam-2.5

macos-homebrew-4.14_opam-2.5

Logs

Show full logs
2026-05-05 11:05.00: New job: test mbarbin/dunolint https://github.com/mbarbin/dunolint.git#refs/heads/main (521b0df3df62db940e6844368dc78a960768a845) (macos-x86_64:macos-homebrew-4.14_opam-2.5)
Base: macos-homebrew-ocaml-4.14
Opam project build

To reproduce locally:

git clone --recursive "https://github.com/mbarbin/dunolint.git" -b "main" && cd "dunolint" && git reset --hard 521b0df3
cat > Dockerfile <<'END-OF-DOCKERFILE'
FROM macos-homebrew-ocaml-4.14
# macos-homebrew-4.14_opam-2.5
USER 1000:1000
ENV CLICOLOR_FORCE="1"
ENV OPAMCOLOR="always"
RUN ln -f ~/local/bin/opam-2.5 ~/local/bin/opam
RUN opam init --reinit -ni
RUN uname -rs && opam exec -- ocaml -version && opam --version
RUN cd ~/opam-repository && (git cat-file -e 24618e1786711fef2cc7e5a769e742b764fd7f0c || git fetch origin master) && git reset -q --hard 24618e1786711fef2cc7e5a769e742b764fd7f0c && git log --no-decorate -n1 --oneline && opam update -u
COPY --chown=1000:1000 dunolint.opam dunolint-tests.opam dunolint-lib.opam dunolint-lib-base.opam dunolint-lib-base-tests.opam dunolint-dev.opam ./src/./
RUN opam pin add -yn dunolint.dev './src/./' && \
    opam pin add -yn dunolint-tests.dev './src/./' && \
    opam pin add -yn dunolint-lib.dev './src/./' && \
    opam pin add -yn dunolint-lib-base.dev './src/./' && \
    opam pin add -yn dunolint-lib-base-tests.dev './src/./' && \
    opam pin add -yn dunolint-dev.dev './src/./'
RUN echo '(lang dune 3.0)' > './src/./dune-project'
ENV DEPS="base.v0.16.5 base-bigarray.base base-threads.base base-unix.base csexp.1.5.2 dune.3.22.2 dune-configurator.3.22.2 dyn.3.22.2 ocaml.4.14.2 ocaml-base-compiler.4.14.2 ocaml-config.2 ocaml-options-vanilla.1 ordering.3.22.2 pp.2.0.0 re.1.14.0 sexplib0.v0.16.0"
ENV CI="true"
ENV OCAMLCI="true"
RUN opam update --depexts && opam install --cli=2.5 --depext-only -y dunolint-lib.dev dunolint-lib-base.dev $DEPS
RUN opam install $DEPS
COPY --chown=1000:1000 . ./src
RUN cd ./src && opam exec -- dune build --only-packages=dunolint-lib,dunolint-lib-base @install @check @runtest && rm -rf _build

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

2026-05-05 11:05.00: Using cache hint "mbarbin/dunolint-macos-homebrew-ocaml-4.14-macos-homebrew-4.14_opam-2.5-0eefcb69a44511cbbcf3852190a83255"
2026-05-05 11:05.00: Using OBuilder spec:
((from macos-homebrew-ocaml-4.14)
 (comment macos-homebrew-4.14_opam-2.5)
 (user (uid 1000) (gid 1000))
 (env CLICOLOR_FORCE 1)
 (env OPAMCOLOR always)
 (run (shell "ln -f ~/local/bin/opam-2.5 ~/local/bin/opam"))
 (run (shell "opam init --reinit -ni"))
 (run (shell "uname -rs && opam exec -- ocaml -version && opam --version"))
 (run (cache (opam-archives (target /Users/mac1000/.opam/download-cache)) (homebrew (target /Users/mac1000/Library/Caches/Homebrew)))
      (network host)
      (shell "cd ~/opam-repository && (git cat-file -e 24618e1786711fef2cc7e5a769e742b764fd7f0c || git fetch origin master) && git reset -q --hard 24618e1786711fef2cc7e5a769e742b764fd7f0c && git log --no-decorate -n1 --oneline && opam update -u"))
 (copy (src dunolint.opam dunolint-tests.opam dunolint-lib.opam dunolint-lib-base.opam dunolint-lib-base-tests.opam dunolint-dev.opam)
       (dst ./src/./))
 (run (network host)
      (shell  "opam pin add -yn dunolint.dev './src/./' && \
             \nopam pin add -yn dunolint-tests.dev './src/./' && \
             \nopam pin add -yn dunolint-lib.dev './src/./' && \
             \nopam pin add -yn dunolint-lib-base.dev './src/./' && \
             \nopam pin add -yn dunolint-lib-base-tests.dev './src/./' && \
             \nopam pin add -yn dunolint-dev.dev './src/./'"))
 (run (shell "echo '(lang dune 3.0)' > './src/./dune-project'"))
 (env DEPS "base.v0.16.5 base-bigarray.base base-threads.base base-unix.base csexp.1.5.2 dune.3.22.2 dune-configurator.3.22.2 dyn.3.22.2 ocaml.4.14.2 ocaml-base-compiler.4.14.2 ocaml-config.2 ocaml-options-vanilla.1 ordering.3.22.2 pp.2.0.0 re.1.14.0 sexplib0.v0.16.0")
 (env CI true)
 (env OCAMLCI true)
 (run (cache (opam-archives (target /Users/mac1000/.opam/download-cache)) (homebrew (target /Users/mac1000/Library/Caches/Homebrew)))
      (network host)
      (shell "opam update --depexts && opam install --cli=2.5 --depext-only -y dunolint-lib.dev dunolint-lib-base.dev $DEPS"))
 (run (cache (opam-archives (target /Users/mac1000/.opam/download-cache)) (homebrew (target /Users/mac1000/Library/Caches/Homebrew)))
      (network host)
      (shell "opam install $DEPS"))
 (copy (src .) (dst ./src))
 (run (shell "cd ./src && opam exec -- dune build --only-packages=dunolint-lib,dunolint-lib-base @install @check @runtest && rm -rf _build"))
)

2026-05-05 11:05.00: Waiting for resource in pool OCluster
2026-05-05 11:05.01: Waiting for worker…
2026-05-05 11:05.01: Got resource from pool OCluster
Building on i7-worker-03
HEAD is now at 9bbb6ad Report dup in library to open as invalid argument
HEAD is now at 521b0df Merge pull request #197 from mbarbin/reduce-base-usage

(from macos-homebrew-ocaml-4.14)
2026-05-05 11:05.03 ---> using "0c60f117aee57abea8364cb033d47bb1d63ff0f68e5ee97378e032498e8442af" from cache

/: (comment macos-homebrew-4.14_opam-2.5)

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

/: (env CLICOLOR_FORCE 1)

/: (env OPAMCOLOR always)

/: (run (shell "ln -f ~/local/bin/opam-2.5 ~/local/bin/opam"))
2026-05-05 11:05.03 ---> using "75b1629629d7f21c50a7e1e39b2ef83e2edb8ace81aab34254c0c8782b814749" from cache

/: (run (shell "opam init --reinit -ni"))
No configuration file found, using 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 /Users/mac1000/.opam from version 2.1 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 1 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=1 --global
Format upgrade done.

<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] no changes from git+file:///Users/mac1000/opam-repository
2026-05-05 11:05.03 ---> using "a61e945ab7671a6fff400f946e3fe88df4d67a783ea1f56fa59dc21595ef1b19" from cache

/: (run (shell "uname -rs && opam exec -- ocaml -version && opam --version"))
Darwin 24.5.0
The OCaml toplevel, version 4.14.2
2.5.0
2026-05-05 11:05.04 ---> using "11a9923a4c4f0ab256d15330129e4c4938459d2e6239eb4f7bdf0f2620300e09" from cache

/: (run (cache (opam-archives (target /Users/mac1000/.opam/download-cache)) (homebrew (target /Users/mac1000/Library/Caches/Homebrew)))
        (network host)
        (shell "cd ~/opam-repository && (git cat-file -e 24618e1786711fef2cc7e5a769e742b764fd7f0c || git fetch origin master) && git reset -q --hard 24618e1786711fef2cc7e5a769e742b764fd7f0c && git log --no-decorate -n1 --oneline && opam update -u"))
From https://github.com/ocaml/opam-repository
 * branch                  master     -> FETCH_HEAD
   95f7875db7..6b6b0c375b  master     -> origin/master
24618e1786 Merge pull request #29744 from nmatschke/opam-publish-base.v0.16.5

<><> Updating package repositories ><><><><><><><><><><><><><><><><><><><><><><>
[default] synchronised from git+file:///Users/mac1000/opam-repository
default (at git+file:///Users/mac1000/opam-repository): 
    [WARNING] opam is out-of-date. Please consider updating it (https://opam.ocaml.org/doc/Install.html)

default (at git+file:///Users/mac1000/opam-repository): 
    [INFO] opam 2.5.1 includes security fixes; please consider upgrading (https://opam.ocaml.org/doc/Install.html)


Everything as up-to-date as possible

The following packages are not being upgraded because the new versions conflict with other installed packages:
  - ocaml.5.5.0
  - ocaml-config.3
However, you may "opam upgrade" these packages explicitly at these versions (e.g. "opam upgrade ocaml.5.5.0"), which will ask permission to downgrade or uninstall the conflicting packages.
Nothing to do.
# To update the current shell environment, run: eval $(opam env)
2026-05-05 11:05.04 ---> using "a4a9e8cf28a748af4b0622664d38f62a7a86e5a2ee2a001d439728c4f50feeca" from cache

/: (copy (src dunolint.opam dunolint-tests.opam dunolint-lib.opam dunolint-lib-base.opam dunolint-lib-base-tests.opam dunolint-dev.opam)
         (dst ./src/./))
2026-05-05 11:05.04 ---> using "2bbbecd77ea45d616137988ec1c7ba7c98ec9f4e4f1590897908d5bebb69f8c1" from cache

/: (run (network host)
        (shell  "opam pin add -yn dunolint.dev './src/./' && \
               \nopam pin add -yn dunolint-tests.dev './src/./' && \
               \nopam pin add -yn dunolint-lib.dev './src/./' && \
               \nopam pin add -yn dunolint-lib-base.dev './src/./' && \
               \nopam pin add -yn dunolint-lib-base-tests.dev './src/./' && \
               \nopam pin add -yn dunolint-dev.dev './src/./'"))
[dunolint.dev] synchronised (file:///Users/mac1000/src)
dunolint is now pinned to file:///Users/mac1000/src (version dev)
[NOTE] Package dunolint-tests does not exist in opam repositories registered in the current switch.
[dunolint-tests.dev] synchronised (file:///Users/mac1000/src)
dunolint-tests is now pinned to file:///Users/mac1000/src (version dev)
[dunolint-lib.dev] synchronised (file:///Users/mac1000/src)
dunolint-lib is now pinned to file:///Users/mac1000/src (version dev)
[dunolint-lib-base.dev] synchronised (file:///Users/mac1000/src)
dunolint-lib-base is now pinned to file:///Users/mac1000/src (version dev)
[NOTE] Package dunolint-lib-base-tests does not exist in opam repositories registered in the current switch.
[dunolint-lib-base-tests.dev] synchronised (file:///Users/mac1000/src)
dunolint-lib-base-tests is now pinned to file:///Users/mac1000/src (version dev)
[NOTE] Package dunolint-dev does not exist in opam repositories registered in the current switch.
[dunolint-dev.dev] synchronised (file:///Users/mac1000/src)
dunolint-dev is now pinned to file:///Users/mac1000/src (version dev)
2026-05-05 11:05.05 ---> using "d8809c93f281e46bbecc678c92c149e69bcc9bd9fe483faec9eadb07a921c260" from cache

/: (run (shell "echo '(lang dune 3.0)' > './src/./dune-project'"))
2026-05-05 11:05.05 ---> using "098bb2d5db9344c86bce14dbbc0bc43713a395e5abdff50db1220fe293a57e92" from cache

/: (env DEPS "base.v0.16.5 base-bigarray.base base-threads.base base-unix.base csexp.1.5.2 dune.3.22.2 dune-configurator.3.22.2 dyn.3.22.2 ocaml.4.14.2 ocaml-base-compiler.4.14.2 ocaml-config.2 ocaml-options-vanilla.1 ordering.3.22.2 pp.2.0.0 re.1.14.0 sexplib0.v0.16.0")

/: (env CI true)

/: (env OCAMLCI true)

/: (run (cache (opam-archives (target /Users/mac1000/.opam/download-cache)) (homebrew (target /Users/mac1000/Library/Caches/Homebrew)))
        (network host)
        (shell "opam update --depexts && opam install --cli=2.5 --depext-only -y dunolint-lib.dev dunolint-lib-base.dev $DEPS"))
+ /usr/local/bin/brew "update"
- ==> Updating Homebrew...
- Already up-to-date.

<><> Synchronising pinned packages ><><><><><><><><><><><><><><><><><><><><><><>
[dunolint-lib-base.dev] synchronised (file:///Users/mac1000/src)
[dunolint-lib.dev] synchronised (file:///Users/mac1000/src)

[NOTE] Package ocaml-options-vanilla is already installed (current version is 1).
[NOTE] Package ocaml-config is already installed (current version is 2).
[NOTE] Package ocaml-base-compiler is already installed (current version is 4.14.2).
[NOTE] Package ocaml is already installed (current version is 4.14.2).
[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-bigarray is already installed (current version is base).
# To update the current shell environment, run: eval $(opam env)
2026-05-05 11:05.05 ---> using "312ae8e19d2e59a9f9cbcbe46a954bbbc9b550f70c8d87c7350abae053bdecb3" from cache

/: (run (cache (opam-archives (target /Users/mac1000/.opam/download-cache)) (homebrew (target /Users/mac1000/Library/Caches/Homebrew)))
        (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 2).
[NOTE] Package ocaml-base-compiler is already installed (current version is 4.14.2).
[NOTE] Package ocaml is already installed (current version is 4.14.2).
[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-bigarray is already installed (current version is base).
The following actions will be performed:
=== install 9 packages
  - install base              v0.16.5
  - install csexp             1.5.2
  - install dune              3.22.2
  - install dune-configurator 3.22.2
  - install dyn               3.22.2
  - install ordering          3.22.2
  - install pp                2.0.0
  - install re                1.14.0
  - install sexplib0          v0.16.0

<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
-> retrieved csexp.1.5.2  (cached)
-> retrieved base.v0.16.5  (cached)
-> retrieved pp.2.0.0  (cached)
-> retrieved sexplib0.v0.16.0  (cached)
-> retrieved re.1.14.0  (cached)
-> retrieved dune.3.22.2, dune-configurator.3.22.2, dyn.3.22.2, ordering.3.22.2  (cached)
-> installed dune.3.22.2
-> installed csexp.1.5.2
-> installed sexplib0.v0.16.0
-> installed re.1.14.0
-> installed pp.2.0.0
-> installed ordering.3.22.2
-> installed dune-configurator.3.22.2
-> installed dyn.3.22.2
-> installed base.v0.16.5
Done.
# To update the current shell environment, run: eval $(opam env)
2026-05-05 11:05.06 ---> using "a65c7214ab85004986d27e97628c17863b088b1b0b71d4dc721a5644db37734e" from cache

/: (copy (src .) (dst ./src))
2026-05-05 11:05.06 ---> using "01700806570ebc0f887f5051af016ee581cfe79ae263ab95a729985fb883fdd1" from cache

/: (run (shell "cd ./src && opam exec -- dune build --only-packages=dunolint-lib,dunolint-lib-base @install @check @runtest && rm -rf _build"))
2026-05-05 11:05.06 ---> using "b4effe82afab75efab0900eb9112fefb3ddfd2f1a51ea7889b90b111b613e149" from cache
Job succeeded
2026-05-05 11:05.14: Job succeeded