-
Notifications
You must be signed in to change notification settings - Fork 2
109 lines (97 loc) · 3.02 KB
/
ci_build.yaml
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
name: CI build
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:
permissions:
actions: write
contents: write
env:
REGISTRY: "ghcr.io"
IMAGE_TAG: "beluga-lang/mcltt:main"
jobs:
wf:
name: Completeness of _CoqProject
runs-on: ubuntu-latest
steps:
- name: repo checkout
uses: actions/checkout@v4
- name: check
run: |
.github/scripts/check_projects.sh theories
build:
name: Continuous Intergration
runs-on: ubuntu-latest
permissions:
packages: read
contents: write
steps:
- name: get number of CPU cores
uses: SimenB/github-actions-cpu-cores@v2
id: cpu-cores
- name: repo checkout
uses: actions/checkout@v4
- name: Initialise variables
run: |
# Only deploy if the build follows from pushing to master
if [[ '${{ github.ref }}' == 'refs/heads/main' ]]; then
echo "DOC_DEPLOY=true" >> $GITHUB_ENV
else
echo "DOC_DEPLOY=false" >> $GITHUB_ENV
fi
- name: container registry log in
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: image pre-pulling
run: docker pull ${{ env.REGISTRY }}/${{ env.IMAGE_TAG }}
- name: coq processing
uses: coq-community/docker-coq-action@v1
with:
custom_image: ${{ env.REGISTRY }}/${{ env.IMAGE_TAG }}
install: |
before_script: |
startGroup "Fix the permission issue"
sudo chown -R coq:coq .
endGroup
script: |
startGroup "Build binary"
make pretty-timed
if [[ "${{ env.DOC_DEPLOY }}" == 'true' ]]; then
make coqdoc
fi
endGroup
startGroup "Run inline tests"
dune runtest
endGroup
after_script: |
startGroup "after"
endGroup
export: "OPAMJOBS OPAMYES"
env:
OPAMJOBS: ${{ steps.cpu-cores.outputs.count }}
OPAMYES: "true"
- name: permissions revert
# to avoid a warning at cleanup time
if: ${{ always() }}
run: sudo chown -R 1001:116 .
- name: generate Github pages
if: ${{ success() && env.DOC_DEPLOY == 'true' }}
run: |
sudo apt install -y pandoc
mv theories/html html
cp assets/styling.css html/styling.css
cp -r assets/images html/images
pandoc README.md -H assets/include.html --no-highlight --metadata pagetitle='McLTT: A Bottom-up Approach to Implementing A Proof Assistant' -t html --css styling.css -o html/index.html
- name: Deploy HTML
uses: JamesIves/[email protected]
if: ${{ success() && env.DOC_DEPLOY == 'true' }}
with:
branch: gh-pages
folder: html