TLS configuration changed to use discret _set_tls and _get_tls functi… #2078
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: linux | |
on: [push, pull_request] | |
jobs: | |
build: | |
strategy: | |
matrix: | |
tls: | |
- engine: mbed | |
pkg: libmbedtls-dev | |
dir: build.mbed | |
- engine: wolf | |
pkg: libwolfssl-dev | |
dir: build.wolf | |
name: build | |
runs-on: [ubuntu-latest] | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
- name: Install ninja | |
run: sudo apt-get install ninja-build | |
- name: Install TLS engine | |
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 }} .. | |
- name: Build | |
run: cd ${{ matrix.tls.dir }} && ninja | |
- name: Test | |
run: cd ${{ matrix.tls.dir }} && ctest --output-on-failure |