-
Notifications
You must be signed in to change notification settings - Fork 2
/
.appveyor.yml
55 lines (53 loc) · 2.29 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
version: 0.0.{build}
image: Visual Studio 2015
only_commits:
message: /build/ # Start a new build if message contains 'build'
platform:
- x86
- x64
environment:
global:
DISTUTILS_USE_SDK: 1
MSSdk: 1
version_ : 0.0.16
matrix:
# - PYTHON: 27
- PYTHON: 36
init_command: python setup.py sdist && pip install --verbose dist\pydggrid-%version_%.tar.gz
deploy_command: pip install wheel && pip install twine && python setup.py sdist bdist_wheel && del .\dist\pydggrid-%version_%.tar.gz & python -m twine upload dist/* -u %pipy_username% -p %pipy_password%
- PYTHON: 37
init_command: python setup.py sdist && pip install --verbose dist\pydggrid-%version_%.tar.gz
deploy_command: pip install wheel && pip install twine && python setup.py sdist bdist_wheel && (if %PLATFORM%==x86 del .\dist\pydggrid-%version_%.tar.gz) & python -m twine upload dist/* -u %pipy_username% -p %pipy_password%
- PYTHON: 35
init_command: python setup.py sdist && pip install --verbose dist\pydggrid-%version_%.tar.gz
deploy_command: pip install wheel && pip install twine && python setup.py sdist bdist_wheel && del .\dist\pydggrid-%version_%.tar.gz & python -m twine upload dist/* -u %pipy_username% -p %pipy_password%
- CONDA: 36
init_command: conda build conda.recipe && conda install --use-local pydggrid
deploy_command:
install:
- cmd: |
cd "C:\Tools\vcpkg"
git pull
.\bootstrap-vcpkg.bat
.\vcpkg install gdal:%PLATFORM%-windows shapelib:%PLATFORM%-windows
cd %appveyor_build_folder%
"%VS140COMNTOOLS%\..\..\VC\vcvarsall.bat" %PLATFORM%
- ps: |
if ($env:PYTHON) {
if ($env:PLATFORM -eq "x64") { $env:PYTHON = "$env:PYTHON-x64" }
$env:PATH = "C:\Python$env:PYTHON\;C:\Python$env:PYTHON\Scripts\;$env:PATH"
} elseif ($env:CONDA) {
if ($env:CONDA -eq "27") { $env:CONDA = "" }
if ($env:PLATFORM -eq "x64") { $env:CONDA = "$env:CONDA-x64" }
$env:PATH = "C:\Miniconda$env:CONDA\;C:\Miniconda$env:CONDA\Scripts\;$env:PATH"
conda config --set always_yes yes --set changeps1 no
conda config --add channels conda-forge
conda update -q conda
conda install -q conda-build
}
build_script:
- cmd: '%init_command%'
test_script:
- cmd: python -m unittest discover
deploy_script:
- cmd: '%deploy_command%'