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
|
|
| 1 | 1 | version: '{build}' |
| 2 | | branches: |
| 3 | | only: |
| 4 | | - mirror |
| 5 | 2 | image: Visual Studio 2017 |
| 6 | 3 | install: |
| 7 | 4 | - cinst ant |
| 8 | 5 | - refreshenv |
| 9 | 6 | build_script: |
| 10 | | - ant compile javadoc dist distmac checkstyle pmd spotbugs |
| | 7 | - ant compile dist distmac checkstyle pmd spotbugs |
| 11 | 8 | test_script: |
| 12 | | - ant test |
| | 9 | - ant test-unit-hardfail |
| 13 | 10 | after_test: |
| 14 | 11 | - ps: | |
| 15 | 12 | $wc = New-Object 'System.Net.WebClient' |