-
Notifications
You must be signed in to change notification settings - Fork 26
/
appveyor.yml
76 lines (59 loc) · 2.63 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
clone_depth: 2
image: Visual Studio 2017
platform:
- x86
- x64
environment:
matrix:
# Pre-installed Python versions, which Appveyor may upgrade to
# a later point release.
# See: http://www.appveyor.com/docs/installed-software#python
# - PYTHON: "C:\\Python27"
# PYTHON_VERSION: "2.7.x"
- PYTHON: "C:\\Python34"
PYTHON_VERSION: "3.4.x"
- PYTHON: "C:\\Python35"
PYTHON_VERSION: "3.5.x"
- PYTHON: "C:\\Python36"
PYTHON_VERSION: "3.6.x"
install:
# If there is a newer build queued for the same PR, cancel this one.
# The AppVeyor 'rollout builds' option is supposed to serve the same
# purpose but it is problematic because it tends to cancel builds pushed
# directly to master instead of just PR builds (or the converse).
# credits: JuliaLang developers.
- ps: if ($env:APPVEYOR_PULL_REQUEST_NUMBER -and $env:APPVEYOR_BUILD_NUMBER -ne ((Invoke-RestMethod `
https://ci.appveyor.com/api/projects/$env:APPVEYOR_ACCOUNT_NAME/$env:APPVEYOR_PROJECT_SLUG/history?recordsNumber=50).builds | `
Where-Object pullRequestId -eq $env:APPVEYOR_PULL_REQUEST_NUMBER)[0].buildNumber) { `
throw "There are newer queued builds for this pull request, failing early." }
- ECHO "Filesystem root:"
- ps: "ls \"C:/\""
- "IF NOT %PLATFORM%*==x86* SET PYTHON=%PYTHON%-%PLATFORM%"
# Prepend newly installed Python to the PATH of this build (this cannot be
# done from inside the powershell script as it would require to restart
# the parent CMD process).
- "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
# Check that we have the expected version and architecture for Python
- "python --version"
- "python -c \"import struct; print(struct.calcsize('P') * 8)\""
# Upgrade to the latest version of pip to avoid it displaying warnings
# about it being out of date.
- "python -m pip install -U pip"
- "python -m pip install -U setuptools"
# Prepare test utility
- "python -m pip install click"
build: off
test_script:
# Run the project tests
# Syntax check
# - ps: "if (($env:PYTHON_VERSION -eq '3.6.x') -and ($env:PLATFORM -eq 'x64')) { python ./ci/executor.py test -e mypy -e flake8 }"
- "python ./ci/executor.py test"
after_test:
# If tests are successful, create binary packages for the project.
- "python ./ci/executor.py pack"
# Only deploy when python 3.6.x and arch 32 on tags
- ps: "if (($env:APPVEYOR_REPO_TAG -eq 'true') -and ($env:PYTHON_VERSION -eq '3.6.x') -and ($env:PLATFORM -eq 'x86')) { pip install twine; twine upload dist\\* }"
- ps: "ls dist"
artifacts:
# Archive the generated packages in the ci.appveyor.com build report.
- path: dist\*