Organisationspatricoferrisluv0ed668 (master)freebsd-4.14_opam-2.1

freebsd-4.14_opam-2.1

Link Copied
Code Copied

Logs

2024-05-10 09:02.14: New job: test patricoferris/luv https://github.com/patricoferris/luv.git#refs/heads/master (0ed668e87ca55d65f4f84422b0dd3381701c71b0) (freebsd-x86_64:freebsd-4.14_opam-2.1)
Base: freebsd-ocaml-4.14
Opam project build


To reproduce locally:


git clone --recursive "https://github.com/patricoferris/luv.git" -b "master" && cd "luv" && git reset --hard 0ed668e8
cat > Dockerfile <<'END-OF-DOCKERFILE'
FROM freebsd-ocaml-4.14
# freebsd-4.14_opam-2.1
USER 1000:1000
ENV CLICOLOR_FORCE="1"
ENV OPAMCOLOR="always"
WORKDIR /src
RUN sudo ln -f /usr/local/bin/opam-2.1 /usr/local/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 307e33d08fc4ccc1ea453ab45b0ead8ed574b97b || git fetch origin master) && git reset -q --hard 307e33d08fc4ccc1ea453ab45b0ead8ed574b97b && git log --no-decorate -n1 --oneline && opam update -u
COPY --chown=1000:1000 luv_unix.opam luv.opam ./
RUN opam pin add -yn luv_unix.dev './' && \
    opam pin add -yn luv.dev './'
ENV DEPS="alcotest.1.7.0 astring.0.8.5 base-bigarray.base base-threads.base base-unix.base bigarray-compat.1.1.0 cmdliner.1.2.0 csexp.1.5.2 ctypes.0.22.0 dune.3.15.2 dune-configurator.3.15.2 fmt.0.9.0 integers.0.7.0 ocaml.4.14.2 ocaml-base-compiler.4.14.2 ocaml-config.2 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0 ocamlbuild.0.14.3 ocamlfind.1.9.6 re.1.11.0 result.1.5 seq.base stdlib-shims.0.3.0 topkg.1.0.7 uutf.1.0.3"
ENV CI="true"
ENV OCAMLCI="true"
RUN opam update --depexts && opam install --cli=2.1 --depext-only -y luv_unix.dev luv.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


