forked from VUnit/vunit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.appveyor.yml
51 lines (40 loc) · 1.35 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
# For Windows based CI
environment:
matrix:
# For Python versions available on Appveyor, see
# http://www.appveyor.com/docs/installed-software#python
- BUILD_NAME: py27-unit
PYTHON: "C:\\Python27"
- BUILD_NAME: py34-unit
PYTHON: "C:\\Python34"
- BUILD_NAME: py35-unit
PYTHON: "C:\\Python35"
- BUILD_NAME: py36-unit
PYTHON: "C:\\Python36"
- BUILD_NAME: py37-unit
PYTHON: "C:\\Python37"
- BUILD_NAME: py37-lint
PYTHON: "C:\\Python37"
- BUILD_NAME: py27-docs
PYTHON: "C:\\Python27"
- BUILD_NAME: py37-docs
PYTHON: "C:\\Python37"
- BUILD_NAME: py27-acceptance-ghdl
PYTHON: "C:\\Python27"
- BUILD_NAME: py37-acceptance-ghdl
PYTHON: "C:\\Python37"
- BUILD_NAME: py37-vcomponents-ghdl
PYTHON: "C:\\Python37"
install:
- "git submodule update --init --recursive"
- "%PYTHON%\\python.exe -m pip install -U pip"
- "%PYTHON%\\python.exe -m pip install -U virtualenv"
- "%PYTHON%\\python.exe -m pip install tox"
- "curl -fsSL -o ghdl.zip https://github.com/ghdl/ghdl/releases/download/v0.36/ghdl-0.36-mingw32-mcode.zip"
- "7z x ghdl.zip -o../ghdl -y"
- "mv ../ghdl/GHDL/0.36-mingw32-mcode/ ../ghdl-v0.36"
- "rm -rf ../ghdl ghdl.zip"
- "set PATH=%PATH%;../ghdl-v0.36/bin"
build: off
test_script:
- "%PYTHON%\\python.exe -m tox -e %BUILD_NAME%"