Created
June 8, 2018 06:50
-
-
Save tirkarthi/c4c2f8319795c2f3f070c37d574a8142 to your computer and use it in GitHub Desktop.
Fix OpenJDK 9 and above certificate failures in Travis
This file contains hidden or 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
language: clojure | |
lein: 2.8.1 | |
jdk: | |
- openjdk8 | |
- oraclejdk8 | |
- oraclejdk9 | |
matrix: | |
include: | |
- jdk: openjdk9 | |
before_install: | |
- rm "${JAVA_HOME}/lib/security/cacerts" | |
- ln -s /etc/ssl/certs/java/cacerts "${JAVA_HOME}/lib/security/cacerts" | |
# Ref : https://clojurians.slack.com/files/UB2H4PVS9/FB2SAE83A/_travis_yml.yaml |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment