-
Notifications
You must be signed in to change notification settings - Fork 312
/
Copy path.cirrus.yml
46 lines (41 loc) · 1.5 KB
/
.cirrus.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
task:
name: freebsd amd64
skip: "changesIncludeOnly('doc/*')"
freebsd_instance:
image_family: freebsd-14-1
install_script: |
pkg install -y cmake \
ninja \
git \
eigen \
libepoxy \
gettext \
gperf \
jpeg-turbo \
png \
mesa-libs \
meshoptimizer \
freetype2 \
luajit \
libfmt \
icu \
pkgconf \
sdl2
clone_submodules_script: git submodule update --init --recursive
configure_script: |
cmake -B build \
-G Ninja \
-DCMAKE_BUILD_TYPE=Debug \
-DENABLE_GLES=ON \
-DENABLE_SPICE=ON \
-DENABLE_TOOLS=OFF \
-DENABLE_TESTS=ON \
-DENABLE_SDL=ON \
-DENABLE_GTK=OFF \
-DENABLE_QT5=OFF \
-DENABLE_FFMPEG=OFF \
-DENABLE_LIBAVIF=OFF \
-DENABLE_MINIAUDIO=ON \
-DUSE_ICU=OFF # tests fail on freebsd
build_script: cmake --build build --parallel
test_script: ctest --progress --extra-verbose --output-on-failure --test-dir build