Ticket #16656: v1-0002-appveyor-don-t-run-javadoc-but-do-run-tests-in-ha.patch

File v1-0002-appveyor-don-t-run-javadoc-but-do-run-tests-in-ha.patch, 862 bytes (added by ris, 8 years ago)
  • appveyor.yml

    From ba0b897e64e5907cdf250cce7ff42f8136ad8939 Mon Sep 17 00:00:00 2001
    From: Robert Scott <code@humanleg.org.uk>
    Date: Sun, 12 Aug 2018 18:11:47 +0100
    Subject: [PATCH v1 2/5] appveyor: don't run javadoc but do run tests in
     -hardfail mode
    
    ---
     appveyor.yml | 7 ++-----
     1 file changed, 2 insertions(+), 5 deletions(-)
    
    diff --git a/appveyor.yml b/appveyor.yml
    index e79fdcf5b..3c240f108 100644
    a b  
    11version: '{build}'
    2 branches:
    3   only:
    4     - mirror
    52image: Visual Studio 2017
    63install:
    74  - cinst ant
    85  - refreshenv
    96build_script:
    10   - ant compile javadoc dist distmac checkstyle pmd spotbugs
     7  - ant compile dist distmac checkstyle pmd spotbugs
    118test_script:
    12   - ant test
     9  - ant test-unit-hardfail
    1310after_test:
    1411  - ps: |
    1512        $wc = New-Object 'System.Net.WebClient'