-
Notifications
You must be signed in to change notification settings - Fork 7
45 lines (43 loc) · 984 Bytes
/
coq-action.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
name: CI
on:
push:
branches:
- master
pull_request:
branches:
- "**"
schedule:
# Tuesday 8am UTC (3am EST)
- cron: "0 8 * * TUE"
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
image:
- "coqorg/coq:dev"
- "coqorg/coq:8.20"
fail-fast: false
steps:
- uses: actions/checkout@v4
with:
submodules: true
- uses: coq-community/docker-coq-action@v1
with:
custom_image: ${{ matrix.image }}
before_install:
install:
after_install:
before_script: |
startGroup "Workaround permission issue"
sudo chown -R coq:coq .
endGroup
script: |
startGroup "Build project"
make -j4 -k
endGroup
after_script:
uninstall:
- name: Revert permissions
if: ${{ always() }}
run: sudo chown -R 1001:116 .