Skip to content

Fix unused variable warning in setAntiAliasing function #1114

Fix unused variable warning in setAntiAliasing function

Fix unused variable warning in setAntiAliasing function #1114

Workflow file for this run

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