Unverified Commit b2eb3a48 authored by Dennis Jenkins's avatar Dennis Jenkins Committed by GitHub

Add a debug build with SSL disabled. (#701)

parent e0c17cfb
......@@ -99,6 +99,14 @@ before_script:
-DPISTACHE_BUILD_TESTS=true
-DPISTACHE_USE_SSL=true
# Debug build, no SSL
- cmake -H.
-BBuild-Debug-nossl
-DCMAKE_BUILD_TYPE=Debug
-DPISTACHE_BUILD_EXAMPLES=true
-DPISTACHE_BUILD_TESTS=true
-DPISTACHE_USE_SSL=false
# Release build
- cmake -H.
-BBuild-Release
......@@ -110,6 +118,10 @@ script:
- cd Build-Debug
- make -j 2 all test ARGS="-V"
# Debug build, no SSL
- cd Build-Debug-nossl
- make -j 2 all test ARGS="-V"
# Release build
- cd ../Build-Release
- make -j 2
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment