Skip to content

Commit 1a62fdd

Browse files
committed
Tweak CI
1 parent 092f596 commit 1a62fdd

File tree

1 file changed

+11
-4
lines changed

1 file changed

+11
-4
lines changed

.github/workflows/coq-action.yml

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
make_target:
3131
- vst
3232
exclude:
33-
- coq_version: 9.0
33+
- coq_version: 9.1
3434
bit_size: 32
3535
- coq_version: dev
3636
bit_size: 32
@@ -50,7 +50,8 @@ jobs:
5050
endGroup
5151
install: |
5252
startGroup "Install dependencies"
53-
opam install -y ${{ matrix.coq_version == 'dev' && 'coq-flocq' || matrix.bit_size == 32 && 'coq-compcert-32.3.13.1' || 'coq-compcert.3.13.1' }}
53+
opam install -y coq-stdlib
54+
opam install -y ${{ matrix.coq_version == 'dev' && 'coq-flocq' || matrix.bit_size == 32 && 'coq-compcert-32.3.16' || 'coq-compcert.3.16' }}
5455
# Required by test2
5556
opam install -y coq-ext-lib
5657
opam install -y coq-paco
@@ -62,7 +63,7 @@ jobs:
6263
endGroup
6364
script: |
6465
startGroup "Build & Install"
65-
# put the first version back once CompCert 3.15 is in the Coq Platform
66+
# put the first version back once CompCert 3.16 is in the Coq Platform
6667
# make ${{matrix.make_target}} BITSIZE=${{matrix.bit_size}} COMPCERT=${{ matrix.coq_version=='dev' && 'bundled' || 'platform' }} IGNORECOQVERSION=true IGNORECOMPCERTVERSION=true
6768
make ${{matrix.make_target}} BITSIZE=${{matrix.bit_size}} COMPCERT=bundled IGNORECOQVERSION=true IGNORECOMPCERTVERSION=true
6869
endGroup
@@ -89,6 +90,8 @@ jobs:
8990
fail-fast: false
9091
matrix:
9192
coq_version:
93+
- '9.0'
94+
- '9.1'
9295
- 'dev'
9396
make_target:
9497
- assumptions.txt
@@ -101,6 +104,10 @@ jobs:
101104
- 32
102105
- 64
103106
exclude:
107+
- coq_version: 9.1
108+
bit_size: 32
109+
- coq_version: dev
110+
bit_size: 32
104111
- bit_size: 64
105112
make_target: test3
106113
- bit_size: 32
@@ -132,7 +139,7 @@ jobs:
132139
script: |
133140
startGroup "Build & Install"
134141
make -f util/make-touch IGNORECOQVERSION=true IGNORECOMPCERTVERSION=true
135-
# put the first version back once CompCert 3.15 is in the Coq Platform
142+
# put the first version back once CompCert 3.16 is in the Coq Platform
136143
# make ${{matrix.make_target}} BITSIZE=${{matrix.bit_size}} COMPCERT=${{ matrix.coq_version=='dev' && 'bundled' || 'platform' }} IGNORECOQVERSION=true IGNORECOMPCERTVERSION=true
137144
make ${{matrix.make_target}} BITSIZE=${{matrix.bit_size}} COMPCERT=bundled IGNORECOQVERSION=true IGNORECOMPCERTVERSION=true
138145
endGroup

0 commit comments

Comments
 (0)