-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathappveyor.yml
26 lines (26 loc) · 948 Bytes
/
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
version: '{build}'
os: Windows Server 2012
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=-Xmx1024m
- cmd: SET JAVA_OPTS=-XX:+UseG1GC -Xmx1024m
build_script:
- mvn clean package --batch-mode -DskipTests
test_script:
- mvn test verify --batch-mode
after_test:
- "SET PATH=C:\\Python34;C:\\Python34\\Scripts;%PATH%"
- pip install codecov
- codecov -f "net.lecousin.core/target/site/jacoco/jacoco.xml"
cache:
- C:\maven\
- C:\Users\appveyor\.m2