Skip to content

8.18 is not yet in the ppa #40

8.18 is not yet in the ppa

8.18 is not yet in the ppa #40

Workflow file for this run

name: CI (Coq)
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-20.04
strategy:
matrix:
env:
- { COQ_VERSION: "master", COQ_PACKAGE: "coq" , PPA: "ppa:jgross-h/coq-master-daily" }
- { COQ_VERSION: "8.17.1", COQ_PACKAGE: "coq-8.17.1", PPA: "ppa:jgross-h/many-coq-versions-ocaml-4-11" }
- { COQ_VERSION: "8.16.1", COQ_PACKAGE: "coq-8.16.1", PPA: "ppa:jgross-h/many-coq-versions-ocaml-4-11" }
fail-fast: false
env: ${{ matrix.env }}
steps:
- name: install Coq
run: |
if [ ! -z "$PPA" ]; then sudo add-apt-repository "$PPA" -y; fi
sudo apt-get update -q
sudo apt-get install $COQ_PACKAGE -y --allow-unauthenticated
- name: echo build params
run: |
lscpu
uname -a
lsb_release -a
coqc --version
echo | coqtop
- uses: actions/checkout@v2
- run: make