From d9599f816fab5cd777a8f5ab8bfafc98a5736316 Mon Sep 17 00:00:00 2001 From: tqchen Date: Wed, 29 Jul 2015 21:01:53 -0700 Subject: [PATCH] add appvegor --- appvegor.yml | 22 ++++++++++++++++++++++ scripts/travis_osx_install.sh | 2 +- 2 files changed, 23 insertions(+), 1 deletion(-) create mode 100644 appvegor.yml diff --git a/appvegor.yml b/appvegor.yml new file mode 100644 index 000000000..7adff2a2d --- /dev/null +++ b/appvegor.yml @@ -0,0 +1,22 @@ +platform: + - x64 + - x86 + +configuration: + - Release + +clone_folder: c:\dmlc\xgboost + + +install: + - cmd: git clone https://github.com/ogrisel/python-appveyor-demo + - ps: if (-not(Test-Path($env:PYTHON))) { & python-appvegor-demo\appveyor\install.ps1 } + - "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%" + - "python --version" + - "python -c \"import struct; print(struct.calcsize('P') * 8)\"" + - "pip instal nose numpy scipy" + +build: + parallel: true + project: windows\xgboost.sln + diff --git a/scripts/travis_osx_install.sh b/scripts/travis_osx_install.sh index 95e5838a8..8121afd6b 100755 --- a/scripts/travis_osx_install.sh +++ b/scripts/travis_osx_install.sh @@ -9,5 +9,5 @@ brew update if [ ${TASK} == "python-package" ]; then brew install python git easy_install pip - pip install numpy scipy + pip install numpy scipy nose fi