-
Notifications
You must be signed in to change notification settings - Fork 8
92 lines (79 loc) · 2.04 KB
/
build-for-linux.yml
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
name: Build for Linux (Trixie, pre-compiled libwlroots-0.18-dev)
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build_matrix:
strategy:
matrix:
compiler: [ "gcc", "clang" ]
runs-on: ubuntu-latest
container:
image: debian:trixie
steps:
- name: Install package dependencies.
run: |
apt-get update
apt-get install -y \
bison \
clang \
cmake \
flex \
gcc \
git \
libcairo2-dev \
libncurses-dev \
libwlroots-0.18-dev \
pkg-config \
plantuml \
xwayland
- name: Checkout code, including git submodules.
uses: actions/checkout@v3
with:
# Not using 'recursive' prevents fetching extra submodules below
# dependencies/. These are only needed to build wlroots from source.
submodules: true
- name: Configure wlmaker through CMake.
run: |
export CC="${{ matrix.compiler }}"
cmake -B build/
- name: Build wlmaker.
run: |
export CC="${{ matrix.compiler }}"
cmake --build build/
- name: Run all tests.
run: |
ctest --test-dir build/ --build-run-dir build/ -V
generate_doc:
runs-on: ubuntu-latest
container:
image: debian:trixie
steps:
- name: Install package dependencies.
run: |
apt-get update
apt-get install -y \
bison \
clang \
cmake \
doxygen \
flex \
gcc \
git \
libcairo2-dev \
libncurses-dev \
libwlroots-0.18-dev \
pkg-config \
plantuml \
xwayland
- name: Checkout code, including git submodules.
uses: actions/checkout@v3
with:
submodules: true
- name: Configure wlmaker through CMake, with doxygen.
run: |
cmake -Dconfig_DOXYGEN_CRITICAL=ON -B build/
- name: Build documentation.
run: cmake --build build/ --target doc