-
Notifications
You must be signed in to change notification settings - Fork 52
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #176 from sbt/1.2.x
Merge 1.2.x
- Loading branch information
Showing
3 changed files
with
35 additions
and
3 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
build: off | ||
|
||
init: | ||
- git config --global core.autocrlf input | ||
|
||
install: | ||
- SET JAVA_HOME=C:\Program Files\Java\jdk1.8.0 | ||
- SET PATH=%JAVA_HOME%\bin;%PATH% | ||
|
||
- ps: | | ||
Add-Type -AssemblyName System.IO.Compression.FileSystem | ||
if (!(Test-Path -Path "C:\sbt" )) { | ||
(new-object System.Net.WebClient).DownloadFile( | ||
'https://github.com/sbt/sbt/releases/download/v1.1.5/sbt-1.1.5.zip', | ||
'C:\sbt-bin.zip' | ||
) | ||
[System.IO.Compression.ZipFile]::ExtractToDirectory("C:\sbt-bin.zip", "C:\sbt") | ||
} | ||
- SET PATH=C:\sbt\sbt\bin;%PATH% | ||
- SET SBT_VER=1.1.5 | ||
- SET SBT_OPTS=-XX:MaxPermSize=2g -Xmx4g -Dfile.encoding=UTF8 -Dsbt.version=1.1.5 | ||
- SET SCALA_VERSION=2.12.6 | ||
test_script: | ||
- sbt "++2.12.6 io/test" | ||
|
||
cache: | ||
- '%USERPROFILE%\.ivy2\cache' | ||
- '%USERPROFILE%\.sbt' |
This file contains 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
This file contains 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