Skip to content

Commit

Permalink
ci: more versions supported
Browse files Browse the repository at this point in the history
  • Loading branch information
liyishuai committed Jan 17, 2020
1 parent 1f01cc2 commit e067a13
Showing 1 changed file with 17 additions and 3 deletions.
20 changes: 17 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ defaults: &defaults
command: |
opam repo add coq-extra-dev https://coq.inria.fr/opam/extra-dev
opam update
opam pin -n coq-ext-lib 0.10.2
opam install coq-quickchick
- run:
name: List installed packages
Expand Down Expand Up @@ -43,13 +42,28 @@ defaults: &defaults
done
jobs:
coq.8.9:
coq 8_8:
<<: *defaults
docker:
- image: coqorg/coq:8.8
coq 8_9:
<<: *defaults
docker:
- image: coqorg/coq:8.9
coq 8_10:
<<: *defaults
docker:
- image: coqorg/coq:8.10
coq dev:
<<: *defaults
docker:
- image: coqorg/coq:dev

workflows:
version: 2
build:
jobs:
- coq.8.9
- coq 8_8
- coq 8_9
- coq 8_10
- coq dev

0 comments on commit e067a13

Please sign in to comment.