fix/dtls: Fix possible ordering of DTLS messages during handshakes. #3116
This file contains hidden or 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: darwin | |
| on: | |
| push: | |
| paths-ignore: ["docs/**", "**.adoc", "**.md"] | |
| pull_request: | |
| paths-ignore: ["docs/**", "**.adoc", "**.md"] | |
| jobs: | |
| build: | |
| name: build | |
| runs-on: [macos-latest] | |
| steps: | |
| - name: Check out code | |
| uses: actions/checkout@v4 | |
| - name: Install Mbed TLS | |
| run: brew install mbedtls | |
| - name: Install ninja | |
| run: brew install ninja | |
| - name: Configure | |
| run: mkdir build && cd build && cmake -G Ninja -DCMAKE_BUILD_TYPE=Debug -DNNG_ENABLE_TLS=ON .. | |
| - name: build | |
| run: cd build && ninja | |
| - name: Test | |
| run: cd build && ctest --output-on-failure |