Skip to content

Commit

Permalink
Add AppVeyor CI
Browse files Browse the repository at this point in the history
  • Loading branch information
pfernique committed Mar 8, 2019
1 parent 0d41418 commit ead0ae3
Show file tree
Hide file tree
Showing 3 changed files with 50 additions and 1 deletion.
46 changes: 46 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
image: Visual Studio 2017

platform:
- x64

environment:
matrix:
- CONDA_RECIPE: etc/conda/python-statiskit_core

install:
- git clone https://github.com/StatisKit/appveyor-ci.git
- cd appveyor-ci
- call before_install.bat
- call install.bat

before_build:
- call before_build.bat

build_script:
- call build_script.bat

after_build:
- call after_build.bat

deploy:
provider: Script
on:
branch: master

before_deploy:
- call before_deploy.bat

deploy_script:
- call deploy_script.bat

after_deploy:
- call after_deploy.bat

on_success:
- call on_success.bat

on_failure:
- call on_failure.bat

on_finish:
- call on_finish.bat
1 change: 1 addition & 0 deletions src/py/wrapper/win_patch.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
find . -type f -name '*.cpp' -exec sed -i 's/unsigned long int/statiskit::Index/g' {} \;
4 changes: 3 additions & 1 deletion travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,9 @@ matrix:
env: CONDA_RECIPE=etc/conda/autowig-libstatiskit_core
- os: windows
env: CONDA_RECIPE=etc/conda/autowig-libstatiskit_core

- os: windows
env: CONDA_RECIPE=etc/conda/python-statiskit_core

before_install:
- git clone https://github.com/StatisKit/travis-ci.git --depth=1
- cd travis-ci
Expand Down

0 comments on commit ead0ae3

Please sign in to comment.