mirror of
https://github.com/progsource/maddy.git
synced 2026-03-24 23:40:39 +01:00
cmake configuration for running tests is now in the tests folder. Add option in main cmake file that has to be set to ON and only build the tests in that case. Update appveyor and travis ci configurations accordingly.
16 lines
327 B
YAML
16 lines
327 B
YAML
image: Visual Studio 2017
|
|
|
|
install:
|
|
- cmd: git submodule update --init --recursive
|
|
|
|
before_build:
|
|
- cmd: mkdir tmp
|
|
- cmd: cd tmp
|
|
- cmd: cmake -G "Visual Studio 15 Win64" -DMADDY_ENABLED_TESTS=ON ..
|
|
|
|
build:
|
|
project: $(APPVEYOR_BUILD_FOLDER)\tmp\$(APPVEYOR_PROJECT_NAME).sln
|
|
|
|
test_script:
|
|
- cmd: ctest -VV -C "Debug"
|