Try wayland instead of x11 #38
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: Quartz Linux Unit Tests | |
| on: | |
| push: | |
| branches: | |
| - "kjk/ci_github" | |
| jobs: | |
| all: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| ssh-key: ${{ secrets.QUARTZ_GITHUB_SSH_PRIVATE_KEY }} | |
| token: ${{ secrets.QUARTZ_PERSONAL_ACCESS_TOKEN }} | |
| submodules: recursive | |
| - name: Setup Debug Build Dir | |
| run: mkdir .debug | |
| - name: Debug Build CMake | |
| run: | | |
| cd .debug | |
| cmake .. -DCMAKE_BUILD_TYPE=Debug -DQUARTZ_COMPILE_UNIT_TESTS=True | |
| - name: Debug Build Ninja | |
| run: | | |
| cd .debug | |
| ninja | |
| - name: Debug Build CTest | |
| run: | | |
| cd .debug | |
| ctest | |
| # cmake .. -DCMAKE_BUILD_TYPE=Debug -DQUARTZ_COMPILE_UNIT_TESTS=True -DGLFW_BUILD_WAYLAND=OFF -DGLFW_BUILD_X11=ON |