source: josm/trunk/appveyor.yml@ 13867

Last change on this file since 13867 was 13299, checked in by Don-vip, 6 years ago

see #15742 - AppVeyor: do not upload javadoc artifact, too big

File size: 704 bytes
RevLine 
[13234]1version: '{build}'
[13236]2branches:
3 only:
4 - mirror
[13235]5image: Visual Studio 2017
[13234]6install:
7 - cinst ant
[13235]8 - refreshenv
[13234]9build_script:
[13240]10 - ant compile javadoc dist distmac checkstyle pmd spotbugs
[13234]11test_script:
12 - ant test
[13240]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 }
[13237]20artifacts:
21 - path: dist\josm-custom.*
[13239]22 - path: checkstyle-josm.xml
23 - path: pmd-josm.xml
24 - path: spotbugs-josm.xml
[13237]25 - path: test\report
26 type: zip
[13240]27 - path: hs_err_pid*.log
Note: See TracBrowser for help on using the repository browser.