-
Notifications
You must be signed in to change notification settings - Fork 8
/
.appveyor.yml
78 lines (59 loc) · 2.55 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
environment:
matrix:
- TARGET_ARCH: x64
CONDA_PY: 27
CONDA_INSTALL_LOCN: C:\\Miniconda-x64
- TARGET_ARCH: x64
CONDA_PY: 35
CONDA_INSTALL_LOCN: C:\\Miniconda35-x64
- TARGET_ARCH: x64
CONDA_PY: 36
CONDA_INSTALL_LOCN: C:\\Miniconda36-x64
- TARGET_ARCH: x64
CONDA_PY: 37
CONDA_INSTALL_LOCN: C:\\Miniconda37-x64
# We always use a 64-bit machine, but can build x86 distributions
# with the TARGET_ARCH variable.
platform:
- x64
install:
# If there is a newer build queued for the same PR, cancel this one.
- cmd: |
powershell -Command "(New-Object Net.WebClient).DownloadFile('https://raw.githubusercontent.com/conda-forge/conda-forge-build-setup-feedstock/master/recipe/ff_ci_pr_build.py', 'ff_ci_pr_build.py')"
ff_ci_pr_build -v --ci "appveyor" "%APPVEYOR_ACCOUNT_NAME%/%APPVEYOR_PROJECT_SLUG%" "%APPVEYOR_BUILD_NUMBER%" "%APPVEYOR_PULL_REQUEST_NUMBER%"
del ff_ci_pr_build.py
# Cywing's git breaks conda-build. (See https://github.com/conda-forge/conda-smithy-feedstock/pull/2.)
- cmd: rmdir C:\cygwin /s /q
# Force input and output streams to flush immediately.
# Also use binary mode, which is sometimes needed on Windows.
- cmd: set PYTHONUNBUFFERED=1
# AppVeyor gives us 2 cores to work with.
#
# ref: https://www.appveyor.com/docs/build-environment/#build-vm-configurations
- cmd: set CPU_COUNT=2
# Use a small path for conda-build's working directory.
- cmd: set "CONDA_BLD_PATH=C:\\bld\\"
# Add path, activate `conda` and update conda.
- cmd: call %CONDA_INSTALL_LOCN%\Scripts\activate.bat
- cmd: conda.exe update --yes --quiet conda
# Configure conda.
- cmd: conda.exe config --set show_channel_urls true
- cmd: conda.exe config --set auto_update_conda false
- cmd: conda.exe config --set add_pip_as_python_dependency false
# Add our channels.
- cmd: conda.exe config --remove channels defaults
- cmd: conda.exe config --add channels defaults
- cmd: conda.exe config --add channels conda-forge
# Update and install everything.
- cmd: conda.exe update --all --quiet --yes
- cmd: conda.exe install --quiet --yes jinja2 conda-build
# Patch VS 2008 for 64-bit support.
- cmd: conda.exe install --quiet --yes vs2008_express_vc_python_patch
- cmd: call setup_x64
# Show info about conda install.
- cmd: conda.exe info
- cmd: conda.exe config --get
# Skip .NET project specific build phase.
build: off
test_script:
- cmd: conda.exe build rank_filter.recipe --quiet