summaryrefslogtreecommitdiff
path: root/.circleci
diff options
context:
space:
mode:
authorchrono <chron0@users.noreply.github.com>2018-10-06 18:03:52 +0000
committeriphydf <iphydf@users.noreply.github.com>2018-10-07 22:09:54 +0000
commit17a7bf3fd25d5b862b02267843fa2d37ed387d43 (patch)
tree648203637503efef5a9fb2b4dcba5809a4078f10 /.circleci
parent3f35a84968f100e1e6d3c9df467fd3c82a9ebb13 (diff)
Add AUTOTEST Option to CMakeLists.txt
Diffstat (limited to '.circleci')
-rwxr-xr-x.circleci/cmake-asan3
-rwxr-xr-x.circleci/cmake-tsan3
2 files changed, 4 insertions, 2 deletions
diff --git a/.circleci/cmake-asan b/.circleci/cmake-asan
index 2f9e99a8..5c381ee4 100755
--- a/.circleci/cmake-asan
+++ b/.circleci/cmake-asan
@@ -18,7 +18,8 @@ cmake -B_build -H. -GNinja \
18 -DMUST_BUILD_TOXAV=ON \ 18 -DMUST_BUILD_TOXAV=ON \
19 -DSTRICT_ABI=ON \ 19 -DSTRICT_ABI=ON \
20 -DTEST_TIMEOUT_SECONDS=120 \ 20 -DTEST_TIMEOUT_SECONDS=120 \
21 -DUSE_IPV6=OFF 21 -DUSE_IPV6=OFF \
22 -DAUTOTEST=ON
22 23
23cd _build 24cd _build
24 25
diff --git a/.circleci/cmake-tsan b/.circleci/cmake-tsan
index 5d4453ff..31123dfa 100755
--- a/.circleci/cmake-tsan
+++ b/.circleci/cmake-tsan
@@ -18,7 +18,8 @@ cmake -H. -B_build -GNinja \
18 -DMUST_BUILD_TOXAV=ON \ 18 -DMUST_BUILD_TOXAV=ON \
19 -DSTRICT_ABI=ON \ 19 -DSTRICT_ABI=ON \
20 -DTEST_TIMEOUT_SECONDS=120 \ 20 -DTEST_TIMEOUT_SECONDS=120 \
21 -DUSE_IPV6=OFF 21 -DUSE_IPV6=OFF \
22 -DAUTOTEST=ON
22 23
23cd _build 24cd _build
24 25