comparison .travis.yml @ 16291:f80c1a4be2c5 v8.1.1150

patch 8.1.1150: generating desktop files not tested on Travis commit https://github.com/vim/vim/commit/29a9baa0779c21f3d055a7b119d6d5650f4ae56e Author: Bram Moolenaar <Bram@vim.org> Date: Thu Apr 11 15:49:11 2019 +0200 patch 8.1.1150: generating desktop files not tested on Travis Problem: Generating desktop files not tested on Travis. Solution: Install a newer msgfmt package. (Christian Brabandt)
author Bram Moolenaar <Bram@vim.org>
date Thu, 11 Apr 2019 16:00:06 +0200
parents bec05be6858a
children 5b592d4eb23a
comparison
equal deleted inserted replaced
16290:af4656bdc3b5 16291:f80c1a4be2c5
113 # Use llvm-cov instead of gcov when compiler is clang. 113 # Use llvm-cov instead of gcov when compiler is clang.
114 - | 114 - |
115 if [[ "${TRAVIS_OS_NAME}" = "linux" ]] && [[ "${CC}" = "clang" ]]; then 115 if [[ "${TRAVIS_OS_NAME}" = "linux" ]] && [[ "${CC}" = "clang" ]]; then
116 ln -sf "$(which llvm-cov)" /home/travis/bin/gcov 116 ln -sf "$(which llvm-cov)" /home/travis/bin/gcov
117 fi 117 fi
118 # Need msgfmt 0.19.8 to be able to generate .desktop files
119 - |
120 if [[ "${TRAVIS_OS_NAME}" = "linux" ]]; then
121 sudo add-apt-repository ppa:ricotz/toolchain -y &&
122 sudo apt-get update -q &&
123 sudo apt-get install gettext=0.19.8.1-1ubuntu2~14.04~ricotz1 -y
124 fi
118 125
119 before_script: 126 before_script:
120 # Start virtual framebuffer to be able to test the GUI. Does not work on OS X. 127 # Start virtual framebuffer to be able to test the GUI. Does not work on OS X.
121 - | 128 - |
122 if [[ "${TRAVIS_OS_NAME}" = "linux" ]]; then 129 if [[ "${TRAVIS_OS_NAME}" = "linux" ]]; then