-
Notifications
You must be signed in to change notification settings - Fork 7
31 lines (30 loc) · 942 Bytes
/
ci.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
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-20.04
strategy:
matrix:
image:
- mathcomp/mathcomp:2.0.0-coq-8.16
- mathcomp/mathcomp:2.1.0-coq-8.16
- mathcomp/mathcomp:2.2.0-coq-8.16
- mathcomp/mathcomp:2.0.0-coq-8.17
- mathcomp/mathcomp:2.1.0-coq-8.17
- mathcomp/mathcomp:2.2.0-coq-8.17
- mathcomp/mathcomp:2.0.0-coq-8.18
- mathcomp/mathcomp:2.1.0-coq-8.18
- mathcomp/mathcomp:2.2.0-coq-8.18
- mathcomp/mathcomp:2.2.0-coq-8.19
fail-fast: false
steps:
- uses: actions/checkout@v4
- uses: coq-community/docker-coq-action@v1
with:
custom_image: ${{ matrix.image }}
before_install: |
startGroup "Workaround permission issue"
sudo chown -R coq:coq .
endGroup
- name: Revert permissions
if: ${{ always() }}
run: sudo chown -R 1001:116 .