-
Notifications
You must be signed in to change notification settings - Fork 41
/
appveyor.yml
45 lines (36 loc) · 932 Bytes
/
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
branches:
only:
- dev
- master
environment:
global:
MINICONDA: "C:\\Miniconda35-x64"
matrix:
- PYTHON: "C:\\Python35-x64"
init:
- "SET PATH=%MINICONDA%;%MINICONDA%\\Scripts;%PATH%"
install:
- conda install --yes numpy scipy pandas scikit-learn pip
- pip install --requirement requirements.txt
- pip install kivy.deps.sdl2 kivy.deps.angle
- pip install PyInstaller
build: false
before_test:
# Conda mypy is too old
- "%PYTHON%\\Scripts\\pip install mypy"
- "%PYTHON%\\Scripts\\mypy --package persimmon"
after_test:
- PyInstaller persimmon.spec
#- 7z a persimmon.7z dist\persimmon_debug
artifacts:
- path: dist/persimmon.exe
deploy:
provider: GitHub
artifact: dist/persimmon.exe
draft: true
prerelease: true
description: Windows Executable
auth_token: "%GITHUB_AUTH%"
on:
branch:
- master