-
Notifications
You must be signed in to change notification settings - Fork 1
/
appveyor.yml
25 lines (20 loc) · 871 Bytes
/
appveyor.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
environment:
GIT_REPOSITORY: https://github.com/wheeler-microfluidics/dropbot-dx-accessories-plugin.git
matrix:
- PYTHON_VERSION: 2.7
MINICONDA: C:\Miniconda
PYTHON_ARCH: "32"
version: '2.2.26_appveyor-{build}'
init:
- "ECHO %PYTHON_VERSION% %MINICONDA%"
install:
# Exit if no .conda-recipe folder
- ps: if(!(Test-Path ".conda-recipe")){Add-AppveyorMessage -Message "No Conda Recipe Found" -Category "Error"; throw "Missing .conda-recipe folder"}
- git clone --depth=1 https://github.com/sci-bots/sci-bots-configs.git
- powershell -executionpolicy remotesigned -File .\sci-bots-configs\appveyor-install.ps1
# Handle build and tests using conda (defined in .conda-recipe/meta.yaml)
build: false
test_script:
- echo Build Complete
after_test:
- powershell -executionpolicy remotesigned -File .\sci-bots-configs\appveyor-after-test.ps1