-
Notifications
You must be signed in to change notification settings - Fork 1
/
appveyor.yml
54 lines (40 loc) · 1.35 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# This build script is adapted from conda-smithy, see:
# https://github.com/conda-forge/conda-smithy-feedstock
branches:
only:
- master
environment:
CONDA_UPLOAD_TOKEN:
secure: zM+Wg/LGnlAbuI5beKcGwEW3mLsGLzKjMMizpAaKoQopNXNL+/6FL9WVI6LWGd5D
matrix:
- TARGET_ARCH: x64
CONDA_PY: 36
CONDA_INSTALL_LOCN: C:\\Miniconda36-x64
# We always use a 64-bit machine, but can build x86 distributions
# with the TARGET_ARCH variable.
platform:
- x64
install:
# Cywing's git breaks conda-build. (See https://github.com/conda-forge/conda-smithy-feedstock/pull/2.)
- cmd: rmdir C:\cygwin /s /q
# Add path and activate `conda`
- cmd: call %CONDA_INSTALL_LOCN%\Scripts\activate.bat
- cmd: set PYTHONUNBUFFERED=1
# Update conda
- cmd: conda update --yes --quiet conda
# Add our channels
- cmd: conda config --set show_channel_urls true
- cmd: conda config --add channels conda-forge
# Configure the VM.
- cmd: conda.exe install -n root --quiet --yes conda-forge-build-setup
- cmd: run_conda_forge_build_setup
# Skip .NET project specific build phase.
build: off
test_script:
- cmd: "%CMD_IN_ENV% conda build recipe --quiet"
deploy:
- provider: Script
on:
branch: master
deploy_script:
- cmd: anaconda -t %CONDA_UPLOAD_TOKEN% upload -u pywr C:\bld\win-64\*.tar.bz2 --force