forked from VUnit/vunit
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.appveyor.yml
39 lines (28 loc) · 1.01 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
# For Windows based CI
environment:
matrix:
# For Python versions available on Appveyor, see
# https://www.appveyor.com/docs/windows-images-software/#python
- BUILD_NAME: py38-unit
PYTHON: "C:\\Python38"
- BUILD_NAME: py38-lint
PYTHON: "C:\\Python38"
- BUILD_NAME: py38-docs
PYTHON: "C:\\Python38"
- BUILD_NAME: py38-acceptance-ghdl
PYTHON: "C:\\Python38"
- BUILD_NAME: py38-vcomponents-ghdl
PYTHON: "C:\\Python38"
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%"