forked from PCGen/pcgen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.appveyor.yml
40 lines (30 loc) · 986 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
version: 1.0.{build}
pull_requests:
do_not_increment_build_number: true
nuget:
disable_publish_on_pr: true
install:
#See: https://github.com/appveyor/ci/issues/505
- ps: |
$exePath = "$($env:USERPROFILE)\nsis-3.02.1-setup.exe"
(New-Object Net.WebClient).DownloadFile('http://ufpr.dl.sourceforge.net/project/nsis/NSIS%203/3.02.1/nsis-3.02.1-setup.exe', $exePath)
cmd /c start /wait $exePath /S /D=C:\nsis
build_script:
gradlew.bat build --info --no-daemon
test_script:
gradlew.bat test compileSlowtest datatest pfinttest buildDist buildNsis --info --no-daemon
environment:
matrix:
- JAVA_HOME: C:\Program Files\Java\jdk1.8.0
- JAVA_HOME: C:\Program Files (x86)\Java\jdk1.8.0
artifacts:
- path: '**/release/*.exe'
name: PCGen Installer
- path: '**/build/distributions/*.zip'
name: PCGen Zip Distribution
- path: '**/build/distributions/*.tar'
name: PCGen Tar Distribution
matrix:
fast_finish: true
cache:
- C:\Users\appveyor\.gradle