forked from ishiland/python-geosupport
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
68 lines (51 loc) · 1.53 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
version: '1.0.{build}'
environment:
# GEO_VERSION: '18b'
matrix:
# Windows w/64 bit python 3.5
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
PYTHON: "C:\\Python35-x64"
PYTHON_ARCH: "64"
GEO_VERSION: '18b'
# Windows w/64 bit python 2.7
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2013
PYTHON: "C:\\Python27-x64"
PYTHON_ARCH: "64"
GEO_VERSION: '18b'
# Windows w/32 bit Geo & python 3.5
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2013
PYTHON: "C:\\Python35"
PYTHON_ARCH: "32"
GEO_VERSION: '18b'
# Windows w/32 bit Geo & python 2.7
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2013
PYTHON: "C:\\Python27"
PYTHON_ARCH: "32"
GEO_VERSION: '18b'
# Ubuntu - python 3
- APPVEYOR_BUILD_WORKER_IMAGE: Ubuntu
PYTHON: "3.6"
GEO_VERSION: '18b'
# Ubuntu - python 2.7
- APPVEYOR_BUILD_WORKER_IMAGE: Ubuntu
PYTHON: "2.7"
GEO_VERSION: '18b'
# Ubuntu - python 3 w/Geosupport 18c
- APPVEYOR_BUILD_WORKER_IMAGE: Ubuntu
PYTHON: "3.6"
GEO_VERSION: '18c'
# Ubuntu - python 3 w/Geosupport 18d
- APPVEYOR_BUILD_WORKER_IMAGE: Ubuntu
PYTHON: "3.6"
GEO_VERSION: '18d'
init:
- cmd: set PATH=%PYTHON%;%PYTHON%\Scripts;%PATH%
- cmd: "%PYTHON%/python -V"
- cmd: "%PYTHON%/python -c \"import struct;print(8 * struct.calcsize(\'P\'))\""
stack: python %PYTHON%
build_script:
- ps: .\appveyor\build.ps1
test_script:
- python setup.py test
# - pip install -e .[dev]
# - invoke test all