Skip to content

Commit

Permalink
github: enable TLS on darwin
Browse files Browse the repository at this point in the history
  • Loading branch information
gdamore committed Jan 28, 2024
1 parent a567c62 commit f116b3b
Showing 1 changed file with 13 additions and 14 deletions.
27 changes: 13 additions & 14 deletions .github/workflows/darwin.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit f116b3b

Please sign in to comment.