aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/linux.yml
diff options
context:
space:
mode:
authorGarrett D'Amore <garrett@damore.org>2024-12-21 12:31:47 -0800
committerGarrett D'Amore <garrett@damore.org>2024-12-21 12:37:16 -0800
commitc6babe615b8d96acf25721dc8cdf1c5bf37130b5 (patch)
tree6131650e1c5c411615fcc4e4ea67dfcc4a3faf55 /.github/workflows/linux.yml
parent1514a532617b1fa7d4568a79a9d8ae24ceba1be9 (diff)
downloadnng-c6babe615b8d96acf25721dc8cdf1c5bf37130b5.tar.gz
nng-c6babe615b8d96acf25721dc8cdf1c5bf37130b5.tar.bz2
nng-c6babe615b8d96acf25721dc8cdf1c5bf37130b5.zip
workflows: add pollq and make build debug for backtraces
Diffstat (limited to '.github/workflows/linux.yml')
-rw-r--r--.github/workflows/linux.yml7
1 files changed, 6 insertions, 1 deletions
diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml
index a0cba105..a9f7db50 100644
--- a/.github/workflows/linux.yml
+++ b/.github/workflows/linux.yml
@@ -11,6 +11,11 @@ jobs:
- engine: wolf
pkg: libwolfssl-dev
dir: build.wolf
+ pollq:
+ - poller: auto
+ - poller: epoll
+ - poller: select
+ - poller: poll
name: build
runs-on: [ubuntu-latest]
steps:
@@ -24,7 +29,7 @@ jobs:
run: sudo apt-get install ${{ matrix.tls.pkg }}
- name: Configure
- run: mkdir ${{ matrix.tls.dir }} && cd ${{ matrix.tls.dir }} && cmake -G Ninja -D NNG_ENABLE_TLS=ON -DNNG_TLS_ENGINE=${{ matrix.tls.engine }} ..
+ run: mkdir ${{ matrix.tls.dir }} && cd ${{ matrix.tls.dir }} && cmake -G Ninja -DCMAKE_BUILD_TYPE=Debug -D NNG_ENABLE_TLS=ON -DNNG_POLLQ_POLLER=${{ matrix.pollq.poller }} -DNNG_TLS_ENGINE=${{ matrix.tls.engine }} ..
- name: Build
run: cd ${{ matrix.tls.dir }} && ninja