-
Notifications
You must be signed in to change notification settings - Fork 443
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
Use OpenJDK intead of Oracle JDK #1241
Changes from all commits
ed1b14d
2d0b70d
9d4a217
d64c419
fd64539
a3ab816
365911c
2e81dae
243520c
74bdb7b
34e5002
c48d3fa
7b197de
bd70ffb
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,17 @@ | ||
version: '{build}' | ||
os: Windows Server 2012 | ||
install: | ||
- cmd: choco install zulu8 -ia "INSTALLDIR=""C:\zulu""" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Appveyor was still working I guess. Is this necessary to do? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. At AppVeyor, it used Oracle JDK, so I think it would be good to use the same JDK at different OS |
||
- cmd: SET JAVA_HOME="C:\zulu" | ||
- cmd: choco install sbt -ia "INSTALLDIR=""C:\sbt""" | ||
- cmd: SET PATH=C:\sbt\bin;%JAVA_HOME%\bin;%PATH% | ||
- cmd: SET SBT_OPTS=-XX:MaxPermSize=2g -Xmx4g | ||
- cmd: java -version | ||
- cmd: SET SBT_OPTS=-Xms4g -Xmx4g | ||
build_script: | ||
- sbt clean compile | ||
test_script: | ||
- sbt validateWindows | ||
cache: | ||
- C:\sbt\ | ||
- C:\Users\appveyor\.sbt | ||
- C:\Users\appveyor\.m2 | ||
- C:\Users\appveyor\.ivy2 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice for trying that out! I hope that this works as expected
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
After this change, we don't need to download sbt ourself. Travis CI will include a sbt