Skip to content

Commit

Permalink
appveyor: Isolate appveyor to specific branch (disable appveyor).
Browse files Browse the repository at this point in the history
  • Loading branch information
jevolk committed Apr 1, 2023
1 parent 7929733 commit 2db42a7
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ skip_tags: true
services:
- docker

branches:
only:
- appveyor

environment:
COMMAND: if [[ "${APPVEYOR_REPO_COMMIT_MESSAGE@Q}" == *"[ci debug]"* ]]; then export DEBUG_FLAGS="--enable-debug"; fi; if [[ "${APPVEYOR_REPO_COMMIT_MESSAGE@Q}" == *"[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

Expand Down

0 comments on commit 2db42a7

Please sign in to comment.