Lines Matching +full:- +full:dcivetweb_enable_ssl
14 - '**/*.md'
25 - id: Default-x86
26 compiler: msvc-19-seh
37 - id: Default-x64
38 compiler: msvc-19-seh
50 - id: Full-x86
51 compiler: msvc-19-seh
62 - id: Full-x64
63 compiler: msvc-19-seh
75 - id: Full-x86-Debug
76 compiler: msvc-19-seh
87 - id: Full-x64-Debug
88 compiler: msvc-19-seh
100 - id: Minimal-x86
101 compiler: msvc-19-seh
112 - id: Minimal-x64
113 compiler: msvc-19-seh
125 - id: Shared-default-x86
126 compiler: msvc-19-seh
137 - id: Shared-default-x64
138 compiler: msvc-19-seh
150 - id: Full-GCC-x64
151 compiler: gcc-5.1.0-posix
163 - id: Full-VS2010-x86
164 compiler: msvc-16-seh
176 - id: Full-VS2012-x86
177 compiler: msvc-17-seh
189 - id: Full-VS2013-x86
190 compiler: msvc-18-seh
202 - id: Full-VS2013-x64
203 compiler: msvc-18-seh
217 - id: Full-VS2017-x86
218 compiler: msvc-20-seh
230 - id: Full-VS2017-x64
231 compiler: msvc-20-seh
244 - id: Ubuntu1604-GCC-x64
245 compiler: gcc-5.1.0-posix
257 - id: Ubuntu1804-GCC-x64
258 compiler: gcc-5.1.0-posix
271 - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
274 - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
277 - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
283 - set build_type=%configuration%
284 - for /f "tokens=1-3 delims=-" %%a in ("%compiler%") do (@set "compiler_name=%%a")
285 - for /f "tokens=1-3 delims=-" %%a in ("%compiler%") do (@set "compiler_version=%%b")
286 - for /f "tokens=1-3 delims=-" %%a in ("%compiler%") do (@set "compiler_threading=%%c")
287 - if "%platform%"=="x64" (set arch=x86_64)
288 - if "%platform%"=="x86" (set arch=i686)
290 - if "%compiler_name%"=="gcc" (@set "mingw_output_folder=C:\mingw-builds")
291 - if "%compiler_name%"=="gcc" (
300 - if "%compiler_name%"=="gcc" (@set "mingw_log_folder=%mingw_output_folder%\logs")
301 …- if exist "%mingw_log_folder%" @for /f %%f in ('dir /b /oD /tc "%mingw_log_folder%"') do @set "mi…
302 …- if exist "%mingw_log_file%" powershell Push-AppveyorArtifact "%mingw_log_file%" -FileName mingw-…
306 # - http://help.appveyor.com/discussions/questions/1132-openssl-installation-issues
307 # - https://github.com/appveyor/ci/issues/576
309 - cmd: set PATH=%PATH%;C:\OpenSSL-Win32;C:\OpenSSL-Win64
310 - dir C:\OpenSSL-Win32
311 - dir C:\OpenSSL-Win64
312 - path
319 …# See http://help.appveyor.com/discussions/problems/3193-cmake-building-for-mingw-issue-with-git-s…
321 # - set PATH=%PATH:C:\Program Files\Git\usr\bin;=%
325 - ren "C:\Program Files\Git\usr\bin\sh.exe" _sh.exe
327 - if "%compiler_name%"=="gcc" (set "generator=MinGW Makefiles")
328 - if "%compiler_name%"=="gcc" (set "build=mingw32-make -j4")
329 - if "%compiler_name%"=="gcc" (set "test=mingw32-make test")
332 - if "%compiler_version%"=="14" (set "vs_version=8" & set "vs_year=2005")
333 - if "%compiler_version%"=="15" (set "vs_version=9" & set "vs_year=2008")
334 - if "%compiler_version%"=="16" (set "vs_version=10" & set "vs_year=2010")
335 - if "%compiler_version%"=="17" (set "vs_version=11" & set "vs_year=2012")
336 - if "%compiler_version%"=="18" (set "vs_version=12" & set "vs_year=2013")
337 - if "%compiler_version%"=="19" (set "vs_version=14" & set "vs_year=2015")
338 - if "%compiler_version%"=="20" (set "vs_version=15" & set "vs_year=2017")
339 - if "%compiler_name%"=="msvc" (set "generator=Visual Studio %vs_version% %vs_year%")
340 - if "%compiler_name%"=="msvc" (
345 - if %compiler_version% gtr 9 (set platform=%platform:x86=Win32%)
346 - if "%compiler_name%"=="msvc" (set "msbuild_opts=/clp:OnlyErrors;OnlyWarnings /nologo /m /v:m")
347 …- if "%compiler_name%"=="msvc" (set "build=msbuild %msbuild_opts% /p:Configuration=%configuration%…
348 - if "%compiler_name%"=="msvc" (set "test=msbuild %msbuild_opts% RUN_TESTS.vcxproj")
350 - if not "%compiler_path%"=="" (set "PATH=%PATH%;%compiler_path%")
352 - if "%generator%"=="MinGW Makefiles" (set "PATH=%PATH:C:\Program Files (x86)\Git\bin=%")
354 - set "source_path=%cd%"
355 - set "output_path=%source_path%\output"
356 - set "build_path=%output_path%\build"
357 - set "install_path=%output_path%\install"
358 - set "third_party_dir=C:\third-party"
360 - ver
361 - cd
362 - dir
363 - ipconfig /all
365 - mkdir "%build_path%"
366 - cd "%build_path%"
367 - cmake --version
368 - appveyor AddMessage -Category Information "Generating '%generator%'"
369 - cmake
370 -G "%generator%"
371 -DCMAKE_BUILD_TYPE=%build_type%
372 -DBUILD_SHARED_LIBS=%build_shared%
373 -DCIVETWEB_SERVE_NO_FILES=%no_files%
374 "-DCIVETWEB_THIRD_PARTY_DIR=%third_party_dir:\=\\%"
375 -DCIVETWEB_ENABLE_THIRD_PARTY_OUTPUT=YES
376 -DCIVETWEB_ENABLE_SSL=%enable_ssl%
377 -DCIVETWEB_DISABLE_CGI=%no_cgi%
378 -DCIVETWEB_ENABLE_SSL_DYNAMIC_LOADING=%enable_ssl_dynamic_loading%
379 -DCIVETWEB_ENABLE_WEBSOCKETS=%enable_websockets%
380 -DCIVETWEB_ENABLE_CXX=%enable_cxx%
381 -DCIVETWEB_ENABLE_LUA=%enable_lua%
382 -DCIVETWEB_ENABLE_LUA_SHARED=%enable_lua_shared%
383 -DCIVETWEB_ENABLE_SERVER_STATS=%enable_stats%
384 -DCIVETWEB_DISABLE_CACHING=%no_caching%
385 -DCIVETWEB_C_STANDARD=%c_standard%
386 -DCIVETWEB_CXX_STANDARD=%cxx_standard%
388 - powershell Push-AppveyorArtifact CMakeCache.txt
389 - cd "%source_path%"
392 - cd
393 - cd "%build_path%"
394 - appveyor AddMessage -Category Information "Build command '%build%'"
395 - cmd /c "%build%"
396 - cd "%source_path%"
399 - cd "%build_path%"
400 - appveyor AddMessage -Category Information "Test command '%build%'"
401 - set CTEST_OUTPUT_ON_FAILURE=1
402 - cmd /c "%test%" & set "test_ret=%ERRORLEVEL%"
403 - echo "Test returned %test_ret%"
404 - dir "%source_path%\output\build\unittest\"
405 - echo "Show all test logs:"
406 - for /r %%i in ("%source_path%\output\build\unittest\test-*.log") do (
410 - for /r %%i in ("%source_path%\output\build\unittest\test-*.xml") do (
414 - cd "%source_path%"
415 - set "output_path=%source_path%\output"
416 - set "build_path=%output_path%\build"
417 - set "install_path=%output_path%\install"
418 - set "third_party_dir=C:\third-party"
419 - exit /B %ERRORLEVEL%
420 - echo "Test script DONE"
423 - echo "Current directory:"
424 - cd
425 - dir
426 - md dist
427 …- if "%build_type%"=="Release" (cmake "-DCMAKE_INSTALL_PREFIX=%install_path%" -P "%build_path%/cma…
428 - dir dist\
429 - echo "Output directory:"
430 - dir %output_path%
431 - echo "Build directory:"
432 - dir %build_path%
433 - if "%build_type%"=="Release" (echo "Install directory:")
434 - if "%build_type%"=="Release" (dir %install_path%)
435 - if "%build_type%"=="Release" (dir %install_path%\bin)
436 - if "%build_type%"=="Release" (dir %install_path%\include)
437 - if "%build_type%"=="Release" (dir %install_path%\lib)
438 - if "%build_type%"=="Release" (copy "%install_path%"\include dist\)
439 - if "%build_type%"=="Release" (copy "%install_path%"\bin\*.exe dist\)
440 - echo "Dist directory:"
441 - dir dist\
445 - C:\mingw-builds -> mingw.cmd
446 - C:\third-party -> **\CMakeLists.txt
447 - C:\ssl
450 - path: dist\*
453 -
456 - configuration: Release
460 - id: Ubuntu1604-GCC-x64
461 compiler: gcc-5.1.0-posix
473 - id: Ubuntu1804-GCC-x64
474 compiler: gcc-5.1.0-posix
487 -
490 - PYTHON: "C:\\Python37"
493 - set PATH=%PATH%;%PYTHON%/Scripts/
494 - pip.exe install conan conan_package_tools
497 - python conan/build.py