Skip to content

Commit bbc5d6d

Browse files
committed
Tweak CI
1 parent cf04329 commit bbc5d6d

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/coq-action.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,8 @@ jobs:
5555
opam install -y ${{ matrix.coq_version == '9.0' && matrix.bit_size == 64 && 'coq-compcert.3.16' }} || exit_code=$?
5656
# Required by test2
5757
opam install -y coq-ext-lib
58-
opam install -y ${{ matrix.coq_version == '9.0' && 'coq-paco' }} || exit_code=$?
58+
# can simplify next line once the coq-paco opam package is available for rocq 9.1
59+
opam install -y ${{ matrix.coq_version != '9.1' && 'coq-paco' }} || exit_code=$?
5960
endGroup
6061
# See https://github.com/coq-community/docker-coq-action/tree/v1#permissions
6162
before_script: |
@@ -105,7 +106,9 @@ jobs:
105106
- 64
106107
exclude:
107108
- coq_version: 9.1
108-
bit_size: 32
109+
bit_size: 32 # can unexclude this once coq-paco installs
110+
- coq_version: 9.1
111+
make_target: test2
109112
- coq_version: dev
110113
bit_size: 32
111114
- bit_size: 64

0 commit comments

Comments
 (0)