aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorGarrett D'Amore <garrett@damore.org>2019-12-29 16:50:32 -0800
committerGarrett D'Amore <garrett@damore.org>2019-12-29 20:51:33 -0800
commit0cf84675edef0290a74dfd1e289c0b9e1bb3fb5c (patch)
treea637989cb4da9bf7523d450acf618a64d3f10a0a /.github/workflows
parentb4d3ff2d460607ba8e1b351233cb6cbe9f031264 (diff)
downloadnng-0cf84675edef0290a74dfd1e289c0b9e1bb3fb5c.tar.gz
nng-0cf84675edef0290a74dfd1e289c0b9e1bb3fb5c.tar.bz2
nng-0cf84675edef0290a74dfd1e289c0b9e1bb3fb5c.zip
fixes #1059 compat_tcp test sometimes times out
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/coverage.yml4
-rw-r--r--.github/workflows/sanitizer.yml2
2 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml
index dac9664f..7aaf317a 100644
--- a/.github/workflows/coverage.yml
+++ b/.github/workflows/coverage.yml
@@ -16,7 +16,7 @@ jobs:
run: sudo apt-get install ninja-build
- name: Configure
- run: mkdir build && cd build && cmake -G Ninja -DNNG_ENABLE_COVERAGE=ON -DNNG_ENABLE_TLS=ON ..
+ run: mkdir build && cd build && cmake -G Ninja -DCMAKE_BUILD_TYPE=Debug -DNNG_ENABLE_COVERAGE=ON -DNNG_ENABLE_TLS=ON ..
- name: build
run: cd build && ninja
@@ -47,7 +47,7 @@ jobs:
run: brew install lcov
- name: Configure
- run: mkdir build && cd build && cmake -G Ninja -DNNG_ENABLE_COVERAGE=ON -DNNG_ENABLE_TLS=ON ..
+ run: mkdir build && cd build && cmake -G Ninja -DCMAKE_BUILD_TYPE=Debug -DNNG_ENABLE_COVERAGE=ON -DNNG_ENABLE_TLS=ON ..
- name: build
run: cd build && ninja
diff --git a/.github/workflows/sanitizer.yml b/.github/workflows/sanitizer.yml
index e55ed227..7b49c624 100644
--- a/.github/workflows/sanitizer.yml
+++ b/.github/workflows/sanitizer.yml
@@ -24,7 +24,7 @@ jobs:
run: |
mkdir build
cd build
- cmake -G Ninja -DNNG_SANITIZER=${{ matrix.sanitizer }} -DNNG_ENABLE_TLS=ON -DNNG_TOOLS=OFF ..
+ cmake -G Ninja -DNNG_SANITIZER=${{ matrix.sanitizer }} -DCMAKE_BUILD_TYPE=Debug -DNNG_ENABLE_TLS=ON -DNNG_TOOLS=OFF ..
- name: Build
run: |
cd build