2024-05-10 09:02.14: Using cache hint "patricoferris/luv-freebsd-freebsd-ocaml-4.14-freebsd-4.14_opam-2.1-e61100a12e8c3d2651f69c185e9bb7bc"
2024-05-10 09:02.14: Using OBuilder spec:
((from freebsd-ocaml-4.14)
 (comment freebsd-4.14_opam-2.1)
 (user (uid 1000) (gid 1000))
 (env CLICOLOR_FORCE 1)
 (env OPAMCOLOR always)
 (workdir /src)
 (run (shell "sudo ln -f /usr/local/bin/opam-2.1 /usr/local/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 307e33d08fc4ccc1ea453ab45b0ead8ed574b97b || git fetch origin master) && git reset -q --hard 307e33d08fc4ccc1ea453ab45b0ead8ed574b97b && git log --no-decorate -n1 --oneline && opam update -u"))
 (copy (src luv_unix.opam luv.opam) (dst ./))
 (run (network host)
      (shell  "opam pin add -yn luv_unix.dev './' && \
             \nopam pin add -yn luv.dev './'"))
 (env DEPS "alcotest.1.7.0 astring.0.8.5 base-bigarray.base base-threads.base base-unix.base bigarray-compat.1.1.0 cmdliner.1.2.0 csexp.1.5.2 ctypes.0.22.0 dune.3.15.2 dune-configurator.3.15.2 fmt.0.9.0 integers.0.7.0 ocaml.4.14.2 ocaml-base-compiler.4.14.2 ocaml-config.2 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0 ocamlbuild.0.14.3 ocamlfind.1.9.6 re.1.11.0 result.1.5 seq.base stdlib-shims.0.3.0 topkg.1.0.7 uutf.1.0.3")
 (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.1 --depext-only -y luv_unix.dev luv.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"))
)


2024-05-10 09:02.14: Waiting for resource in pool OCluster
2024-05-10 09:32.36: Waiting for worker…
2024-05-10 11:04.06: Got resource from pool OCluster
Building on summer
hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint: 
hint: 	git config --global init.defaultBranch <name>
hint: 
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint: 
hint: 	git branch -m <name>
Initialized empty Git repository in /obuilder/state/git/luv.git-8968b2ef1c40256b70da0c9b0b197b6c1043cd59/.git/
HEAD is now at 0ed668e luv_unix: tighter dependency constraints
error: could not lock config file .git/modules/src/c/vendor/libuv/config: No such file or directory
warning: Could not unset core.worktree setting in submodule 'src/c/vendor/libuv'
Cleared directory 'src/c/vendor/libuv'
Submodule 'src/c/vendor/libuv' (https://github.com/libuv/libuv.git) registered for path 'src/c/vendor/libuv'
Cloning into '/obuilder/state/git/luv.git-8968b2ef1c40256b70da0c9b0b197b6c1043cd59/src/c/vendor/libuv'...
Submodule path 'src/c/vendor/libuv': checked out '988f2bfc4defb9a85a536a3e645834c161143ee0'


(from freebsd-ocaml-4.14)
2024-05-10 10:58.02 ---> using "57eeeabfec88366322a66f228a693df277d348dc99f1cc2a63749102c5e1e405" from cache


/: (comment freebsd-4.14_opam-2.1)


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


/: (env CLICOLOR_FORCE 1)


/: (env OPAMCOLOR always)


/: (workdir /src)


/src: (run (shell "sudo ln -f /usr/local/bin/opam-2.1 /usr/local/bin/opam"))
2024-05-10 10:58.02 ---> using "e9fe3959c02c848d2766600d2fd363dc0faa291980b23311949b4972bc5ea188" from cache


/src: (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.


<><> Updating repositories ><><><><><><><><><><><><><><><><><><><><><><><><><><>
[default] no changes from git+file:///home/opam/opam-repository
2024-05-10 10:58.03 ---> using "dba2ef0de478afdbd43a6552d310929f1c3c3ee6b86c81b7ff6f06256f6544c3" from cache


/src: (run (shell "uname -rs && opam exec -- ocaml -version && opam --version"))
FreeBSD 14.0-RELEASE-p5
The OCaml toplevel, version 4.14.2
2.1.5
2024-05-10 10:58.03 ---> using "fa8577a82f6c8311031f5ac9ddbcefef5d36d0876493f17a1dc5aa96593235c6" from cache


/src: (workdir /src)


/src: (run (shell "sudo chown opam /src"))
2024-05-10 10:58.04 ---> using "1b1f323c7946b3615d1855d65edd6179caf157152d4670670539e49efbdc1d2e" from cache


/src: (run (cache (opam-archives (target /home/opam/.opam/download-cache)))
           (network host)
           (shell "cd ~/opam-repository && (git cat-file -e 307e33d08fc4ccc1ea453ab45b0ead8ed574b97b || git fetch origin master) && git reset -q --hard 307e33d08fc4ccc1ea453ab45b0ead8ed574b97b && git log --no-decorate -n1 --oneline && opam update -u"))
From https://github.com/ocaml/opam-repository
 * branch                  master     -> FETCH_HEAD
   ac9a846c00..20baedeee4  master     -> origin/master
307e33d08f @dra27 and @Octachron maintain the 4.08+ packages


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


Constructing initial basis...
Everything as up-to-date as possible (run with --verbose to show unavailable upgrades).


The following packages are not being upgraded because the new versions conflict with other installed packages:
  - ocaml.5.3.0
  - ocaml-config.3
However, you may "opam upgrade" these packages explicitly, which will ask permission to downgrade or uninstall the conflicting packages.
Nothing to do.
2024-05-10 10:58.04 ---> using "8500110bb34f5fa0eecc8ffdce35dbb8d679b67af89bb1cba1cce8086b8f5e32" from cache


/src: (copy (src luv_unix.opam luv.opam) (dst ./))
2024-05-10 10:58.20 ---> saved as "27e20bd52a974c9855c992464d988c34603c772f70d1480f9387b1092ebdf512"


/src: (run (network host)
           (shell  "opam pin add -yn luv_unix.dev './' && \
                  \nopam pin add -yn luv.dev './'"))
[luv_unix.dev] synchronised (file:///src)
luv_unix is now pinned to file:///src (version dev)
[luv.dev] synchronised (file:///src)
luv is now pinned to file:///src (version dev)
2024-05-10 10:58.36 ---> saved as "3620d6994a365f0f68142e7a8b18415ab32f18b9ff875c73609d0ded5e184305"


/src: (env DEPS "alcotest.1.7.0 astring.0.8.5 base-bigarray.base base-threads.base base-unix.base bigarray-compat.1.1.0 cmdliner.1.2.0 csexp.1.5.2 ctypes.0.22.0 dune.3.15.2 dune-configurator.3.15.2 fmt.0.9.0 integers.0.7.0 ocaml.4.14.2 ocaml-base-compiler.4.14.2 ocaml-config.2 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0 ocamlbuild.0.14.3 ocamlfind.1.9.6 re.1.11.0 result.1.5 seq.base stdlib-shims.0.3.0 topkg.1.0.7 uutf.1.0.3")


/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.1 --depext-only -y luv_unix.dev luv.dev $DEPS"))
[WARNING] Unknown update command for bsd, skipping system update


<><> Synchronising pinned packages ><><><><><><><><><><><><><><><><><><><><><><>
[luv.dev] synchronised (no changes)
[luv_unix.dev] synchronised (no changes)


[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).
Constructing initial basis...
Number of 0-1 knapsack inequalities = 3
Constructing conflict graph...
Conflict graph has 4 + 3 = 7 vertices
2024-05-10 10:59.08 ---> saved as "3c2ab34265767e3541f80a0236e614f5e590044f4ab747beb366e765cff84662"


/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 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).
Constructing initial basis...
Number of 0-1 knapsack inequalities = 3
Constructing conflict graph...
Conflict graph has 4 + 3 = 7 vertices
The following actions will be performed:
  ∗ install ocamlbuild         0.14.3
  ∗ install cmdliner           1.2.0
  ∗ install ocamlfind          1.9.6
  ∗ install seq                base
  ∗ install dune               3.15.2
  ∗ install topkg              1.0.7
  ∗ install stdlib-shims       0.3.0
  ∗ install result             1.5
  ∗ install re                 1.11.0
  ∗ install ocaml-syntax-shims 1.0.0
  ∗ install csexp              1.5.2
  ∗ install bigarray-compat    1.1.0
  ∗ install uutf               1.0.3
  ∗ install fmt                0.9.0
  ∗ install astring            0.8.5
  ∗ install integers           0.7.0
  ∗ install dune-configurator  3.15.2
  ∗ install alcotest           1.7.0
  ∗ install ctypes             0.22.0
===== ∗ 19 =====


<><> Processing actions <><><><><><><><><><><><><><><><><><><><><><><><><><><><>
⬇ retrieved astring.0.8.5  (cached)
⬇ retrieved bigarray-compat.1.1.0  (cached)
⬇ retrieved cmdliner.1.2.0  (cached)
⬇ retrieved ctypes.0.22.0  (cached)
⬇ retrieved csexp.1.5.2  (cached)
⬇ retrieved alcotest.1.7.0  (cached)
⬇ retrieved fmt.0.9.0  (cached)
⬇ retrieved dune-configurator.3.15.2  (cached)
⬇ retrieved integers.0.7.0  (cached)
⬇ retrieved ocaml-syntax-shims.1.0.0  (cached)
⬇ retrieved ocamlbuild.0.14.3  (cached)
⬇ retrieved re.1.11.0  (cached)
⬇ retrieved ocamlfind.1.9.6  (cached)
∗ installed seq.base
⬇ retrieved stdlib-shims.0.3.0  (cached)
⬇ retrieved result.1.5  (cached)
⬇ retrieved dune.3.15.2  (cached)
⬇ retrieved uutf.1.0.3  (cached)
⬇ retrieved topkg.1.0.7  (cached)
∗ installed cmdliner.1.2.0
∗ installed ocamlfind.1.9.6
∗ installed ocamlbuild.0.14.3
∗ installed topkg.1.0.7
∗ installed uutf.1.0.3
∗ installed fmt.0.9.0
∗ installed astring.0.8.5
∗ installed dune.3.15.2
∗ installed bigarray-compat.1.1.0
∗ installed csexp.1.5.2
∗ installed stdlib-shims.0.3.0
∗ installed result.1.5
∗ installed re.1.11.0
∗ installed ocaml-syntax-shims.1.0.0
∗ installed integers.0.7.0
∗ installed dune-configurator.3.15.2
∗ installed alcotest.1.7.0
∗ installed ctypes.0.22.0
Done.
2024-05-10 11:01.12 ---> saved as "1fc77a7c4e02aca1d2688d5d3f1ca208bd979d5685bbf4e89c5fc2d0e15ffa48"


/src: (copy (src .) (dst /src))
2024-05-10 11:01.17 ---> saved as "88eb73bf8318f24873c474d3490a9910f947c19ee347c0395d8d16eec227f6f2"


/src: (run (shell "opam exec -- dune build @install @check @runtest && rm -rf _build"))
File "test/headers/dune", line 4, characters 36-43:
4 |  (foreign_stubs (language c) (names headers)))
                                        ^^^^^^^
(cd _build/default/test/headers && /usr/bin/cc -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC -D_FILE_OFFSET_BITS=64 -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC -g -I /home/opam/.opam/4.14.2/lib/ocaml -I /home/opam/.opam/4.14.2/lib/bigarray-compat -I /home/opam/.opam/4.14.2/lib/ctypes -I /home/opam/.opam/4.14.2/lib/integers -I /home/opam/.opam/4.14.2/lib/ocaml/threads -I /home/opam/.opam/4.14.2/lib/result -I /home/opam/.opam/4.14.2/lib/stdlib-shims -I ../../src -I ../../src/c -o headers.o -c headers.c)
headers.c:2:10: fatal error: 'uv.h' file not found
#include <uv.h>
         ^~~~~~
1 error generated.
File "src/unix/dune", line 4, characters 36-44:
4 |  (foreign_stubs (language c) (names luv_unix))
                                        ^^^^^^^^
(cd _build/default/src/unix && /usr/bin/cc -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC -D_FILE_OFFSET_BITS=64 -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC -g -I /home/opam/.opam/4.14.2/lib/ocaml -I /home/opam/.opam/4.14.2/lib/bigarray-compat -I /home/opam/.opam/4.14.2/lib/ctypes -I /home/opam/.opam/4.14.2/lib/integers -I /home/opam/.opam/4.14.2/lib/ocaml/threads -I /home/opam/.opam/4.14.2/lib/result -I /home/opam/.opam/4.14.2/lib/stdlib-shims -I .. -I ../c -o luv_unix.o -c luv_unix.c)
luv_unix.c:9:10: fatal error: 'uv.h' file not found
#include <uv.h>
         ^~~~~~
1 error generated.
(cd _build/default/src/c && /usr/local/bin/bash -e -u -o pipefail -c 'if [ '\''cc'\'' = '\''msvc'\'' ]; then cc -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC generate_types_step_2.c -I '\''/home/opam/.opam/4.14.2/lib/ctypes'\'' -I /home/opam/.opam/4.14.2/lib/ocaml -I vendor/libuv/include /Fe"generate_types_step_2.exe"; else cc -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC generate_types_step_2.c -I '\''/home/opam/.opam/4.14.2/lib/ctypes'\'' -I /home/opam/.opam/4.14.2/lib/ocaml -I vendor/libuv/include -o generate_types_step_2.exe; fi')
In file included from generate_types_step_2.c:4:
vendor/libuv/include/uv.h:1759:49: warning: "callback" is deprecated: use "caml_callback" instead [-W#pragma-messages]
UV_EXTERN void uv_once(uv_once_t* guard, void (*callback)(void));
                                                ^
/home/opam/.opam/4.14.2/lib/ocaml/caml/compatibility.h:71:18: note: expanded from macro 'callback'
#define callback CAML_DEPRECATED("callback", "caml_callback") caml_callback
                 ^
/home/opam/.opam/4.14.2/lib/ocaml/caml/misc.h:58:3: note: expanded from macro 'CAML_DEPRECATED'
  CAML_PREPROWARNING(name1 is deprecated: use name2 instead)
  ^
/home/opam/.opam/4.14.2/lib/ocaml/caml/misc.h:56:31: note: expanded from macro 'CAML_PREPROWARNING'
#define CAML_PREPROWARNING(x) _Pragma(CAML_MAKEWARNING2(x))
                              ^
<scratch space>:3:6: note: expanded from here
 GCC warning "\"callback\" is deprecated: use \"caml_callback\" instead"
     ^
In file included from generate_types_step_2.c:5:
./helpers.h:151:44: warning: "callback" is deprecated: use "caml_callback" instead [-W#pragma-messages]
CAMLprim value luv_set_once_callback(value callback);
                                           ^
/home/opam/.opam/4.14.2/lib/ocaml/caml/compatibility.h:71:18: note: expanded from macro 'callback'
#define callback CAML_DEPRECATED("callback", "caml_callback") caml_callback
                 ^
/home/opam/.opam/4.14.2/lib/ocaml/caml/misc.h:58:3: note: expanded from macro 'CAML_DEPRECATED'
  CAML_PREPROWARNING(name1 is deprecated: use name2 instead)
  ^
/home/opam/.opam/4.14.2/lib/ocaml/caml/misc.h:56:31: note: expanded from macro 'CAML_PREPROWARNING'
#define CAML_PREPROWARNING(x) _Pragma(CAML_MAKEWARNING2(x))
                              ^
<scratch space>:59:6: note: expanded from here
 GCC warning "\"callback\" is deprecated: use \"caml_callback\" instead"
     ^
2 warnings generated.
(cd _build/default/src/c && /usr/bin/cc -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC -D_FILE_OFFSET_BITS=64 -O2 -fno-strict-aliasing -fwrapv -pthread -fPIC -g -I /home/opam/.opam/4.14.2/lib/ocaml -I /home/opam/.opam/4.14.2/lib/bigarray-compat -I /home/opam/.opam/4.14.2/lib/ctypes -I /home/opam/.opam/4.14.2/lib/integers -I /home/opam/.opam/4.14.2/lib/ocaml/threads -I /home/opam/.opam/4.14.2/lib/stdlib-shims -I . -I vendor/libuv/include -o c_generated_functions.o -c c_generated_functions.c)
In file included from c_generated_functions.c:6:
vendor/libuv/include/uv.h:1759:49: warning: "callback" is deprecated: use "caml_callback" instead [-W#pragma-messages]
UV_EXTERN void uv_once(uv_once_t* guard, void (*callback)(void));
                                                ^
/home/opam/.opam/4.14.2/lib/ocaml/caml/compatibility.h:71:18: note: expanded from macro 'callback'
#define callback CAML_DEPRECATED("callback", "caml_callback") caml_callback
                 ^
/home/opam/.opam/4.14.2/lib/ocaml/caml/misc.h:58:3: note: expanded from macro 'CAML_DEPRECATED'
  CAML_PREPROWARNING(name1 is deprecated: use name2 instead)
  ^
/home/opam/.opam/4.14.2/lib/ocaml/caml/misc.h:56:31: note: expanded from macro 'CAML_PREPROWARNING'
#define CAML_PREPROWARNING(x) _Pragma(CAML_MAKEWARNING2(x))
                              ^
<scratch space>:3:6: note: expanded from here
 GCC warning "\"callback\" is deprecated: use \"caml_callback\" instead"
     ^
In file included from c_generated_functions.c:7:
./helpers.h:151:44: warning: "callback" is deprecated: use "caml_callback" instead [-W#pragma-messages]
CAMLprim value luv_set_once_callback(value callback);
                                           ^
/home/opam/.opam/4.14.2/lib/ocaml/caml/compatibility.h:71:18: note: expanded from macro 'callback'
#define callback CAML_DEPRECATED("callback", "caml_callback") caml_callback
                 ^
/home/opam/.opam/4.14.2/lib/ocaml/caml/misc.h:58:3: note: expanded from macro 'CAML_DEPRECATED'
  CAML_PREPROWARNING(name1 is deprecated: use name2 instead)
  ^
/home/opam/.opam/4.14.2/lib/ocaml/caml/misc.h:56:31: note: expanded from macro 'CAML_PREPROWARNING'
#define CAML_PREPROWARNING(x) _Pragma(CAML_MAKEWARNING2(x))
                              ^
<scratch space>:59:6: note: expanded from here
 GCC warning "\"callback\" is deprecated: use \"caml_callback\" instead"
     ^
c_generated_functions.c:14:22: warning: passing 'unsigned char *' to parameter of type 'char *' converts between pointers to integer types where one is of the unique plain 'char' type and the other is not [-Wpointer-sign]
   uv_strerror_r(x4, x7, x8);
                     ^~
vendor/libuv/include/uv.h:395:46: note: passing argument to parameter 'buf' here
UV_EXTERN char* uv_strerror_r(int err, char* buf, size_t buflen);
                                             ^
c_generated_functions.c:22:23: warning: passing 'unsigned char *' to parameter of type 'char *' converts between pointers to integer types where one is of the unique plain 'char' type and the other is not [-Wpointer-sign]
   uv_err_name_r(x15, x18, x19);
                      ^~~
vendor/libuv/include/uv.h:398:46: note: passing argument to parameter 'buf' here
UV_EXTERN char* uv_err_name_r(int err, char* buf, size_t buflen);
                                             ^
c_generated_functions.c:705:41: warning: passing 'unsigned char *' to parameter of type 'char *' converts between pointers to integer types where one is of the unique plain 'char' type and the other is not [-Wpointer-sign]
   int x535 = uv_pipe_getsockname(x532, x533, x534);
                                        ^~~~
vendor/libuv/include/uv.h:803:41: note: passing argument to parameter 'buffer' here
                                  char* buffer,
                                        ^
c_generated_functions.c:713:41: warning: passing 'unsigned char *' to parameter of type 'char *' converts between pointers to integer types where one is of the unique plain 'char' type and the other is not [-Wpointer-sign]
   int x542 = uv_pipe_getpeername(x539, x540, x541);
                                        ^~~~
vendor/libuv/include/uv.h:806:41: note: passing argument to parameter 'buffer' here
                                  char* buffer,
                                        ^
c_generated_functions.c:1507:35: warning: passing 'unsigned char *' to parameter of type 'char *' converts between pointers to integer types where one is of the unique plain 'char' type and the other is not [-Wpointer-sign]
   int x1168 = uv_ip4_name(x1163, x1164, x1165);
                                  ^~~~~
vendor/libuv/include/uv.h:1661:64: note: passing argument to parameter 'dst' here
UV_EXTERN int uv_ip4_name(const struct sockaddr_in* src, char* dst, size_t size);
                                                               ^
c_generated_functions.c:1515:35: warning: passing 'unsigned char *' to parameter of type 'char *' converts between pointers to integer types where one is of the unique plain 'char' type and the other is not [-Wpointer-sign]
   int x1177 = uv_ip6_name(x1172, x1173, x1174);
                                  ^~~~~
vendor/libuv/include/uv.h:1662:65: note: passing argument to parameter 'dst' here
UV_EXTERN int uv_ip6_name(const struct sockaddr_in6* src, char* dst, size_t size);
                                                                ^
c_generated_functions.c:1635:41: warning: passing 'unsigned char *' to parameter of type 'char *' converts between pointers to integer types where one is of the unique plain 'char' type and the other is not [-Wpointer-sign]
   int x1267 = uv_if_indextoname(x1262, x1265, x1266);
                                        ^~~~~
vendor/libuv/include/uv.h:1697:39: note: passing argument to parameter 'buffer' here
                                char* buffer,
                                      ^
c_generated_functions.c:1643:40: warning: passing 'unsigned char *' to parameter of type 'char *' converts between pointers to integer types where one is of the unique plain 'char' type and the other is not [-Wpointer-sign]
   int x1276 = uv_if_indextoiid(x1271, x1274, x1275);
                                       ^~~~~
vendor/libuv/include/uv.h:1700:38: note: passing argument to parameter 'buffer' here
                               char* buffer,
                                     ^
c_generated_functions.c:1650:34: warning: passing 'unsigned char *' to parameter of type 'char *' converts between pointers to integer types where one is of the unique plain 'char' type and the other is not [-Wpointer-sign]
   int x1281 = uv_os_gethostname(x1279, x1280);
                                 ^~~~~
vendor/libuv/include/uv.h:1275:39: note: passing argument to parameter 'buffer' here
UV_EXTERN int uv_os_gethostname(char* buffer, size_t* size);
                                      ^
c_generated_functions.c:1657:27: warning: passing 'unsigned char *' to parameter of type 'char *' converts between pointers to integer types where one is of the unique plain 'char' type and the other is not [-Wpointer-sign]
   int x1286 = uv_exepath(x1284, x1285);
                          ^~~~~
vendor/libuv/include/uv.h:1703:32: note: passing argument to parameter 'buffer' here
UV_EXTERN int uv_exepath(char* buffer, size_t* size);
                               ^
c_generated_functions.c:1664:23: warning: passing 'unsigned char *' to parameter of type 'char *' converts between pointers to integer types where one is of the unique plain 'char' type and the other is not [-Wpointer-sign]
   int x1291 = uv_cwd(x1289, x1290);
                      ^~~~~
vendor/libuv/include/uv.h:1705:28: note: passing argument to parameter 'buffer' here
UV_EXTERN int uv_cwd(char* buffer, size_t* size);
                           ^
c_generated_functions.c:1677:30: warning: passing 'unsigned char *' to parameter of type 'char *' converts between pointers to integer types where one is of the unique plain 'char' type and the other is not [-Wpointer-sign]
   int x1299 = uv_os_homedir(x1297, x1298);
                             ^~~~~
vendor/libuv/include/uv.h:1218:35: note: passing argument to parameter 'buffer' here
UV_EXTERN int uv_os_homedir(char* buffer, size_t* size);
                                  ^
c_generated_functions.c:1684:29: warning: passing 'unsigned char *' to parameter of type 'char *' converts between pointers to integer types where one is of the unique plain 'char' type and the other is not [-Wpointer-sign]
   int x1304 = uv_os_tmpdir(x1302, x1303);
                            ^~~~~
vendor/libuv/include/uv.h:1219:34: note: passing argument to parameter 'buffer' here
UV_EXTERN int uv_os_tmpdir(char* buffer, size_t* size);
                                 ^
c_generated_functions.c:1704:36: warning: passing 'unsigned char *' to parameter of type 'char *' converts between pointers to integer types where one is of the unique plain 'char' type and the other is not [-Wpointer-sign]
   int x1317 = uv_os_getenv(x1314, x1315, x1316);
                                   ^~~~~
vendor/libuv/include/uv.h:1260:52: note: passing argument to parameter 'buffer' here
UV_EXTERN int uv_os_getenv(const char* name, char* buffer, size_t* size);
                                                   ^
c_generated_functions.c:1737:29: warning: passing 'unsigned char *' to parameter of type 'char *' converts between pointers to integer types where one is of the unique plain 'char' type and the other is not [-Wpointer-sign]
   int x1340 = luv_os_uname(x1339);
                            ^~~~~
./helpers.h:186:24: note: passing argument to parameter 'buffer' here
int luv_os_uname(char *buffer);
                       ^
17 warnings generated.
jail: /usr/bin/su -l opam -c cd '/src' && env OCAMLCI='true' CI='true' DEPS='alcotest.1.7.0 astring.0.8.5 base-bigarray.base base-threads.base base-unix.base bigarray-compat.1.1.0 cmdliner.1.2.0 csexp.1.5.2 ctypes.0.22.0 dune.3.15.2 dune-configurator.3.15.2 fmt.0.9.0 integers.0.7.0 ocaml.4.14.2 ocaml-base-compiler.4.14.2 ocaml-config.2 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0 ocamlbuild.0.14.3 ocamlfind.1.9.6 re.1.11.0 result.1.5 seq.base stdlib-shims.0.3.0 topkg.1.0.7 uutf.1.0.3' OPAMCOLOR='always' CLICOLOR_FORCE='1' '/usr/bin/env' 'bash' '-c' 'opam exec -- dune build @install @check @runtest && rm -rf _build': failed
"jail" "-c" "name=obuilder_689_7815" "mount.devfs" "path=/obuilder/result/e50085d3644e497a79ed780457f4dad6fa8b414bf0a24f58bbea7b2a5d3ad7a5/rootfs" "vnet" "exec.start=/sbin/ifconfig lo0 127.0.0.1/8" "command=/usr/bin/su" "-l" "opam" "-c" "cd '/src' && env OCAMLCI='true' CI='true' DEPS='alcotest.1.7.0 astring.0.8.5 base-bigarray.base base-threads.base base-unix.base bigarray-compat.1.1.0 cmdliner.1.2.0 csexp.1.5.2 ctypes.0.22.0 dune.3.15.2 dune-configurator.3.15.2 fmt.0.9.0 integers.0.7.0 ocaml.4.14.2 ocaml-base-compiler.4.14.2 ocaml-config.2 ocaml-options-vanilla.1 ocaml-syntax-shims.1.0.0 ocamlbuild.0.14.3 ocamlfind.1.9.6 re.1.11.0 result.1.5 seq.base stdlib-shims.0.3.0 topkg.1.0.7 uutf.1.0.3' OPAMCOLOR='always' CLICOLOR_FORCE='1' '/usr/bin/env' 'bash' '-c' 'opam exec -- dune build @install @check @runtest && rm -rf _build'" failed with exit status 1
2024-05-10 11:10.08: Job failed: Failed: Build failed