Skip to content

Commit

Permalink
Explicit plaform which sould be supported
Browse files Browse the repository at this point in the history
  • Loading branch information
clarus committed Jul 26, 2019
1 parent 96b2fc7 commit 2135e79
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ env:
- PACKAGE_NAME="coq-io-system"
matrix:
- COQ_IMAGE="coqorg/coq:8.4"
- COQ_IMAGE="coqorg/coq:8.5"
- COQ_IMAGE="coqorg/coq:8.6"
- COQ_IMAGE="coqorg/coq:8.7"
- COQ_IMAGE="coqorg/coq:8.8"
- COQ_IMAGE="coqorg/coq:8.9"
- COQ_IMAGE="coqorg/coq:8.5" SHOULD_SUPPORT="true"
- COQ_IMAGE="coqorg/coq:8.6" SHOULD_SUPPORT="true"
- COQ_IMAGE="coqorg/coq:8.7" SHOULD_SUPPORT="true"
- COQ_IMAGE="coqorg/coq:8.8" SHOULD_SUPPORT="true"
- COQ_IMAGE="coqorg/coq:8.9" SHOULD_SUPPORT="true"

install: |
# Prepare the COQ container
Expand All @@ -32,7 +32,6 @@ install: |
opam pin list
opam list
" install
script:
- echo -e "${ANSI_YELLOW}Building...${ANSI_RESET}" && echo -en 'travis_fold:start:script\\r'
- |
Expand All @@ -41,7 +40,7 @@ script:
set -ex
sudo chown -R coq:coq /home/project
# Check if the package is compatible with the current environment
if opam install ${PACKAGE_NAME} --show-action; then
if [ ${SHOULD_SUPPORT} ] || opam install ${PACKAGE_NAME} --show-action; then
# First install the dependencies
opam install ${PACKAGE_NAME} --deps-only -y
opam list
Expand Down

0 comments on commit 2135e79

Please sign in to comment.