File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change 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
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 : |
You can’t perform that action at this time.
0 commit comments