Skip to content

Add M5.4 milestone: Performance Analysis - Qwt vs Splot #14

Add M5.4 milestone: Performance Analysis - Qwt vs Splot

Add M5.4 milestone: Performance Analysis - Qwt vs Splot #14

Workflow file for this run

name: Linux
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y \
build-essential \
cmake \
libgl1-mesa-dev \
libx11-dev \
libxi-dev \
libxcursor-dev \
qtbase5-dev
- name: Configure CMake
run: cmake -B build -DCMAKE_BUILD_TYPE=Release -DSPLOT_WARNINGS_AS_ERRORS=ON
- name: Build
run: cmake --build build -j$(nproc)
- name: Run tests
run: ctest --test-dir build --output-on-failure