Skip to content

Windows CI should create the installer #601

Windows CI should create the installer

Windows CI should create the installer #601

Workflow file for this run

name: ubuntu
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize, closed]
jobs:
ubuntu-build:
runs-on: ${{ matrix.ubuntu-distro }}
strategy:
fail-fast: false
matrix:
ubuntu-distro:
- ubuntu-20.04
- ubuntu-22.04
steps:
- name: Sync repository
uses: actions/checkout@v4
- name: Install apt packages
run: |
sudo apt update && sudo apt -y install \
software-properties-common \
qtbase5-dev \
libqt5svg5-dev \
libqt5websockets5-dev \
libqt5opengl5-dev \
libqt5x11extras5-dev \
libprotoc-dev \
libzmq3-dev \
liblz4-dev libzstd-dev
- name: Build Plotjuggler
run: |
cmake -B build -DCMAKE_INSTALL_PREFIX=install PlotJuggler;
cmake --build build --target install