We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8d982de commit 61f0d12Copy full SHA for 61f0d12
1 file changed
.github/workflows/coq-action.yml
@@ -51,7 +51,8 @@ jobs:
51
install: |
52
startGroup "Install dependencies"
53
opam install -y coq-stdlib
54
- opam install -y ${{ matrix.coq_version == 'dev' && 'coq-flocq' || matrix.bit_size == 64 && 'coq-compcert.3.16' }}
+ 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=$?
56
# Required by test2
57
opam install -y coq-ext-lib
58
opam install -y coq-paco
@@ -63,6 +64,7 @@ jobs:
63
64
endGroup
65
script: |
66
startGroup "Build & Install"
67
+
68
make ${{matrix.make_target}} BITSIZE=${{matrix.bit_size}} COMPCERT=${{ matrix.bit_size==64 && 'platform' || 'bundled' }} IGNORECOQVERSION=true IGNORECOMPCERTVERSION=true
69
70
after_script: |
0 commit comments