forked from DeepSpec/InteractionTrees
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request DeepSpec#162 from liyishuai/master
opam: Compatible with 8.11
- Loading branch information
Showing
3 changed files
with
59 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
version: 2.1 | ||
|
||
defaults: &defaults | ||
environment: | ||
OPAMBESTEFFORT: true | ||
OPAMJOBS: 2 | ||
OPAMVERBOSE: 1 | ||
OPAMWITHTEST: true | ||
OPAMYES: true | ||
TERM: xterm | ||
resource_class: medium | ||
steps: | ||
- checkout | ||
- run: | ||
name: Configure environment | ||
command: echo . ~/.profile >> $BASH_ENV | ||
- run: | ||
name: Install dependencies | ||
command: | | ||
opam repo -a add coq-extra-dev https://coq.inria.fr/opam/extra-dev | ||
opam update | ||
opam install --deps-only . | ||
- run: | ||
name: List installed packages | ||
command: opam list | ||
- run: | ||
name: Build, test, and install package | ||
command: opam install . | ||
- run: | ||
name: Uninstall package | ||
command: opam remove . | ||
|
||
jobs: | ||
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 8_11: | ||
<<: *defaults | ||
docker: | ||
- image: coqorg/coq:8.11 | ||
|
||
workflows: | ||
version: 2 | ||
build: | ||
jobs: | ||
- coq 8_8 | ||
- coq 8_9 | ||
- coq 8_10 | ||
- coq 8_11 |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters