mirror of
https://git.proxmox.com/git/fwupd
synced 2025-05-29 14:34:09 +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
|
* Not packaged
|
||||||
|
* Tests for missing translation files
|
||||||
* Compiled under gcc
|
* Compiled under gcc
|
||||||
* Tests with -Werror enabled
|
* Tests with -Werror enabled
|
||||||
* Runs local test suite using qemu-user
|
* 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 -v
|
||||||
ninja test -v
|
ninja test -v
|
||||||
cd ..
|
cd ..
|
||||||
|
|
||||||
|
|
||||||
|
#test for missing translation files
|
||||||
|
./contrib/ci/check_missing_translations.sh
|
||||||
|
@ -203,6 +203,11 @@
|
|||||||
<package variant="x86_64" />
|
<package variant="x86_64" />
|
||||||
</distro>
|
</distro>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
<dependency type="build" id="intltool">
|
||||||
|
<distro id="debian">
|
||||||
|
<package variant="s390x" />
|
||||||
|
</distro>
|
||||||
|
</dependency>
|
||||||
<dependency type="build" id="libelf-dev">
|
<dependency type="build" id="libelf-dev">
|
||||||
<distro id="centos">
|
<distro id="centos">
|
||||||
<package>elfutils-libelf-devel</package>
|
<package>elfutils-libelf-devel</package>
|
||||||
|
Loading…
Reference in New Issue
Block a user