forked from javadev/underscore-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappveyor.yml
More file actions
26 lines (26 loc) · 973 Bytes
/
appveyor.yml
File metadata and controls
26 lines (26 loc) · 973 Bytes
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}'
skip_tags: true
clone_depth: 30
environment:
JAVA_HOME: C:\Program Files\Java\jdk1.8.0
install:
- ps: |
Add-Type -AssemblyName System.IO.Compression.FileSystem
if (!(Test-Path -Path "C:\maven\apache-maven-3.5.4" )) {
(new-object System.Net.WebClient).DownloadFile(
'http://www.us.apache.org/dist/maven/maven-3/3.5.4/binaries/apache-maven-3.5.4-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.5.4\bin;%JAVA_HOME%\bin;%PATH%
- cmd: SET MAVEN_OPTS=-Dhttps.protocols=TLSv1.2
build_script:
- mvn clean install -B -DskipTests
test_script:
- mvn clean install jacoco:report -B
- mvn -f math-plugin/pom.xml clean package jacoco:report
- mvn -f string-plugin/pom.xml clean package jacoco:report
- mvn -f examples/pom.xml clean package
cache:
- C:\maven\apache-maven-3.5.4