forked from EBIvariation/vcf-validator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
31 lines (24 loc) · 862 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
os:
- Visual Studio 2017
init:
- cmd: call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Auxiliary\Build\vcvars32.bat"
- cmd: set INCLUDE=C:\Libraries\boost_1_67_0;%INCLUDE%
- cmd: set LIB=C:\Libraries\boost_1_67_0\lib32-msvc-14.1;%LIB%
- cmd: set PATH=C:\projects\vcf-validator\lib\windows_specific;%PATH%
install:
- cmd: install_dependencies.bat
build_script:
- cmd: cmake -DCMAKE_BUILD_TYPE=Release -G "NMake Makefiles" .
- cmd: nmake
test_script:
- cmd: bin\test_validator_v41.exe
- cmd: bin\test_validator_v42.exe
- cmd: bin\test_validator_v43.exe
- cmd: bin\test_validation_suite.exe
artifacts:
- path: bin\vcf_validator.exe
name: vcf_validator_win.exe
- path: bin\vcf_debugulator.exe
name: vcf_debugulator_win.exe
- path: bin\vcf_assembly_checker.exe
name: vcf_assembly_checker_win.exe