From c74cd96fe9967ce9c7dcc160b4c96ea294fcc949 Mon Sep 17 00:00:00 2001 From: Jussi Pakkanen Date: Mon, 13 Jun 2016 21:58:59 +0300 Subject: [PATCH] Copy ninja.exe to Python dir so it hopefully appears in path. --- .appveyor.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.appveyor.yml b/.appveyor.yml index 81b9b6c1b..8c61d04e8 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -1,16 +1,26 @@ version: 1.0.{build} + os: Visual Studio 2015 + platform: - x86 + branches: only: - master + install: - ps: (new-object net.webclient).DownloadFile('https://www.python.org/ftp/python/3.4.4/python-3.4.4.msi', 'python-3.4.4.msi') - ps: msiexec /i python-3.4.4.msi /quiet /qn /norestart - cmd: copy c:\python34\python.exe c:\python34\python3.exe - ps: (new-object net.webclient).DownloadFile('https://dl.dropboxusercontent.com/u/37517477/ninja.exe', 'ninja.exe') + - cmd: copy ninja.exe c:\python34 + build_script: - cmd: echo No build step. + test_script: - cmd: c:\python34\python3 run_tests.py --backend=ninja + +artifacts: + - path: meson-test-run.txt