0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-06-17 17:38:22 +02:00

appveyor: Add [ci debug] support to build.

This commit is contained in:
Jason Volk 2022-06-22 16:00:13 -07:00
parent ee59e76305
commit ee496e1bd1

View file

@ -5,7 +5,7 @@ services:
- docker
environment:
COMMAND: rmdir -v deps/rocksdb && ln -sv /usr/src/rocksdb deps && ./autogen.sh && ./configure --enable-assert && make install && construct -smoketest localhost
COMMAND: if [[ "${APPVEYOR_REPO_COMMIT_MESSAGE}" == *"[ci debug]"* ]]; then export DEBUG_FLAGS="--enable-debug"; fi && rmdir -v deps/rocksdb && ln -sv /usr/src/rocksdb deps && ./autogen.sh && ./configure --enable-assert ${DEBUG_FLAGS} && make install && construct -smoketest -debug localhost
matrix:
# - APPVEYOR_BUILD_WORKER_IMAGE: Ubuntu1804