Changeset 13240 in josm for trunk/appveyor.yml


Ignore:
Timestamp:
2017-12-24T19:08:16+01:00 (7 years ago)
Author:
Don-vip
Message:

see #15630 - CI tweaks

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/appveyor.yml

    r13239 r13240  
    88  - refreshenv
    99build_script:
    10   - ant compile javadoc dist distmac checkstyle pmd
     10  - ant compile javadoc dist distmac checkstyle pmd spotbugs
    1111test_script:
    1212  - 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        }
    1320artifacts:
    1421  - path: dist\josm-custom.*
     
    2027  - path: test\report
    2128    type: zip
     29  - path: hs_err_pid*.log
Note: See TracChangeset for help on using the changeset viewer.