mirror of
https://bitbucket.org/smil3y/katie.git
synced 2025-02-24 02:42:55 +00:00
34 lines
751 B
YAML
34 lines
751 B
YAML
version: 4.12.0-{branch}-{build}
|
|
image: Ubuntu2004
|
|
clone_depth: 1
|
|
cache:
|
|
- /home/appveyor/.ccache
|
|
|
|
build_script:
|
|
- sh: >-
|
|
git log > /tmp/gitlog.txt
|
|
|
|
grep -q '\[ci reset\]' /tmp/gitlog.txt && rm -rf /home/appveyor/.ccache
|
|
|
|
sudo apt-get update -qq
|
|
|
|
sudo apt-get install -qq libpcre3-dev libdeflate-dev libc6-dev \
|
|
libpng-dev libcups2-dev libfreetype6-dev libfontconfig1-dev \
|
|
libdbus-1-dev libicu-dev xorg-dev dbus-x11 libjansson-dev ccache \
|
|
fonts-freefont-ttf
|
|
|
|
export PATH="/usr/lib/ccache/:$PATH"
|
|
|
|
cmake . -Wno-dev -DKATIE_TESTS=ON -DKATIE_BENCHMARKS=ON -DKATIE_UTILS=ON
|
|
|
|
make -j $(nproc || echo 1)
|
|
|
|
test_script:
|
|
- sh: >-
|
|
Xvfb :123 &
|
|
|
|
export DISPLAY=:123
|
|
|
|
cd tests/auto
|
|
|
|
ctest -V
|