CI: add CLI11 dependency #12
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 | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install deps | |
| run: | | |
| sudo apt update | |
| sudo apt install -y build-essential ninja-build cmake pkg-config qt6-base-dev qt6-declarative-dev qt6-wayland-dev qt6-shadertools-dev libxkbcommon-dev libwayland-dev wayland-protocols libegl1-mesa-dev libgbm-dev libdrm-dev libpipewire-0.3-dev libpam0g-dev libpolkit-agent-1-dev libpolkit-gobject-1-dev libglib2.0-dev libxcb1-dev libjemalloc-dev | |
| - name: Configure | |
| run: cmake -B build -G Ninja -DCMAKE_BUILD_TYPE=Release -DQS_BUILD_CRASH=OFF -DQS_BUILD_TESTS=OFF | |
| - name: Build | |
| run: cmake --build build -j$(nproc) |