-
Notifications
You must be signed in to change notification settings - Fork 1
55 lines (51 loc) · 1.46 KB
/
ci.yml
File metadata and controls
55 lines (51 loc) · 1.46 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
name: CI
on: [push, pull_request]
jobs:
build-ubuntu-jammy:
runs-on: ubuntu-22.04
steps:
- name: Check out repository code
uses: actions/checkout@v3
- name: Update packages
run: sudo apt-get update
- name: Install packages PMP depends on
run: >
sudo apt-get install -y --fix-missing
libtag1-dev
default-libmysqlclient-dev
libglx-dev
libgl1-mesa-dev
qt6-base-dev
qt6-multimedia-dev
- name: Run CMake
working-directory: bin
run: cmake -D "CMAKE_BUILD_TYPE:STRING=Debug" ..
- name: Run make
working-directory: bin
run: make -j2 -k
- name: Run CTest
working-directory: bin
run: ctest -V --no-tests=error
build-ubuntu-noble:
runs-on: ubuntu-24.04
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Update packages
run: sudo apt-get update
- name: Install packages PMP depends on
run: >
sudo apt-get install -y --fix-missing
libtag1-dev
default-libmysqlclient-dev
qt6-base-dev
qt6-multimedia-dev
- name: Run CMake
working-directory: bin
run: cmake -D "CMAKE_BUILD_TYPE:STRING=Debug" ..
- name: Run make
working-directory: bin
run: make -j2 -k
- name: Run CTest
working-directory: bin
run: ctest -V --no-tests=error