summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-04-11 15:49:11 +0200
committerBram Moolenaar <Bram@vim.org>2019-04-11 15:49:11 +0200
commit29a9baa0779c21f3d055a7b119d6d5650f4ae56e (patch)
treec1e42a6e9ab41160cb0fd919ef89d6323b86e049 /.travis.yml
parent26096cc96fc402db45948b3b662a380281585649 (diff)
downloadvim-git-29a9baa0779c21f3d055a7b119d6d5650f4ae56e.tar.gz
patch 8.1.1150: generating desktop files not tested on Travisv8.1.1150
Problem: Generating desktop files not tested on Travis. Solution: Install a newer msgfmt package. (Christian Brabandt)
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml7
1 files changed, 7 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
index 038a1d642..1c8cc2ebf 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -115,6 +115,13 @@ before_install:
if [[ "${TRAVIS_OS_NAME}" = "linux" ]] && [[ "${CC}" = "clang" ]]; then
ln -sf "$(which llvm-cov)" /home/travis/bin/gcov
fi
+ # Need msgfmt 0.19.8 to be able to generate .desktop files
+ - |
+ if [[ "${TRAVIS_OS_NAME}" = "linux" ]]; then
+ sudo add-apt-repository ppa:ricotz/toolchain -y &&
+ sudo apt-get update -q &&
+ sudo apt-get install gettext=0.19.8.1-1ubuntu2~14.04~ricotz1 -y
+ fi
before_script:
# Start virtual framebuffer to be able to test the GUI. Does not work on OS X.