forked from holgern/pyedflib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
44 lines (36 loc) · 1.45 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
# AppVeyor.com is a Continuous Integration service to build and run tests under
# Windows
# https://ci.appveyor.com/project/holgern/pyedflib
# This file is built on the template here:
# http://python-packaging-user-guide.readthedocs.org/en/latest/appveyor/
environment:
matrix:
- PYTHON: "C:\\Python27"
- PYTHON: "C:\\Python27-x64"
- PYTHON: "C:\\Python34"
- PYTHON: "C:\\Python34-x64"
DISTUTILS_USE_SDK: "1"
- PYTHON: "C:\\Python35"
- PYTHON: "C:\\Python35-x64"
- PYTHON: "C:\\Python36"
- PYTHON: "C:\\Python36-x64"
build: off
install:
- "util\\appveyor\\build.cmd %PYTHON%\\python.exe -m pip install --upgrade pip"
- "util\\appveyor\\build.cmd %PYTHON%\\python.exe -m pip install --upgrade wheel"
- "util\\appveyor\\build.cmd %PYTHON%\\python.exe -m pip install
numpy --cache-dir c:\\tmp\\pip-cache"
- "util\\appveyor\\build.cmd %PYTHON%\\python.exe -m pip install
Cython nose coverage matplotlib --cache-dir c:\\tmp\\pip-cache"
test_script:
- "util\\appveyor\\build.cmd %PYTHON%\\python.exe setup.py build --build-lib build\\lib\\"
- "%PYTHON%\\Scripts\\nosetests build\\lib --tests pyedflib\\tests"
after_test:
- "util\\appveyor\\build.cmd %PYTHON%\\python.exe setup.py bdist_wheel"
artifacts:
# Archive the generated wheel package in the ci.appveyor.com build report.
- path: dist\*
cache:
# Cache can be manuall cleared like this:
# https://github.com/appveyor/ci/issues/207
- "c:\\tmp\\pip-cache"