forked from OpenLiberty/ci.maven
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
41 lines (37 loc) · 1.14 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
38
39
40
41
environment:
matrix:
- jdk: "C:\\Program Files\\Java\\jdk1.8.0\\bin:"
RUNTIME_VERSION: 19.0.0.6
RUNTIME: ol
- jdk: "C:\\Program Files\\Java\\jdk1.8.0\\bin:"
RUNTIME_VERSION: 19.0.0.9
RUNTIME: ol
- jdk: "C:\\Program Files\\Java\\jdk1.8.0\\bin:"
RUNTIME_VERSION: 19.0.0.6
RUNTIME: wlp
- jdk: "C:\\Program Files\\Java\\jdk1.8.0\\bin:"
RUNTIME_VERSION: 19.0.0.9
RUNTIME: wlp
install:
- cmd: |
choco install maven
refreshenv
where mvn
cd C:\projects\ci-maven
- ps: .\appveyor.ps1
before_build:
- cmd: |
echo "Installing ci.ant lib..."
git clone https://github.com/OpenLiberty/ci.ant.git ci.ant
cd ci.ant
mvn clean install
cd..
echo "Installing ci.common lib..."
git clone https://github.com/OpenLiberty/ci.common.git ci.common
cd ci.common
mvn clean install
cd..
build_script:
- "echo %WLP_VERSION%"
- "mvn verify -Ponline-its -Dinvoker.streamLogs=true -Druntime=%RUNTIME% -DruntimeVersion=%RUNTIME_VERSION%"
test: off