-
Notifications
You must be signed in to change notification settings - Fork 3
/
appveyor.yml
37 lines (37 loc) · 1.18 KB
/
appveyor.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# Set build version format here instead of in the admin panel.
version: '{build}'
# Fix line endings in Windows. (runs before repo cloning)
init:
- git config --global core.autocrlf input
# Finish on first failed build
matrix:
fast_finish: true
skip_tags: true
clone_depth: 10
environment:
matrix:
- JAVA_HOME: C:\Program Files\Java\jdk1.7.0
- JAVA_HOME: C:\Program Files\Java\jdk1.8.0
platform:
- x86
- x64
install:
- ps: |
Add-Type -AssemblyName System.IO.Compression.FileSystem
if (!(Test-Path -Path "C:\maven" )) {
(new-object System.Net.WebClient).DownloadFile('http://www.us.apache.org/dist/maven/maven-3/3.3.9/binaries/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: echo %PATH%
- cmd: mvn --version
- cmd: java -version
- cmd: git --version && svn --version
build_script:
- mvn clean package -B -Dmaven.test.skip=true
test_script:
- mvn clean test -q
cache:
- C:\maven