mirror of
https://invent.kde.org/graphics/okular
synced 2024-11-05 18:34:53 +00:00
57 lines
2.5 KiB
YAML
57 lines
2.5 KiB
YAML
variables:
|
|
DEBIAN_FRONTEND: "noninteractive"
|
|
|
|
include:
|
|
- https://invent.kde.org/sysadmin/ci-tooling/raw/master/invent/ci-before.yml
|
|
- https://invent.kde.org/sysadmin/ci-tooling/raw/master/invent/ci-applications-linux.yml
|
|
|
|
build_ubuntu_18_04:
|
|
stage: build
|
|
image: ubuntu:bionic
|
|
only:
|
|
- merge_requests
|
|
before_script:
|
|
- sed -i -e 's/# deb-src/deb-src/g' /etc/apt/sources.list
|
|
- apt-get update
|
|
- apt-get build-dep --yes --no-install-recommends okular
|
|
- apt-get install --yes --no-install-recommends ninja-build libkf5crash-dev
|
|
script:
|
|
- mkdir -p build && cd build
|
|
- cmake -G Ninja ..
|
|
- ninja
|
|
|
|
build_ubuntu_20_04:
|
|
stage: build
|
|
image: ubuntu:focal
|
|
only:
|
|
- merge_requests
|
|
before_script:
|
|
- sed -i -e 's/# deb-src/deb-src/g' /etc/apt/sources.list
|
|
- apt-get update
|
|
- apt-get build-dep --yes --no-install-recommends okular
|
|
- apt-get install --yes --no-install-recommends ninja-build
|
|
script:
|
|
- mkdir -p build && cd build
|
|
- cmake -DOKULAR_UI=desktop -G Ninja ..
|
|
- ninja
|
|
- rm -rf *
|
|
- cmake -DOKULAR_UI=mobile -G Ninja ..
|
|
- ninja
|
|
|
|
build_clazy_clang_tidy:
|
|
stage: build
|
|
image: debian:testing
|
|
only:
|
|
- merge_requests
|
|
before_script:
|
|
- echo 'deb-src http://deb.debian.org/debian unstable main' >> /etc/apt/sources.list
|
|
- apt-get update
|
|
- apt-get build-dep --yes --no-install-recommends okular
|
|
- apt-get install --yes --no-install-recommends ninja-build clazy clang clang-tidy python libkf5crash-dev libkf5purpose-dev libegl-dev jq
|
|
|
|
script:
|
|
- srcdir=`pwd` && mkdir -p /tmp/okular_build && cd /tmp/okular_build && CC=clang CXX=clazy CXXFLAGS="-Werror -Wno-deprecated-declarations" cmake -DCMAKE_EXPORT_COMPILE_COMMANDS=ON -G Ninja $srcdir && cat compile_commands.json | jq '[.[] | select(.file | contains("'"$srcdir"'"))]' > compile_commands.aux.json && cat compile_commands.aux.json | jq '[.[] | select(.file | contains("/synctex/")| not)]' > compile_commands.json && cp "$srcdir/.clang-tidy" .
|
|
- CLAZY_IGNORE_DIRS="settings_core.[cpp|h]|settings.[cpp.h]|pdfsettings.h|gssettings.h" CLAZY_CHECKS="level0,level1,level2,no-ctor-missing-parent-argument,isempty-vs-count,qhash-with-char-pointer-key,raw-environment-function,qproperty-type-mismatch" ninja
|
|
# Fix the poppler header, remove when debian:unstable ships poppler 0.82 or later
|
|
- sed -i "N;N;N;N; s#class MediaRendition\;\nclass MovieAnnotation\;\nclass ScreenAnnotation;#class MediaRendition\;#g" /usr/include/poppler/qt5/poppler-link.h
|
|
- run-clang-tidy
|