Update libuv and add flags for UV_TCP_REUSEPORT and UV_UDP_REUSEPORT #190
Workflow file for this run
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-macos | |
| on: [push, pull_request] | |
| jobs: | |
| macos: | |
| timeout-minutes: 60 | |
| runs-on: macOS-latest | |
| strategy: | |
| matrix: | |
| mode: [-DUVW_BUILD_SHARED_LIB=ON, -DUVW_BUILD_LIBS=ON, -DUVW_BUILD_LIBS=OFF] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Compile tests | |
| working-directory: build | |
| run: | | |
| cmake ${{ matrix.mode }} -DUVW_BUILD_TESTING=ON -Dlibuv_buildtests=OFF .. | |
| make -j2 |