File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -32,15 +32,19 @@ jobs:
32
32
opam_file : ' coq-bignums.opam'
33
33
custom_image : ${{ matrix.image }}
34
34
install : |
35
- startGroup "Install coq and dependencies "
35
+ startGroup "Install"
36
36
sudo apt-get update -y -q
37
37
opam remove -y coq-bignums || true # remove coq-bignums if ever in image
38
38
opam repository add --all-switches --set-default coq-extra-dev https://coq.inria.fr/opam/extra-dev # docker-coq
39
39
opam repository add --all-switches --set-default coq-core-dev https://coq.inria.fr/opam/core-dev # docker-coq
40
40
opam pin add -n -y -k version coq ${{ matrix.coq_version }} # docker-coq
41
41
opam pin add -n -y -k path $PACKAGE.dev $WORKDIR
42
42
opam update -y
43
- opam install --confirm-level=unsafe-yes -j 2 $PACKAGE --deps-only
43
+ opam install --confirm-level=unsafe-yes -j 2 $PACKAGE --ignore-constraints-on=dune
44
+ endGroup
45
+ script : |
46
+ startGroup "Post install"
47
+ opam list
44
48
endGroup
45
49
export : ' OPAMWITHTEST'
46
50
env :
You can’t perform that action at this time.
0 commit comments