From 7a1bb8863a8759263636b0b8aa77ad462f3ce4d4 Mon Sep 17 00:00:00 2001 From: Dave Page Date: Fri, 31 Mar 2017 12:26:57 -0400 Subject: [PATCH] Include translation message catalogs in CI build/test runs. --- ci/ci_runner.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/ci/ci_runner.sh b/ci/ci_runner.sh index 9558aa62f..96b0cd681 100755 --- a/ci/ci_runner.sh +++ b/ci/ci_runner.sh @@ -6,5 +6,6 @@ $WORKSPACE/ci/run_jasmine_tests.sh || { echo 'Error detected when running the Ja $WORKSPACE/ci/build_docs.sh || { echo 'Failed to build the documentation.' ; exit 1; } $WORKSPACE/ci/build_runtime_qt4.sh || { echo 'Failed to build the QT4 runtime.' ; exit 1; } $WORKSPACE/ci/build_runtime_qt5.sh || { echo 'Failed to build the QT5 runtime.' ; exit 1; } +$WORKSPACE/ci/update_messages.sh || { echo 'Failed to update translation message catalogs.' ; exit 1; } $WORKSPACE/ci/build_pip_wheel.sh || { echo 'Failed to build the PIP wheel.' ; exit 1; } $WORKSPACE/ci/build_tarballs.sh || { echo 'Failed to build the tarballs.' ; exit 1; }