forked from facontidavide/PlotJuggler
-
Notifications
You must be signed in to change notification settings - Fork 36
36 lines (30 loc) · 902 Bytes
/
ubuntu.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
name: ubuntu
on: [push, pull_request]
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@v2
- 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