feat: add config option to disable mouse events #772
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: FreeBSD CMake | |
| on: | |
| push: | |
| branches: main | |
| tags-ignore: '*.*' | |
| paths: | |
| - '.github/workflows/cmake-freebsd.yml' | |
| - 'CMakeLists.txt' | |
| - 'cmake/**' | |
| - 'include/**' | |
| - 'src/*pp' | |
| - 'src/freebsd/*pp' | |
| pull_request: | |
| branches: main | |
| paths: | |
| - '.github/workflows/cmake-freebsd.yml' | |
| - 'CMakeLists.txt' | |
| - 'cmake/**' | |
| - 'include/**' | |
| - 'src/*pp' | |
| - 'src/freebsd/*pp' | |
| jobs: | |
| build: | |
| name: freebsd-${{ matrix.version}}-${{ matrix.arch}} | |
| runs-on: ubuntu-24.04 | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}-${{ matrix.arch }}-${{ matrix.version }} | |
| cancel-in-progress: true | |
| strategy: | |
| matrix: | |
| arch: ['aarch64', 'x86_64'] | |
| version: ['14.3', '15.0'] | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Compile | |
| uses: vmactions/freebsd-vm@v1 | |
| with: | |
| arch: ${{ matrix.arch }} | |
| release: ${{ matrix.version }} | |
| usesh: true | |
| prepare: pkg install -y cmake git ninja | |
| run: | | |
| cmake -B build -G Ninja -DCMAKE_BUILD_TYPE=Debug | |
| cmake --build build --verbose | |
| ctest --test-dir build |