-
Notifications
You must be signed in to change notification settings - Fork 23
123 lines (120 loc) · 4.13 KB
/
ci.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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
---
name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install Debian Packages
run: |
sudo apt update
sudo apt install -y flex libjson-glib-dev libxkbcommon-dev \
libegl1-mesa-dev libxml2-dev libxslt1-dev libyaml-dev \
libwayland-dev llvm-dev libclang-dev libglib2.0-dev \
libepoxy-dev ninja-build
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.6'
- name: Python Package Cache
uses: actions/cache@v3
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('.github/workflows/ci.yml') }}
restore-keys: ${{ runner.os }}-pip-
- name: Install Python Packages
run: |
python -m pip install --upgrade pip setuptools wheel
HOTDOC_BUILD_C_EXTENSION=enabled pip install hotdoc meson==0.55
- name: Fetch libwpe
run: |
if [[ -d ~/libwpe/.git ]] ; then
echo 'Updating libwpe clone...'
cd ~/libwpe/
git reset --hard
git clean -qxdff
git checkout -f master
git pull -q
else
echo 'Cloning libwpe afresh...'
rm -rf ~/libwpe/
git clone -q https://github.com/WebPlatformForEmbedded/libwpe ~/libwpe/
fi
mkdir -p subprojects
ln -s ~/libwpe subprojects/
- name: Configure
run: |
mkdir -p _work && meson _work/build --prefix /usr -Dbuild_docs=true
- name: Build
run: TERM=dumb ninja -C _work/build
- name: Install
run: |
DESTDIR="$(pwd)/_work/files" ninja -C _work/build install
- name: Archive Artifacts
uses: actions/upload-artifact@v3
with:
name: build
path: _work
analyze:
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install Tools
run: |
curl -sL https://apt.llvm.org/llvm-snapshot.gpg.key | \
sudo apt-key add -
sudo add-apt-repository \
'deb http://apt.llvm.org/focal/ llvm-toolchain-focal-14 main'
sudo apt update
sudo apt install -y libxkbcommon-dev libegl1-mesa-dev libyaml-dev \
libwayland-dev clang libglib2.0-dev libepoxy-dev ninja-build
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Python Package Cache
uses: actions/cache@v3
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('.github/workflows/ci.yml') }}
restore-keys: ${{ runner.os }}-pip-
- name: Install Python Packages
run: |
python -m pip install --upgrade pip setuptools wheel
pip install scan-build meson==0.55
- name: Fetch libwpe
run: |
if [[ -d ~/libwpe/.git ]] ; then
echo 'Updating libwpe clone...'
cd ~/libwpe/
git reset --hard
git clean -qxdff
git checkout -f master
git pull -q
else
echo 'Cloning libwpe afresh...'
rm -rf ~/libwpe/
git clone -q https://github.com/WebPlatformForEmbedded/libwpe ~/libwpe/
fi
mkdir -p subprojects
ln -s ~/libwpe subprojects/
- name: Configure
run: |
meson _work --prefix /usr -Dbuild_docs=false
- name: Analyze
run: |
TERM=dumb ninja -C _work
analyze-build \
--enable-checker nullability.NullablePassedToNonnull \
--enable-checker optin.cplusplus.UninitializedObject \
--enable-checker optin.cplusplus.VirtualCall \
--enable-checker optin.performance.Padding \
--enable-checker optin.portability.UnixAPI \
--enable-checker valist.CopyToSelf \
--enable-checker valist.Uninitialized \
--enable-checker valist.Unterminated \
--cdb _work/compile_commands.json \
-o _work/report