diff --git a/.circleci/config.yml b/.circleci/config.yml index 7a2e709..08099e3 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,9 +1,12 @@ version: 2.1 defaults: &defaults - docker: - - image: coqorg/coq:8.10 + resource_class: medium + steps: + - startup + - build environment: + OPAMJOBS: 2 OPAMVERBOSE: 1 OPAMWITHTEST: true OPAMYES: true @@ -38,21 +41,23 @@ commands: command: opam remove . jobs: - ocaml 4_05: + coq 8_10: <<: *defaults - steps: - - startup - - build - ocaml 4_07: + docker: + - image: coqorg/coq:8.10 + coq 8_11: <<: *defaults - steps: - - startup - - run: opam switch 4.07.1+flambda - - build + docker: + - image: coqorg/coq:8.11 + coq dev: + <<: *defaults + docker: + - image: coqorg/coq:dev workflows: version: 2 build: jobs: - - ocaml 4_05 - - ocaml 4_07 + - coq 8_10 + - coq 8_11 + - coq dev diff --git a/tests/Makefile.coq.local b/tests/Makefile.coq.local index 802dbc7..af50452 100644 --- a/tests/Makefile.coq.local +++ b/tests/Makefile.coq.local @@ -1,3 +1,3 @@ $(VFILES:.v=.out): %.out: %.v $(SHOW)'COQC $< > $@' - $(HIDE)$(TIMER) $(COQC) $(COQDEBUG) $(COQFLAGS) $(COQLIBS) $< > $@ + $(HIDE)$(TIMER) $(COQC) $(COQDEBUG) $(COQFLAGS) $(COQLIBS) $< | tee $@