forked from coq-tactician/coq-tactician
-
Notifications
You must be signed in to change notification settings - Fork 0
40 lines (37 loc) · 1.11 KB
/
stdlib.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
name: Stdlib
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
path: 'coq-tactician'
- uses: actions/checkout@v2
with:
repository: 'coq-tactician/coq-tactician-stdlib'
ref: 'coq8.11'
path: 'coq-tactician-stdlib'
- uses: coq-community/docker-coq-action@v1.2.3
with:
opam_file: 'coq-tactician.opam'
coq_version: '8.11'
ocaml_version: '4.11-flambda'
install: |
startGroup "Install dependencies"
opam repo add coq-extra-dev https://coq.inria.fr/opam/extra-dev
opam pin add -n -y -k path coq-tactician coq-tactician/
opam update -y
opam install -y -j 2 coq-tactician
endGroup
script: |
startGroup "Build"
sudo chmod -R 777 .
opam exec -- make -C coq-tactician-stdlib -j2
endGroup
uninstall: |
startGroup "Uninstallation test"
opam remove coq-tactician
endGroup