Fix unused variable warning in setAntiAliasing function #1114
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: Linux | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Basic linting | |
run: .github/ci.py | |
- name: Install dependencies | |
run: | | |
sudo apt update | |
sudo apt install just | |
just ubuntu | |
- name: Configure with CMake and GCC | |
run: just cmake | |
- name: Build Debug | |
run: just debug all | |
- name: Build Release | |
run: just release all | |
- name: Install unittest dependencies | |
run: sudo apt install xserver-xorg-core xserver-xorg-video-dummy | |
- name: Unittest | |
run: | | |
cd build | |
Xorg -config ../data/xorg.conf &>/dev/null & | |
sleep 1 # wait for Xorg to boot up | |
DISPLAY=:0 ./Debug/jngl-unittest | |
DISPLAY=:0 ./Release/jngl-unittest |