forked from ScriptSmith/reaper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
43 lines (36 loc) · 1.28 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
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:\\Python35"
PYTHON_VERSION: "3.5.x" # currently 3.5.3
PYTHON_ARCH: "32"
- PYTHON: "C:\\Python35-x64"
PYTHON_VERSION: "3.5.x" # currently 3.5.3
PYTHON_ARCH: "64"
install:
- "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
- "python --version"
- cmd: "pip install --upgrade pip"
- cmd: "pip install -r requirements.txt"
- cmd: "pip install git+git://github.com/pyinstaller/pyinstaller.git"
build_script:
- cmd: "pyinstaller reaper.py --windowed --icon=ui/icon.ico --add-data ui\\icon.png;ui"
- cmd: "7z a reaper.zip dist\\reaper\\"
# test_script:
# # Run the project tests
# - "%CMD_IN_ENV% python setup.py nosetests"
#
# after_test:
# # If tests are successful, create binary packages for the project.
# - "%CMD_IN_ENV% python setup.py bdist_wheel"
# - "%CMD_IN_ENV% python setup.py bdist_wininst"
# - "%CMD_IN_ENV% python setup.py bdist_msi"
# - ps: "ls dist"
artifacts:
# Archive the generated packages in the ci.appveyor.com build report.
- path: "reaper.zip"
#on_success:
# - TODO: upload the content of dist/*.whl to a public wheelhouse
#