Skip to content

Commit

Permalink
travis: use newer ubuntu base
Browse files Browse the repository at this point in the history
Scintilla needs C++ 17 which is supported since GCC 5. trusty/14.04 is ancient
and doesn't support C++17. Upgrade to bionic/18.04 which is old enough.
  • Loading branch information
kugel- committed Oct 26, 2020
1 parent 4beaa3e commit c747fd4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# we use both C and C++, so advertize C++
language: cpp
cache: ccache
dist: trusty
dist: bionic
compiler:
- gcc
env:
Expand All @@ -14,7 +14,7 @@ env:
before_install:
- sudo apt-get update -qq
install:
- sudo apt-get install -y intltool libtool
- sudo apt-get install -y intltool libtool autoconf-archive
- test -n "$MINGW" || sudo apt-get install -y libgtk2.0-dev libgtk-3-dev
- test -z "$MINGW" || sudo apt-get install -y mingw-w64-tools g++-mingw-w64-i686 gcc-mingw-w64-i686 binutils-mingw-w64-i686
# fix broken pkg-config-crosswrapper, see https://bugs.launchpad.net/ubuntu/+source/mingw-w64/+bug/1327242
Expand Down

0 comments on commit c747fd4

Please sign in to comment.