.github/workflows/macos-system-tests.yml: chaning to specify macos-26 #4
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: System tests (Linux) | |
| on: | |
| push: | |
| branches: | |
| - falco2 | |
| jobs: | |
| ubuntu-tests: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Install dependencies | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y zlib1g-dev libdeflate-dev libhts-dev | |
| - name: Configure for system tests | |
| run: | | |
| cmake -B build \ | |
| -DCMAKE_CXX_COMPILER=g++-14 \ | |
| -DCMAKE_BUILD_TYPE=Build | |
| - name: Build | |
| run: | | |
| cmake --build build -j4 | |
| - name: Run the tests | |
| run: | | |
| ctest --test-dir build --output-on-failure |