aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/linux.yml
diff options
context:
space:
mode:
authorGarrett D'Amore <garrett@damore.org>2019-12-27 02:23:44 -0800
committerGarrett D'Amore <garrett@damore.org>2019-12-27 11:33:33 -0800
commit0e11fe4aec20ac85114258c3e21392b479e5119f (patch)
tree5565e4b74b009c5b4aec8378d7ff23d2b40a6a91 /.github/workflows/linux.yml
parentdb0485a4b49be50832ddd936f90ac5f0e1a1d1f7 (diff)
downloadnng-0e11fe4aec20ac85114258c3e21392b479e5119f.tar.gz
nng-0e11fe4aec20ac85114258c3e21392b479e5119f.tar.bz2
nng-0e11fe4aec20ac85114258c3e21392b479e5119f.zip
Attempt at improved coverage for Darwin and mbedTLS.
Diffstat (limited to '.github/workflows/linux.yml')
-rw-r--r--.github/workflows/linux.yml10
1 files changed, 8 insertions, 2 deletions
diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml
index 137fb682..35b60fcd 100644
--- a/.github/workflows/linux.yml
+++ b/.github/workflows/linux.yml
@@ -9,11 +9,17 @@ jobs:
- name: Check out code
uses: actions/checkout@v1
+ - name: Install mbedTLS
+ run: sudo apt-get install libmbedtls-dev
+
+ - name: Install ninja
+ run: sudo apt-get install ninja-build
+
- name: Configure
- run: mkdir build && cd build && cmake ..
+ run: mkdir build && cd build && cmake -G Ninja -D NNG_ENABLE_TLS=ON ..
- name: Build
- run: cmake --build build
+ run: cd build && ninja
- name: Test
run: cd build && ctest --output-on-failure \ No newline at end of file