This commit is contained in:
Simon Cruanes 2021-02-01 10:50:30 -05:00
parent 07d479c305
commit 06ef1fc787
2 changed files with 3 additions and 1 deletions

View file

@ -14,6 +14,8 @@ jobs:
with:
ocaml-version: ${{ matrix.ocaml-version }}
- run: opam pin -n .
# more recent dune breaks the inline tests… because of warn-error 😱
- run: opam pin dune 2.7.1 -y -n
- run: opam depext -yt tiny_httpd tiny_httpd_camlzip
- run: opam install -t . --deps-only
- run: opam exec -- dune build

View file

@ -3,6 +3,6 @@
(name tiny_httpd)
(public_name tiny_httpd)
(libraries threads)
(inline_tests (backend qtest.lib) (flags :standard -warn-error -a+8))
(inline_tests (backend qtest.lib))
(flags :standard -safe-string)
(wrapped false))