Merge pull request #1486 from paullouisageneau/thread-pool-size-api #1039
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: Build with Mbed TLS | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| jobs: | |
| build-linux: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Set up Homebrew | |
| uses: Homebrew/actions/setup-homebrew@master | |
| - name: Install Mbed TLS | |
| run: brew update && brew install mbedtls@3 | |
| - name: submodules | |
| run: git submodule update --init --recursive --depth 1 | |
| - name: cmake | |
| run: cmake -B build -DUSE_MBEDTLS=1 -DWARNINGS_AS_ERRORS=1 -DCMAKE_PREFIX_PATH=$(brew --prefix mbedtls@3) | |
| - name: make | |
| run: (cd build; make -j2) | |
| - name: test | |
| run: ./build/tests | |
| build-macos: | |
| runs-on: macos-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Install Mbed TLS | |
| run: brew update && brew install mbedtls@3 | |
| - name: submodules | |
| run: git submodule update --init --recursive --depth 1 | |
| - name: cmake | |
| run: cmake -B build -DUSE_MBEDTLS=1 -DWARNINGS_AS_ERRORS=1 -DENABLE_LOCAL_ADDRESS_TRANSLATION=1 -DCMAKE_PREFIX_PATH=$(brew --prefix mbedtls@3) | |
| - name: make | |
| run: (cd build; make -j2) | |
| - name: test | |
| run: ./build/tests |