build runner: revert change, didn't work. #156
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 | |
on: push | |
jobs: | |
build: | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install deps | |
run: | | |
sudo apt-get install -y build-essential cmake ninja-build qt6-base-dev libx11-dev libxcb1-dev | |
- name: Build | |
run: | | |
mkdir build | |
cd build | |
cmake -G Ninja .. | |
ninja |