Change license from CeCILL v2 to MPL-2.0 (more permissive) (#208) #658
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: CI | |
on: [push, pull_request] | |
permissions: read-all | |
env: | |
OCAML_VERSION: 4.14 | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 1 | |
- name: Install OCaml ${{env.OCAML_VERSION}} | |
uses: avsm/setup-ocaml@v2 | |
with: | |
ocaml-compiler: ${{env.OCAML_VERSION}} | |
dune-cache: true | |
- name: Build dependencies | |
if: steps.cache.outputs.cache-hit != 'true' | |
run: | | |
opam repo add coq-released https://coq.inria.fr/opam/released | |
opam install . --deps-only --with-doc --with-test | |
opam list --installed | |
- name: Build interfaces (vos) | |
run: opam exec -- make -j 2 vos TIMED=1 | |
- name: Build full (vo) | |
run: opam exec -- make -j 2 all TIMED=1 |