-
Notifications
You must be signed in to change notification settings - Fork 98
/
.appveyor.yml
35 lines (28 loc) · 881 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
26
27
28
29
30
31
32
33
34
35
version: 0.1.{build}
image: Visual Studio 2015
environment:
matrix:
- CONDA_INSTALL_LOCN: C:\Miniconda36-x64
TARGET_ARCH: x64
ARCH: 64
GENERATOR: Visual Studio 14 2015 Win64
platform:
- x64
install:
- cmd: rmdir C:\cygwin /s /q
- cmd: call %CONDA_INSTALL_LOCN%\Scripts\activate.bat
- cmd: conda.exe update --yes --quiet conda
- cmd: set PYTHONUNBUFFERED=1
- cmd: call %CONDA_INSTALL_LOCN%\Scripts\activate.bat
- cmd: conda.exe install conda-build --yes
- cmd: conda.exe config --set show_channel_urls true
- cmd: conda.exe config --remove channels defaults
- cmd: conda.exe config --add channels defaults
- cmd: conda.exe config --add channels conda-forge
build: off
test_script:
- cmd: conda.exe build .ci\conda
- cmd: mkdir dist
- cmd: copy %CONDA_INSTALL_LOCN%\conda-bld\win-%ARCH%\*.bz2 dist
artifacts:
- path: dist\*