mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-04-29 05:17:58 +03:00
Implement CI job to check translations
This commit is contained in:
parent
7e345436f4
commit
41595ee396
3 changed files with 31 additions and 0 deletions
|
@ -172,6 +172,20 @@ Clang_Format:
|
||||||
- CI/check_file_names.sh
|
- CI/check_file_names.sh
|
||||||
- CI/check_clang_format.sh
|
- CI/check_clang_format.sh
|
||||||
|
|
||||||
|
Lupdate:
|
||||||
|
extends: .Ubuntu_Image
|
||||||
|
stage: checks
|
||||||
|
cache:
|
||||||
|
key: Ubuntu_lupdate.ubuntu_22.04.v1
|
||||||
|
paths:
|
||||||
|
- apt-cache/
|
||||||
|
variables:
|
||||||
|
LUPDATE: lupdate
|
||||||
|
before_script:
|
||||||
|
- CI/install_debian_deps.sh openmw-qt-translations
|
||||||
|
script:
|
||||||
|
- CI/check_qt_translations.sh
|
||||||
|
|
||||||
Teal:
|
Teal:
|
||||||
stage: checks
|
stage: checks
|
||||||
extends: .Ubuntu_Image
|
extends: .Ubuntu_Image
|
||||||
|
|
11
CI/check_qt_translations.sh
Executable file
11
CI/check_qt_translations.sh
Executable file
|
@ -0,0 +1,11 @@
|
||||||
|
#!/bin/bash -ex
|
||||||
|
|
||||||
|
set -o pipefail
|
||||||
|
|
||||||
|
LUPDATE="${LUPDATE:-lupdate}"
|
||||||
|
|
||||||
|
${LUPDATE:?} apps/wizard -ts files/lang/wizard_*.ts
|
||||||
|
${LUPDATE:?} apps/launcher -ts files/lang/launcher_*.ts
|
||||||
|
${LUPDATE:?} components/contentselector components/process -ts files/lang/components_*.ts
|
||||||
|
|
||||||
|
! (git diff --name-only | grep -q "^") || (echo -e "\033[0;31mBuild a 'translations' CMake target to update Qt localization for these files:\033[0;0m"; git diff --name-only | xargs -i echo -e "\033[0;31m{}\033[0;0m"; exit -1)
|
|
@ -100,6 +100,12 @@ declare -rA GROUPED_DEPS=(
|
||||||
clang-format-14
|
clang-format-14
|
||||||
git-core
|
git-core
|
||||||
"
|
"
|
||||||
|
|
||||||
|
[openmw-qt-translations]="
|
||||||
|
qttools5-dev
|
||||||
|
qttools5-dev-tools
|
||||||
|
git-core
|
||||||
|
"
|
||||||
)
|
)
|
||||||
|
|
||||||
if [[ $# -eq 0 ]]; then
|
if [[ $# -eq 0 ]]; then
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue