forked from pyinstaller/pyinstaller-hooks-contrib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
97 lines (79 loc) · 3.3 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
clone_depth: 100
branches:
only:
- master
environment:
APPVEYOR_SAVE_CACHE_ON_ERROR: true
matrix:
- PYTHON: C:\Python39-x64
PYTHON_VERSION: "3.9"
PYTHON_ARCH: 64
INSTALL_URL: "https://github.com/pyinstaller/pyinstaller/archive/develop.tar.gz"
USE_DEV: "True"
- PYTHON: C:\Python38-x64
PYTHON_VERSION: "3.8"
PYTHON_ARCH: 64
INSTALL_URL: "https://github.com/pyinstaller/pyinstaller/archive/develop.tar.gz"
USE_DEV: "True"
- PYTHON: C:\Python37-x64
PYTHON_VERSION: "3.7"
PYTHON_ARCH: 64
INSTALL_URL: "https://github.com/pyinstaller/pyinstaller/archive/develop.tar.gz"
USE_DEV: "True"
- PYTHON: C:\Python36-x64
PYTHON_VERSION: "3.6"
PYTHON_ARCH: 64
INSTALL_URL: "https://github.com/pyinstaller/pyinstaller/archive/develop.tar.gz"
USE_DEV: "True"
init:
- ECHO %PYTHON% %PYTHONVERSION%
- ECHO \"%APPVEYOR_SCHEDULED_BUILD%\"
# 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." }
cache:
# Cache downloaded pip packages and built wheels.
- '%LOCALAPPDATA%\pip\Cache\http'
- '%LOCALAPPDATA%\pip\Cache\wheels'
install:
# 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 sys, platform, struct;
print(sys.platform, platform.machine(), struct.calcsize('P')*8)"
# Upgrade to the latest pip.
- python -m pip install -U pip setuptools wheel
# Install hooks-contrib
- pip install -e .
- pip install --prefer-binary -r requirements-test-libraries.txt
# Install PyInstaller
- pip install %INSTALL_URL%
build: none
test_script:
- ps: |
$pyi_version = python -m PyInstaller --version
if (!($pyi_version -Match "3.6")) {
python -m PyInstaller.utils.run_tests -c pytest.ini
}
on_finish:
# Remove old or huge cache files to hopefully not exceed the 1GB cache limit.
#
# If the cache limit is reached, the cache will not be updated (of not even
# created in the first run). So this is a trade of between keeping the cache
# current and having a cache at all.
# NB: This is done only `on_success` since the cache in uploaded only on
# success anyway.
- C:\cygwin\bin\find "%LOCALAPPDATA%\pip" -type f -mtime +360 -delete
- C:\cygwin\bin\find "%LOCALAPPDATA%\pip" -type f -size +10M -delete
- C:\cygwin\bin\find "%LOCALAPPDATA%\pip" -empty -delete
# Show size of cache
- C:\cygwin\bin\du -hs "%LOCALAPPDATA%\pip\Cache"