-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
50 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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' {} \; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters