Pin camlp5 version of make switch
to 8.02.01, fix typos in NAME_ASSUMS_TAC
help
#56
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: | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
# check PRs | |
pull_request: | |
branches: | |
- master | |
# check pushes | |
push: | |
branches: | |
- master | |
jobs: | |
test1: | |
runs-on: ubuntu-22.04 | |
name: OCaml 4.05, Camlp5 7.10 | |
steps: | |
- name: Install dependency | |
run: | | |
sudo apt update && sudo apt install -y opam | |
opam init --disable-sandboxing --compiler=4.05.0 | |
opam pin -y add camlp5 7.10 | |
opam install -y num | |
- name: Checkout this repo | |
uses: actions/checkout@v2 | |
with: | |
path: hol-light | |
- name: Run | |
run: | | |
cd hol-light | |
eval $(opam env) | |
make | |
./hol.sh | tee log.txt | |
! grep "Error" log.txt | |
test2: | |
runs-on: ubuntu-22.04 | |
name: OCaml 4.14, Camlp5 8.02 (make switch) | |
steps: | |
- name: Install dependency | |
run: | | |
sudo apt update && sudo apt install -y opam xdot | |
opam init --disable-sandboxing | |
- name: Checkout this repo | |
uses: actions/checkout@v2 | |
with: | |
path: hol-light | |
- name: Run | |
run: | | |
cd hol-light | |
make switch | |
eval $(opam env) | |
make | |
./hol.sh | tee log.txt | |
! grep "Error" log.txt |