Update GHA scripts #442
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: | |
schedule: | |
# Prime the caches every Monday | |
- cron: 0 1 * * MON | |
jobs: | |
build: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
- windows-latest | |
packages: [ '.' ] | |
runtest: | |
- true | |
ocaml-compiler: | |
- 4.14.x | |
- 5.2.x | |
include: | |
- os: ubuntu-latest | |
ocaml-compiler: 4.08.x | |
packages: 'alcotest alcotest-js alcotest-lwt alcotest-mirage' | |
opam-local-packages: 'alcotest.opam alcotest-js.opam alcotest-lwt.opam alcotest-mirage.opam' | |
runtest: true | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Set git to use LF | |
run: | | |
git config --global core.autocrlf false | |
git config --global core.eol lf | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Use latest Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: latest | |
- name: Use OCaml ${{ matrix.ocaml-compiler }} | |
uses: ocaml/setup-ocaml@v2 | |
if: runner.os != 'Windows' | |
with: | |
ocaml-compiler: ${{ matrix.ocaml-compiler }} | |
opam-local-packages: $${ matrix.opam-local-packages }} | |
opam-depext-flags: --with-test | |
- name: Use OCaml ${{ matrix.ocaml-compiler }} | |
uses: ocaml/setup-ocaml@v2 | |
if: runner.os == 'Windows' | |
with: | |
ocaml-compiler: ${{ matrix.ocaml-compiler }} | |
opam-local-packages: $${ matrix.opam-local-packages }} | |
opam-depext-flags: --with-test | |
opam-repositories: | | |
opam-repository-mingw: git+https://github.com/dra27/opam-repository.git#windows-initial | |
default: git+https://github.com/ocaml/opam-repository.git | |
- run: | | |
opam pin add alcotest-async.dev ./ -n | |
opam pin add alcotest-js.dev ./ -n | |
opam pin add alcotest-lwt.dev ./ -n | |
opam pin add alcotest-mirage.dev ./ -n | |
opam pin add alcotest.dev ./ -n | |
- run: opam install ${{ matrix.packages }} --with-test --deps-only | |
- if: ${{ matrix.runtest }} | |
run: opam exec -- dune build @install @check @runtest @runtest-js |