-
Notifications
You must be signed in to change notification settings - Fork 3
86 lines (75 loc) · 2.29 KB
/
build.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
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
name: LogRel CI
on:
push:
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
permissions:
contents: read
pages: write
id-token: write
jobs:
build:
runs-on: ubuntu-latest
env:
coq_version: '8.16'
ocaml_version: '4.14-flambda'
fail-fast: true
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
submodules: true
fetch-depth: 1
- name: Docker-Coq-Action
uses: coq-community/docker-coq-action@v1
with:
coq_version: ${{ env.coq_version }}
ocaml_version: ${{ env.ocaml_version }}
before_install: |
startGroup "Print opam config"
sudo chown -R coq:coq .
opam config list; opam repo list; opam list
endGroup
before_script: |
startGroup "Workaround permission issue"
sudo chown -R coq:coq . # <--
opam exec -- ocamlfind list
endGroup
script: |
startGroup "Build project"
opam exec -- make -j 2
opam exec -- make coqdoc
endGroup
uninstall: |
startGroup "Clean project"
endGroup
- name: Revert permissions
# to avoid a warning at cleanup time
if: ${{ always() }}
run: sudo chown -R 1001:116 . # <--
- name: Install graphviz
uses: ts-graphviz/setup-graphviz@v1
- name: Build dependency graph
run: make depgraph
- name: Build doc overview
uses: docker://pandoc/core:2.9
with:
args: >- # allows you to break string into multiple lines
--standalone
--output=docs/index.html
--css=coqdoc/resources/github-pandoc.css
--metadata title="LogRel Overview"
docs/index.md
- name: Setup Pages
if: github.ref == 'refs/heads/master'
uses: actions/configure-pages@v3
- name: Upload artifact
if: github.ref == 'refs/heads/master'
uses: actions/upload-pages-artifact@v1
with:
# Upload entire repository
path: 'docs'
- name: Deploy to GitHub Pages
if: github.ref == 'refs/heads/master'
id: deployment
uses: actions/deploy-pages@v1