Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

backport fixes for CI builds to storm-0.x branch #210

Merged
merged 3 commits into from
Aug 16, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ env:
global:
- DOCKER_REPO=$TRAVIS_REPO_SLUG
before_install:
- apt-cache madison docker-engine
- travis_retry sudo apt-get -o Dpkg::Options::="--force-confnew" install -y docker-engine
- apt-cache madison docker-ce
- travis_retry sudo apt-get -o Dpkg::Options::="--force-confnew" install -y docker-ce
install: mvn install -DskipTests=true -Dmaven.javadoc.skip=true
script:
- jdk_switcher use oraclejdk8
- mvn test
- jdk_switcher use oraclejdk7
- jdk_switcher use openjdk7
- mvn test
- travis_retry bin/build-release.sh
matrix:
Expand All @@ -30,7 +30,7 @@ before_deploy:
- travis_retry make images
- travis_retry make images JAVA_PRODUCT_VERSION=8
- docker images
- travis_retry docker login -e="$DOCKER_EMAIL" -u="$DOCKER_USERNAME" -p="$DOCKER_PASSWORD"
- travis_retry docker login -u="$DOCKER_USERNAME" -p="$DOCKER_PASSWORD"
- travis_retry make push
- travis_retry make push JAVA_PRODUCT_VERSION=8
deploy:
Expand Down