editing... #111
This file contains hidden or 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: Multiple MacOSes | |
| on: | |
| - pull_request | |
| - push | |
| jobs: | |
| build: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: | |
| - macos-14 # beta runner for macos arm64 | |
| - macos-latest | |
| # - ubuntu-latest | |
| ocaml-compiler: | |
| - "5.2" | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Use OCaml ${{ matrix.ocaml-compiler }} | |
| uses: ocaml/setup-ocaml@v3 | |
| with: | |
| ocaml-compiler: ${{ matrix.ocaml-compiler }} | |
| opam-local-packages: | | |
| *.opam | |
| - name: Deps | |
| run: | | |
| brew install llvm libomp aspcud | |
| export PATH="/opt/homebrew/opt/llvm/bin:$PATH" | |
| export LDFLAGS="-L/opt/homebrew/opt/llvm/lib" | |
| export CPPFLAGS="-I/opt/homebrew/opt/llvm/include" | |
| export CC=/opt/homebrew/opt/llvm/bin/clang | |
| export CXX=/opt/homebrew/opt/llvm/bin/clang++ | |
| which clang | |
| which cc | |
| - run: opam depext owl --with-test | |
| - run: | | |
| opam install owl-base --yes --deps-only --with-test | |
| opam exec -- dune build -p owl-base | |
| opam exec -- dune runtest -p owl-base | |
| - run: | | |
| opam install owl --yes --deps-only --with-test | |
| opam exec -- dune build -p owl | |
| opam exec -- dune runtest -p owl | |
| - run: | | |
| opam install owl-top --yes --deps-only --with-test | |
| opam exec -- dune build -p owl-top | |
| opam exec -- dune runtest -p owl-top |