forked from fossasia/kniteditor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappveyor.yml
80 lines (71 loc) · 2.84 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
# see https://packaging.python.org/appveyor/#adding-appveyor-support-to-your-project
environment:
PYPI_USERNAME: niccokunzmann3
PYPI_PASSWORD:
secure: Gxrd9WI60wyczr9mHtiQHvJ45Oq0UyQZNrvUtKs2D5w=
# For Python versions available on Appveyor, see
# http://www.appveyor.com/docs/installed-software#python
# The list here is complete (excluding Python 2.6, which
# isn't covered by this document) at the time of writing.
# we only need Python 3.4 for kivy
PYTHON: "C:\\Python34"
install:
- "%PYTHON%\\python.exe -m pip install docutils pygments pypiwin32 kivy.deps.sdl2 kivy.deps.glew"
- "%PYTHON%\\python.exe -m pip install kivy kivy-garden"
- "%PYTHON%\\python.exe -m pip install -r requirements.txt"
- "%PYTHON%\\python.exe -m pip install -r test-requirements.txt"
- "%PYTHON%\\python.exe setup.py install"
# install requirements for tests of knittingpattern
- "%PYTHON%\\python.exe -m pip install untangle==1.1.0"
build_script:
- cmd: cmd /c windows-build\build.bat
test_script:
# Put your test command here.
# If you don't need to build C extensions on 64-bit Python 3.3 or 3.4,
# you can remove "build.cmd" from the front of the command, as it's
# only needed to support those cases.
# Note that you must use the environment variable %PYTHON% to refer to
# the interpreter you're using - Appveyor does not do anything special
# to put the Python evrsion you want to use on PATH.
- windows-build\dist\KnitEditor\KnitEditor.exe /test
- "%PYTHON%\\python.exe -m pytest --pep8 kniteditor"
after_test:
# This step builds your wheels.
# Again, you only need build.cmd if you're building C extensions for
# 64-bit Python 3.3/3.4. And you need to use %PYTHON% to get the correct
# interpreter
- "%PYTHON%\\python.exe -m pip install wheel"
- "%PYTHON%\\python.exe setup.py bdist_wheel sdist bdist_wininst"
artifacts:
# bdist_wheel puts your built wheel in the dist directory
- path: dist/*
name: distribution
- path: windows-build/dist/Installer/KnitEditorInstaller.exe
name: installer
- path: windows-build/dist/KnitEditor
name: standalone
deploy:
- provider: GitHub
# http://www.appveyor.com/docs/deployment/github
tag: $(APPVEYOR_REPO_TAG_NAME)
description: "Release $(APPVEYOR_REPO_TAG_NAME)"
auth_token:
secure: j1EbCI55pgsetM/QyptIM/QDZC3SR1i4Xno6jjJt9MNQRHsBrFiod0dsuS9lpcC7
artifact: installer
force_update: true
draft: false
prerelease: false
on:
appveyor_repo_tag: true # deploy on tag push only
- provider: GitHub
# http://www.appveyor.com/docs/deployment/github
tag: $(APPVEYOR_REPO_TAG_NAME)
description: "Release $(APPVEYOR_REPO_TAG_NAME)"
auth_token:
secure: j1EbCI55pgsetM/QyptIM/QDZC3SR1i4Xno6jjJt9MNQRHsBrFiod0dsuS9lpcC7
artifact: standalone
force_update: true
draft: false
prerelease: false
on:
appveyor_repo_tag: true # deploy on tag push only