-
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Build: Build on Windows with AppVeyor
- Loading branch information
1 parent
2eba49b
commit d0ca8fa
Showing
2 changed files
with
33 additions
and
0 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
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,32 @@ | ||
version: '{build}' | ||
skip_tags: true | ||
|
||
environment: | ||
MAVEN_VERSION: 3.5.0 | ||
matrix: | ||
- JAVA_HOME: C:\Program Files\Java\jdk1.7.0 | ||
- JAVA_HOME: C:\Program Files\Java\jdk1.8.0 | ||
|
||
os: Windows Server 2012 | ||
|
||
install: | ||
- ps: | | ||
Add-Type -AssemblyName System.IO.Compression.FileSystem | ||
if (!(Test-Path -Path "C:\maven" )) { | ||
Write-Host "Downloading Maven $env:MAVEN_VERSION" | ||
(new-object System.Net.WebClient).DownloadFile("https://repo1.maven.org/maven2/org/apache/maven/apache-maven/$env:MAVEN_VERSION/apache-maven-$env:MAVEN_VERSION-bin.zip", 'C:\maven-bin.zip') | ||
[System.IO.Compression.ZipFile]::ExtractToDirectory("C:\maven-bin.zip", "C:\maven") | ||
} | ||
- cmd: SET M2_HOME=C:\maven\apache-maven-%MAVEN_VERSION% | ||
- cmd: SET PATH=%M2_HOME%\bin;%JAVA_HOME%\bin;%PATH:C:\Ruby193\bin;=% | ||
- cmd: SET MAVEN_OPTS=-XX:MaxPermSize=1g -Xmx2g | ||
- cmd: SET JAVA_OPTS=-XX:MaxPermSize=1g -Xmx2g | ||
- cmd: mvn --version | ||
- cmd: java -version | ||
|
||
build_script: | ||
- mvn --batch-mode clean verify -P run-its | ||
|
||
cache: | ||
- C:\maven\ -> appveyor.yml | ||
- C:\Users\appveyor\.m2 -> pom.xml |