From 95799a3f0259af4dd73ce861503198f8dd4de664 Mon Sep 17 00:00:00 2001 From: jlaura <jlaura@asu.edu> Date: Wed, 31 Jan 2018 12:25:54 -0700 Subject: [PATCH] Win32 Builds via appveyor (#19) * Appveyor build for win32 * Type merging appveyor --- appveyor.yml | 23 +++++++++++++++++++---- 1 file changed, 19 insertions(+), 4 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 54c6730..f095e33 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -4,15 +4,30 @@ branches: version: '0.1.0.{build}' +platform: + - x64 + - x86 + environment: matrix: - PYTHON: "C:\\Miniconda35-x64\\Scripts\\activate.bat" PYTHON_VERSION: 3.5 - PYTHON: "C:\\Miniconda36-x64\\Scripts\\activate.bat" PYTHON_VERSION: 3.6 + - PYTHON: "C:\\Miniconda35\\Scripts\\activate.bat" + PYTHON_VERSION: 3.5 + - PYTHON: "C:\\Miniconda36\\Scripts\\activate.bat" -platform: - - x64 +matrix: + exclude: + - PYTHON: "C:\\Miniconda35-x64\\Scripts\\activate.bat" + platform: x86 + - PYTHON: "C:\\Miniconda36-x64\\Scripts\\activate.bat" + platform: x86 + - PYTHON: "C:\\Miniconda35\\Scripts\\activate.bat" + platform: x64 + - PYTHON: "C:\\Miniconda36\\Scripts\\activate.bat" + platform: x64 configuration: - Release @@ -21,7 +36,7 @@ install: - cmd: call %PYTHON% - cmd: conda config --set always_yes yes --set changeps1 no - cmd: conda update -q conda - - cmd: conda install conda-build anaconda-client + - cmd: conda install conda-build anaconda-client - cmd: conda create -q -n test_env python=%PYTHON_VERSION% - cmd: activate test_env - cmd: conda config --add channels conda-forge @@ -33,7 +48,7 @@ install: build_script: - cmd: python setup.py install - + test_script: - cmd: pytest plio/ -- GitLab