From 5ad5bbdb62ebb4625d982d10bbce598e8d1b7dfd Mon Sep 17 00:00:00 2001 From: Ulrich Huber Date: Fri, 18 Oct 2019 02:36:58 +0100 Subject: [PATCH] Fix translation pipeline --- azure-pipelines/translation.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/azure-pipelines/translation.yml b/azure-pipelines/translation.yml index 182b414bbe37..dc3c71733f7b 100644 --- a/azure-pipelines/translation.yml +++ b/azure-pipelines/translation.yml @@ -16,17 +16,16 @@ stages: git config --local user.name "Azure Pipelines" git config --local user.email "azuredevops@microsoft.com" displayName: 'Setup git' - - bash: | - sudo apt-get update - sudo apt-get install -y cmake libcppunit-dev libgtk-3-dev libpoppler-glib-dev portaudio19-dev libsndfile-dev liblua5.3-dev libzip-dev - displayName: 'Install dependencies' + - template: steps/install_deps_ubuntu.yml - bash: | git checkout master mkdir build displayName: 'Create build directory' - bash: | + export CXX=g++-8 + export CC=gcc-8 cmake .. - make pot + cmake --build . --target pot workingDirectory: ./build displayName: 'Build Xournal++ translation template' - task: DownloadSecureFile@1