Skip to content

Commit

Permalink
Update appveyor.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
velo committed Feb 15, 2016
1 parent 25e568a commit 7ce050d
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,19 @@ environment:
os: Windows Server 2012

install:
- ps: choco install maven
- ps: |
Add-Type -AssemblyName System.IO.Compression.FileSystem
if (!(Test-Path -Path "C:\maven" )) {
(new-object System.Net.WebClient).DownloadFile('https://repo1.maven.org/maven2/org/apache/maven/apache-maven/3.3.9/apache-maven-3.3.9-bin.zip', 'C:\maven-bin.zip')
[System.IO.Compression.ZipFile]::ExtractToDirectory("C:\maven-bin.zip", "C:\maven")
}
- cmd: SET PATH=C:\maven\apache-maven-3.3.9\bin;%JAVA_HOME%\bin;%PATH%
- cmd: SET MAVEN_OPTS=-XX:MaxPermSize=2g -Xmx4g
- cmd: SET JAVA_OPTS=-XX:MaxPermSize=2g -Xmx4g
- cmd: mvn --version
- cmd: java -version
- ps: choco install sbt

build_script:
- ps: mvn clean install -P travis -B -f driver/pom.xml -Dfailsafe.timeout=0
- ps: cd tests-scala ; sbt test
- mvn clean install -P travis -B -f driver/pom.xml -Dfailsafe.timeout=0
- cd tests-scala ; sbt test

0 comments on commit 7ce050d

Please sign in to comment.