source: josm/trunk/appveyor.yml @ 13240

Last change on this file since 13240 was 13240, checked in by Don-vip, 5 years ago

see #15630 - CI tweaks

File size: 738 bytes
Line 
1version: '{build}'
2branches:
3  only:
4    - mirror
5image: Visual Studio 2017
6install:
7  - cinst ant
8  - refreshenv
9build_script:
10  - ant compile javadoc dist distmac checkstyle pmd spotbugs
11test_script:
12  - ant test
13after_test:
14  - ps: |
15        $wc = New-Object 'System.Net.WebClient'
16        Get-ChildItem . -Name -Recurse 'TEST-*.xml'  |
17        Foreach-Object {
18            $wc.UploadFile("https://ci.appveyor.com/api/testresults/junit/$($env:APPVEYOR_JOB_ID)", (Resolve-Path $_))
19        }
20artifacts:
21  - path: dist\josm-custom.*
22  - path: checkstyle-josm.xml
23  - path: pmd-josm.xml
24  - path: spotbugs-josm.xml
25  - path: javadoc
26    type: zip
27  - path: test\report
28    type: zip
29  - path: hs_err_pid*.log
Note: See TracBrowser for help on using the repository browser.