From 6eeab88c5e448051a60fd27ccd40a6e627274c6a Mon Sep 17 00:00:00 2001 From: Pentarctagon Date: Fri, 8 May 2020 15:36:12 -0500 Subject: [PATCH] Add additional translations steps for cmake to travis. --- utils/travis/docker_run.sh | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/utils/travis/docker_run.sh b/utils/travis/docker_run.sh index 96dcdd66cf3..9d5792387b8 100755 --- a/utils/travis/docker_run.sh +++ b/utils/travis/docker_run.sh @@ -58,8 +58,11 @@ if [ "$NLS" == "only" ]; then ./utils/travis/check_utf8.sh || exit 1 ./utils/travis/utf8_bom_dog.sh || exit 1 - cmake -DENABLE_NLS=true -DENABLE_GAME=false -DENABLE_SERVER=false -DENABLE_CAMPAIGN_SERVER=false -DENABLE_TESTS=false - make VERBOSE=1 -j2 || exit 1 + cmake -DENABLE_NLS=true -DENABLE_GAME=false -DENABLE_SERVER=false -DENABLE_CAMPAIGN_SERVER=false -DENABLE_TESTS=false -DENABLE_POT_UPDATE_TARGET=TRUE + make update-po4a-man || exit 1 + make update-po4a-manual || exit 1 + make pot-update || exit 1 + make mo-update || exit 1 make clean scons translations build=release --debug=time nls=true jobs=2 || exit 1