-
Notifications
You must be signed in to change notification settings - Fork 13
91 lines (74 loc) · 2.4 KB
/
Copy pathtest-tutorial-build.yml
File metadata and controls
91 lines (74 loc) · 2.4 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
name: Test tutorial build
on:
pull_request:
permissions:
contents: read
jobs:
build:
strategy:
matrix:
version: [4.14.1]
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
with:
repository: rems-project/cn
- name: System dependencies (ubuntu)
run: |
sudo apt install build-essential libgmp-dev z3 opam
- name: Restore OPAM cache
id: cache-opam-restore
uses: actions/cache/restore@v4
with:
path: ~/.opam
key: ${{ matrix.version }}
- name: Setup opam
if: steps.cache-opam-restore.outputs.cache-hit != 'true'
run: |
opam init --yes --no-setup --shell=sh --compiler=${{ matrix.version }}
eval $(opam env --switch=${{ matrix.version }})
opam repo add --yes --this-switch coq-released https://coq.inria.fr/opam/released
opam install --deps-only --yes ./cn.opam
- name: Save OPAM cache
uses: actions/cache/save@v4
if: steps.cache-opam-restore.outputs.cache-hit != 'true'
with:
path: ~/.opam
key: ${{ matrix.version }}
- name: Download cvc5 release
uses: robinraju/release-downloader@v1
with:
repository: cvc5/cvc5
tag: cvc5-1.2.0
fileName: cvc5-Linux-x86_64-static.zip
- name: Unzip and install cvc5
run: |
unzip cvc5-Linux-x86_64-static.zip
chmod +x cvc5-Linux-x86_64-static/bin/cvc5
sudo cp cvc5-Linux-x86_64-static/bin/cvc5 /usr/local/bin/
- name: Install CN
run: |
opam switch ${{ matrix.version }}
eval $(opam env --switch=${{ matrix.version }})
opam pin --yes --no-action add cn .
opam install --yes cn
- name: Checkout cn-tutorial
uses: actions/checkout@v4
with:
path: cn-tutorial
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.x
- name: Install Material for MkDocs
run: pip install mkdocs-material mkdocs-macros-plugin
- name: Clean the build directory
run: |
cd cn-tutorial
make clean
- name: Check that the tutorial builds
run: |
opam switch ${{ matrix.version }}
eval $(opam env --switch=${{ matrix.version }})
cd cn-tutorial
make