forked from VLSI-EDA/PoC
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.appveyor.yml
28 lines (25 loc) · 947 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
version: 1.1.0-b{build}
clone_folder: c:\projects\poc
init:
# Checking that DEP is enabled
- ps: Write-Host "Initializing virtual machine ..."
- ps: git --version
- ps: $env:Path = $env:Path.Replace("Python27", "Python35-x64")
install:
- ps: Write-Host "Installing requirements..."
- ps: python --version
- ps: python -m pip install pip --upgrade
- ps: python -m pip install -r .\requirements.txt
- ps: python -m pip list --format=columns
- ps: Write-Host "Configuring PoC..."
- ps: cp .\tools\AppVeyor\config.private.ini .\py\
- ps: cp .\tools\AppVeyor\my_project.vhdl .\tb\common\
- ps: mkdir .\temp\precompiled\vsim\
- ps: cp .\tools\AppVeyor\modelsim.ini .\temp\precompiled\vsim\
- ps: .\poc.ps1 info
build: off
build_script:
- ps: Write-Host "Testing query interface..."
- ps: .\poc.ps1 query INSTALL.PoC:InstallationDirectory
- ps: .\Tools\AppVeyor\PoC.list.ps1
- ps: .\Tools\AppVeyor\PoC.dryrun.ps1