fix build action. #47
Workflow file for this run
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-latest | |
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 libxmu-dev libgl1-mesa-dev libglx-dev libglvnd-dev | |
- name: Build | |
run: | | |
mkdir build | |
cd build | |
cmake -G Ninja .. | |
ninja |