From 13bae8b5e7d68c7039032fad237a96198242ac64 Mon Sep 17 00:00:00 2001 From: William Deegan Date: Tue, 13 Nov 2018 11:09:41 -0800 Subject: Explicitly remove xsltproc.exe from git install. Somehow it's still there after update git install --- .appveyor.yml | 32 +++++--------------------------- 1 file changed, 5 insertions(+), 27 deletions(-) diff --git a/.appveyor.yml b/.appveyor.yml index b7252c9..b22ad7d 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -60,36 +60,14 @@ environment: - PYTHON: "C:\\Python37" BUILD_JOB_NUM: 4 - # - PYTHON: "C:\\Python27-x64" - # BUILD_JOB_NUM: 1 - # - PYTHON: "C:\\Python27-x64" - # BUILD_JOB_NUM: 2 - # - PYTHON: "C:\\Python27-x64" - # BUILD_JOB_NUM: 3 - # - PYTHON: "C:\\Python27-x64" - # BUILD_JOB_NUM: 4 +build: off - # - PYTHON: "C:\\Python35-x64" - # BUILD_JOB_NUM: 1 - # - PYTHON: "C:\\Python35-x64" - # BUILD_JOB_NUM: 2 - # - PYTHON: "C:\\Python35-x64" - # BUILD_JOB_NUM: 3 - # - PYTHON: "C:\\Python35-x64" - # BUILD_JOB_NUM: 4 - - # - PYTHON: "C:\\Python36-x64" - # BUILD_JOB_NUM: 1 - # - PYTHON: "C:\\Python36-x64" - # BUILD_JOB_NUM: 2 - # - PYTHON: "C:\\Python36-x64" - # BUILD_JOB_NUM: 3 - # - PYTHON: "C:\\Python36-x64" - # BUILD_JOB_NUM: 4 +# Remove bogus xsltproc.exe from git install if it's there +before_build: + - ps: Remove-Item "C:\Program Files\Git\usr\bin\xsltproc.EXE" -ErrorAction Ignore -build: off build_script: - - cmd: python runtest.py -l -a > all_tests.txt + - cmd: python runtest.py -l -a > all_tests.txt - ps: >- $TOTAL_BUILD_JOBS = 4; $Lines = (Get-Content all_tests.txt | Measure-Object -line).Lines; -- cgit v0.12