Catch missing translation files in POTFILES.in

This commit is contained in:
Mario Limonciello 2018-06-28 17:11:57 -05:00 committed by Richard Hughes
parent e9824d602b
commit b5845a8e93
4 changed files with 18 additions and 0 deletions

View File

@ -52,6 +52,7 @@ Debian testing (cross compile s390x)
------
* Not packaged
* Tests for missing translation files
* Compiled under gcc
* Tests with -Werror enabled
* Runs local test suite using qemu-user

View File

@ -0,0 +1,8 @@
#!/bin/sh
set -e
cd po
intltool-update -m
if [ -f missing ]; then
exit 1
fi

View File

@ -19,3 +19,7 @@ meson .. \
ninja -v
ninja test -v
cd ..
#test for missing translation files
./contrib/ci/check_missing_translations.sh

View File

@ -203,6 +203,11 @@
<package variant="x86_64" />
</distro>
</dependency>
<dependency type="build" id="intltool">
<distro id="debian">
<package variant="s390x" />
</distro>
</dependency>
<dependency type="build" id="libelf-dev">
<distro id="centos">
<package>elfutils-libelf-devel</package>