Skip to content

Commit

Permalink
Update .travis.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
brianmajor authored Mar 27, 2018
1 parent 292dee2 commit 8e3c487
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
language: java

dist: trusty
sudo: required

jdk:
- openjdk7
- oraclejdk8

before_script: openssl s_client -CApath /etc/ssl/certs/ -connect plugins.gradle.org:443 </dev/null | sed -ne '/-BEGIN CERTIFICATE-/,/-END CERTIFICATE-/p' > /tmp/gradle.crt; sudo keytool -importcert -noprompt -file /tmp/gradle.crt -trustcacerts -keystore $JAVA_HOME/jre/lib/security/cacerts -alias root -storepass changeit;

script: for mod in cadc-cdp cadc-cdp-server cadc-cert-gen; do cd $mod; gradle assemble check install || break -1; cd ..; done

0 comments on commit 8e3c487

Please sign in to comment.