Skip to content

Commit 61f0d12

Browse files
committed
Tweak CI
1 parent 8d982de commit 61f0d12

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/coq-action.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,8 @@ 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 == 64 && 'coq-compcert.3.16' }}
54+
opam install -y ${{ matrix.coq_version == 'dev' && 'coq-flocq' }} || exit_code=$?
55+
opam install -y ${{ matrix.coq_version != 'dev' && matrix.bit_size == 64 && 'coq-compcert.3.16' }} || exit_code=$?
5556
# Required by test2
5657
opam install -y coq-ext-lib
5758
opam install -y coq-paco
@@ -63,6 +64,7 @@ jobs:
6364
endGroup
6465
script: |
6566
startGroup "Build & Install"
67+
6668
make ${{matrix.make_target}} BITSIZE=${{matrix.bit_size}} COMPCERT=${{ matrix.bit_size==64 && 'platform' || 'bundled' }} IGNORECOQVERSION=true IGNORECOMPCERTVERSION=true
6769
endGroup
6870
after_script: |

0 commit comments

Comments
 (0)