From aa86cbb51f7ff893bd15bad6b0b3e6caa169a5f0 Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Wed, 1 Apr 2015 13:18:36 +0300 Subject: [PATCH] Initial support for AppVeyor CI and Py27 test --- appveyor.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 appveyor.yml diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 00000000..351fe371 --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,24 @@ +version: '{build}' +build: off +environment: + global: + # https://packaging.python.org/en/latest/appveyor.html + WITH_COMPILER: "cmd /E:ON /V:ON /C .\\ci\\appveyor-with-compiler.cmd" + matrix: + - TOXENV: "py27" + TOXPYTHON: "C:\\Python27-x64\\python.exe" + WINDOWS_SDK_VERSION: "v7.0" + PYTHON_HOME: "C:\\Python27-x64" + PYTHON_VERSION: "2.7" + PYTHON_ARCH: "64" +init: + - "ECHO %TOXENV%" + - ps: "ls C:\\Python*" +install: + # https://packaging.python.org/en/latest/appveyor.html + - "powershell ci\\appveyor-bootstrap.ps1" +test_script: + - "%PYTHON_HOME%\\Scripts\\tox --version" + - "%PYTHON_HOME%\\Scripts\\pip --version" + - "scons --version" + - "%WITH_COMPILER% %PYTHON_HOME%\\Scripts\\tox"