Update mac.yml: fix pkg-config issue #68
Workflow file for this run
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 and test on Mac | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
deploy-owl: | |
name: Install Owl | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@main | |
- name: Deps | |
# git build-essential wget unzip aspcud m4 pkg-config libshp-dev libopenblas-dev liblapacke-dev | |
# homebrew in the workers comes pre-installed with the old pkg-config, which conflicts with the new pkgconf | |
run: | | |
brew uninstall pkg-config | |
brew install aspcud openblas | |
- name: Use OCaml | |
uses: ocaml/setup-ocaml@v2 | |
with: | |
ocaml-compiler: '5.1' | |
# opam-local-packages: | | |
# *.opam | |
dune-cache: true | |
allow-prerelease-opam: true | |
- name: OCaml Deps | |
run: opam install ocaml-compiler-libs alcotest conf-openblas ctypes dune-configurator stdio npy | |
- name: Compile Owl, install | |
run: opam exec -- dune build @install | |
- name: Run tests | |
run: | | |
opam install owl-base | |
opam exec -- dune runtest -j 1 --no-buffer -p owl |