mirror of
https://github.com/matrix-construct/construct
synced 2024-12-25 23:14:13 +01:00
appveyor: Add [ci gdb] support to build in conjunction with [ci debug].
This commit is contained in:
parent
ee496e1bd1
commit
856745d178
1 changed files with 1 additions and 1 deletions
|
@ -5,7 +5,7 @@ services:
|
|||
- docker
|
||||
|
||||
environment:
|
||||
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
|
||||
COMMAND: if [[ "${APPVEYOR_REPO_COMMIT_MESSAGE}" == *"[ci debug]"* ]]; then export DEBUG_FLAGS="--enable-debug"; fi; if [[ "${APPVEYOR_REPO_COMMIT_MESSAGE}" == *"[ci gdb]"* ]]; then apt-get update && apt-get -y install gdb && export CONSTRUCT="gdb --batch -ex r -ex bt --return-child-result --args construct"; else export CONSTRUCT="construct"; 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
|
||||
|
|
Loading…
Reference in a new issue