Check for GCC/Clang compiler warnings in Ubuntu GitHub Actions CI #106
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: build-macos | |
on: [push, pull_request] | |
jobs: | |
macos: | |
timeout-minutes: 60 | |
runs-on: macOS-latest | |
strategy: | |
matrix: | |
mode: [-DBUILD_UVW_SHARED_LIB=ON, -DBUILD_UVW_LIBS=ON, -DBUILD_UVW_LIBS=OFF] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Compile tests | |
working-directory: build | |
run: | | |
cmake ${{ matrix.mode }} -DBUILD_TESTING=ON -Dlibuv_buildtests=OFF .. | |
make -j2 |