|
Last change
on this file since 14174 was 14168, checked in by Don-vip, 7 years ago |
|
fix #16656 - appveyor: tweak configuration and skip troublesome tests to get suite completing (patch by ris)
|
|
File size:
675 bytes
|
| Line | |
|---|
| 1 | version: '{build}'
|
|---|
| 2 | image: Visual Studio 2017
|
|---|
| 3 | install:
|
|---|
| 4 | - cinst ant
|
|---|
| 5 | - refreshenv
|
|---|
| 6 | build_script:
|
|---|
| 7 | - ant compile dist distmac checkstyle pmd spotbugs
|
|---|
| 8 | test_script:
|
|---|
| 9 | - ant test-unit-hardfail
|
|---|
| 10 | on_finish:
|
|---|
| 11 | - ps: |
|
|---|
| 12 | $wc = New-Object 'System.Net.WebClient'
|
|---|
| 13 | Get-ChildItem . -Name -Recurse 'TEST-*.xml' |
|
|---|
| 14 | Foreach-Object {
|
|---|
| 15 | $wc.UploadFile("https://ci.appveyor.com/api/testresults/junit/$($env:APPVEYOR_JOB_ID)", (Resolve-Path $_))
|
|---|
| 16 | }
|
|---|
| 17 | artifacts:
|
|---|
| 18 | - path: dist\josm-custom.*
|
|---|
| 19 | - path: checkstyle-josm.xml
|
|---|
| 20 | - path: pmd-josm.xml
|
|---|
| 21 | - path: spotbugs-josm.xml
|
|---|
| 22 | - path: test\report
|
|---|
| 23 | type: zip
|
|---|
| 24 | - path: hs_err_pid*.log
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.