Merge pull request #87 from c-cube/simon/fix-chunk-2024-06-18 #699
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
strategy: | |
fail-fast: true | |
matrix: | |
os: | |
- ubuntu-latest | |
#- macos-latest | |
#- windows-latest | |
ocaml-compiler: | |
- 4.08.x | |
- 4.14.x | |
- 5.1.x | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- run: sudo apt-get update | |
if: ${{ matrix.os == 'ubuntu-latest' }} | |
- name: Use OCaml ${{ matrix.ocaml-compiler }} | |
uses: ocaml/setup-ocaml@v2 | |
with: | |
ocaml-compiler: ${{ matrix.ocaml-compiler }} | |
allow-prerelease-opam: true | |
opam-depext-flags: --with-test | |
- run: opam install ./tiny_httpd.opam ./tiny_httpd_camlzip.opam --deps-only --with-test | |
- run: opam exec -- dune build @install -p tiny_httpd,tiny_httpd_camlzip | |
- run: opam exec -- dune build @src/runtest @examples/runtest @tests/runtest -p tiny_httpd | |
if: ${{ matrix.os == 'ubuntu-latest' }} | |
- run: opam install tiny_httpd | |
- run: opam exec -- dune build @src/runtest @examples/runtest @tests/runtest -p tiny_httpd_camlzip | |
if: ${{ matrix.os == 'ubuntu-latest' }} | |
- run: opam install logs magic-mime -y | |
- run: opam exec -- dune build @install -p tiny_httpd,tiny_httpd_camlzip |