-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.appveyor.yml
More file actions
31 lines (24 loc) · 749 Bytes
/
.appveyor.yml
File metadata and controls
31 lines (24 loc) · 749 Bytes
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
environment:
matrix:
- PYTHON: "C:\\Python27"
install:
- "%PYTHON%\\python.exe --version"
- "%PYTHON%\\python.exe -m pip install setuptools pyinstaller"
# this makes AppVeyor not try to use msbuild
build: off
test_script:
- ps: "scripts/test_win32_smoketest.ps1 -python_bin python"
before_deploy:
- "%PYTHON%\\python.exe -m PyInstaller --onefile bitshuffle/bitshuffle.py -n bitshuffle.exe"
- "appveyor PushArtifact dist/bitshuffle.exe"
deploy:
# name defaults to $tag
provider: GitHub
auth_token:
secure: gT4SQ4p1SIpNOJp97ly7Qg70iN98OB337xPmIKC4Eg2QWCtDQCdX6ZHwhEKKWO7W
on:
appveyor_repo_tag: true
artifact: bitshuffle.exe
draft: true
prerelease: true
description: 'AppVeyor draft build'