forked from frerich/clcache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappveyor.yml
34 lines (26 loc) · 854 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
environment:
matrix:
# AppVeyor installed Python versions
# http://www.appveyor.com/docs/installed-software#python
- PYTHON_INSTALL: "C:\\Python27"
- PYTHON_INSTALL: "C:\\Python33"
- PYTHON_INSTALL: "C:\\Python34"
- PYTHON_INSTALL: "C:\\Python35"
install:
# Make compiler available (use MSVC 2013, 32 bit)
- call "%ProgramFiles(x86)%\Microsoft Visual Studio 12.0\VC\vcvarsall.bat" x86
# Check compiler version
- cl
# Prepend Python installation to PATH
- "SET PATH=%PYTHON_INSTALL%;%PATH%"
# Check Python version
- "python --version"
build_script:
- "python clcache.py --help"
- "python clcache.py -s"
test_script:
- "python tests.py"
after_test:
# Get a rough overview about what happened in the tests.
# This is not part of the actual testing but pure convenience.
- "python clcache.py -s"