From a2906702ca05e3d37c6282c91c58a1abeef5bbd9 Mon Sep 17 00:00:00 2001 From: bel Date: Fri, 31 Jul 2015 18:49:18 +0200 Subject: [PATCH] Add NO_FILES build to the CI test environment --- .travis.yml | 2 ++ appveyor.yml | 12 ++++++++++++ 2 files changed, 14 insertions(+) diff --git a/.travis.yml b/.travis.yml index fdbb0e40..10ffb2ad 100644 --- a/.travis.yml +++ b/.travis.yml @@ -25,6 +25,8 @@ env: matrix: - BUILD_SHARED=NO - BUILD_SHARED=YES + - CIVETWEB_SERVE_NO_FILES=NO + - CIVETWEB_SERVE_NO_FILES=YES addons: apt: diff --git a/appveyor.yml b/appveyor.yml index 015e32ae..bba04fde 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -20,12 +20,23 @@ environment: matrix: - compiler: gcc-5.1.0-posix build_shared: NO + no_files: NO - compiler: gcc-5.1.0-posix build_shared: YES + no_files: NO - compiler: msvc-18-seh build_shared: NO + no_files: NO - compiler: msvc-18-seh build_shared: YES + no_files: NO + - compiler: gcc-5.1.0-posix + build_shared: YES + no_files: YES + - compiler: msvc-18-seh + build_shared: YES + no_files: YES + install: # Derive some extra information @@ -91,6 +102,7 @@ before_build: -G "%generator%" -DCMAKE_BUILD_TYPE=%build_type% -DBUILD_SHARED_LIBS=%build_shared% + -DCIVETWEB_SERVE_NO_FILES=%no_files% "-DCIVETWEB_THIRD_PARTY_DIR=%third_party_dir:\=\\%" -DCIVETWEB_ENABLE_THIRD_PARTY_OUTPUT=YES -DCIVETWEB_ENABLE_SSL=%enable_ssl%