qsmaddy/appveyor.yml

16 lines
302 B
YAML
Raw Permalink Normal View History

2019-02-19 02:02:58 +01:00
image: Visual Studio 2017
install:
2019-02-19 02:09:23 +01:00
- cmd: git submodule update --init --recursive
2019-02-19 02:21:00 +01:00
before_build:
2019-02-19 02:02:58 +01:00
- cmd: mkdir tmp
- cmd: cd tmp
2019-02-19 02:06:19 +01:00
- cmd: cmake -G "Visual Studio 15 Win64" ..
2019-02-19 02:02:58 +01:00
2019-02-19 02:23:21 +01:00
build:
project: $(APPVEYOR_BUILD_FOLDER)\tmp\$(APPVEYOR_PROJECT_NAME).sln
2019-02-19 02:23:21 +01:00
2019-02-19 02:02:58 +01:00
test_script:
2019-02-19 02:43:09 +01:00
- cmd: ctest -VV -C "Debug"