aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorGarrett D'Amore <garrett@damore.org>2024-01-27 17:26:23 -0800
committerGarrett D'Amore <garrett@damore.org>2024-01-27 17:26:23 -0800
commitf116b3bd2cee6eb1e8b6ae79cfe9cb590a9eb2df (patch)
treed75cbaa0483359783e11d6866fd172ea0eb3a8c0 /.github/workflows
parenta567c62632d61704b65386da48c83aae5a6f90d7 (diff)
downloadnng-f116b3bd2cee6eb1e8b6ae79cfe9cb590a9eb2df.tar.gz
nng-f116b3bd2cee6eb1e8b6ae79cfe9cb590a9eb2df.tar.bz2
nng-f116b3bd2cee6eb1e8b6ae79cfe9cb590a9eb2df.zip
github: enable TLS on darwin
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/darwin.yml27
1 files changed, 13 insertions, 14 deletions
diff --git a/.github/workflows/darwin.yml b/.github/workflows/darwin.yml
index 21adf3b3..5029198e 100644
--- a/.github/workflows/darwin.yml
+++ b/.github/workflows/darwin.yml
@@ -1,25 +1,24 @@
name: darwin
on: [push, pull_request]
jobs:
-
build:
name: build
- runs-on: [ macos-latest ]
+ runs-on: [macos-latest]
steps:
- - name: Check out code
- uses: actions/checkout@v1
+ - name: Check out code
+ uses: actions/checkout@v1
- - name: Install Mbed TLS
- run: brew install mbedtls
+ - name: Install Mbed TLS
+ run: brew install mbedtls
- - name: Install ninja
- run: brew install ninja
+ - name: Install ninja
+ run: brew install ninja
- - name: Configure
- run: mkdir build && cd build && cmake -G Ninja ..
+ - name: Configure
+ run: mkdir build && cd build && cmake -G Ninja -DNNG_ENABLE_TLS=ON ..
- - name: build
- run: cd build && ninja
+ - name: build
+ run: cd build && ninja
- - name: Test
- run: cd build && ctest --output-on-failure
+ - name: Test
+ run: cd build && ctest --output-on-failure