blob: e78eb58e05057c31b50108391fe8dd494fc9b863 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
environment:
matrix:
- PYTHON: "C:\\Python27"
install:
- "%PYTHON%\\python.exe -m pip install -r requirements.txt"
- "%PYTHON%\\python.exe -m pip install py2exe_py2"
- ps: if (-not (Test-Path pygtk-all-in-one-2.24.2.win32-py2.7.msi)) { Start-FileDownload "https://ftp.gnome.org/pub/GNOME/binaries/win32/pygtk/2.24/pygtk-all-in-one-2.24.2.win32-py2.7.msi" }
- ps: Get-FileHash pygtk-all-in-one-2.24.2.win32-py2.7.msi -Algorithm MD5 # 4bddf847f81d8de2d73048b113da3dd5
- 'msiexec /i pygtk-all-in-one-2.24.2.win32-py2.7.msi /qn /norestart /log pygtk-install.log TARGETDIR=C:\Python27 ALLUSERS=1'
cache:
- pygtk-all-in-one-2.24.2.win32-py2.7.msi
build: off
after_test:
- "%PYTHON%\\python.exe setup.py py2exe"
- "7z a pyParrotZik-%APPVEYOR_BUILD_VERSION%.zip .\\dist\\*"
artifacts:
- path: pyParrotZik-%APPVEYOR_BUILD_VERSION%.zip
|