mirror of
https://git.proxmox.com/git/fwupd
synced 2025-05-29 16:06:07 +00:00
Catch missing translation files in POTFILES.in
This commit is contained in:
parent
e9824d602b
commit
b5845a8e93
@ -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
|
||||
|
8
contrib/ci/check_missing_translations.sh
Executable file
8
contrib/ci/check_missing_translations.sh
Executable file
@ -0,0 +1,8 @@
|
||||
#!/bin/sh
|
||||
set -e
|
||||
|
||||
cd po
|
||||
intltool-update -m
|
||||
if [ -f missing ]; then
|
||||
exit 1
|
||||
fi
|
@ -19,3 +19,7 @@ meson .. \
|
||||
ninja -v
|
||||
ninja test -v
|
||||
cd ..
|
||||
|
||||
|
||||
#test for missing translation files
|
||||
./contrib/ci/check_missing_translations.sh
|
||||
|
@ -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>
|
||||
|
Loading…
Reference in New Issue
Block a user