forked from safrizal/cdp4j
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappveyor.yml
37 lines (30 loc) · 1.11 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
version: '{build}'
environment:
matrix:
- JAVA_HOME: C:\Program Files\Java\jdk9
# Do not build on tags
skip_tags: true
# Fix line endings in Windows. (runs before repo cloning)
init:
- git config --global core.autocrlf input
# Install scripts--runs after repo cloning
install:
- ps: |
Add-Type -AssemblyName System.IO.Compression.FileSystem
choco install -y --no-progress googlechrome
if (!(Test-Path -Path "C:\maven")) {
(new-object System.Net.WebClient).DownloadFile(
'http://www.us.apache.org/dist/maven/maven-3/3.5.2/binaries/apache-maven-3.5.2-bin.zip',
'C:\maven-bin.zip'
)
[System.IO.Compression.ZipFile]::ExtractToDirectory("C:\maven-bin.zip", "C:\maven")
}
$env:Path +=";C:\maven\apache-maven-3.5.2\bin;%JAVA_HOME%\bin"
cache:
- C:\maven
- C:\Users\appveyor\.m2
build_script:
- mvn -q clean package -DskipTests=true -Dmaven.javadoc.skip=true -B -V
test_script:
- wmic datafile where name="C:\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe" get Version /value
- mvn -Dmaven.javadoc.skip=true -B -V -q package