mirror of
https://github.com/c-cube/tiny_httpd.git
synced 2025-12-05 19:00:32 -05:00
54 lines
1.4 KiB
YAML
54 lines
1.4 KiB
YAML
name: build
|
|
|
|
on:
|
|
pull_request:
|
|
push:
|
|
schedule:
|
|
# Prime the caches every Monday
|
|
- cron: 0 1 * * MON
|
|
|
|
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
|
|
|
|
- name: Use OCaml ${{ matrix.ocaml-compiler }}
|
|
uses: ocaml/setup-ocaml@v2
|
|
with:
|
|
ocaml-compiler: ${{ matrix.ocaml-compiler }}
|
|
allow-prerelease-opam: true
|
|
opam-local-packages: |
|
|
./tiny_httpd.opam
|
|
./tiny_httpd_camlzip.opam
|
|
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 -y
|
|
|
|
- run: opam exec -- dune build @install -p tiny_httpd,tiny_httpd_camlzip
|