-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathappveyor.yml
More file actions
25 lines (20 loc) · 856 Bytes
/
appveyor.yml
File metadata and controls
25 lines (20 loc) · 856 Bytes
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/base-node-rpc.git
matrix:
- PYTHON_VERSION: 2.7
MINICONDA: C:\Miniconda
PYTHON_ARCH: "32"
version: '0.23.28_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