Skip to content

Commit 8d982de

Browse files
committed
Tweak CI
1 parent 59d43a9 commit 8d982de

1 file changed

Lines changed: 2 additions & 4 deletions

File tree

.github/workflows/coq-action.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
install: |
5252
startGroup "Install dependencies"
5353
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' }}
54+
opam install -y ${{ matrix.coq_version == 'dev' && 'coq-flocq' || matrix.bit_size == 64 && 'coq-compcert.3.16' }}
5555
# Required by test2
5656
opam install -y coq-ext-lib
5757
opam install -y coq-paco
@@ -63,9 +63,7 @@ jobs:
6363
endGroup
6464
script: |
6565
startGroup "Build & Install"
66-
# put the first version back once CompCert 3.16 is in the Coq Platform
67-
# make ${{matrix.make_target}} BITSIZE=${{matrix.bit_size}} COMPCERT=${{ matrix.coq_version=='dev' && 'bundled' || 'platform' }} IGNORECOQVERSION=true IGNORECOMPCERTVERSION=true
68-
make ${{matrix.make_target}} BITSIZE=${{matrix.bit_size}} COMPCERT=bundled IGNORECOQVERSION=true IGNORECOMPCERTVERSION=true
66+
make ${{matrix.make_target}} BITSIZE=${{matrix.bit_size}} COMPCERT=${{ matrix.bit_size==64 && 'platform' || 'bundled' }} IGNORECOQVERSION=true IGNORECOMPCERTVERSION=true
6967
endGroup
7068
after_script: |
7169
startGroup 'Copy Opam coq/user-contrib and coq-variant'

0 commit comments

Comments
 (0)