From 4af4c629a1adb86fe89f67dcca03a280a096c144 Mon Sep 17 00:00:00 2001 From: Nicolas Hake Date: Mon, 19 Oct 2015 16:26:42 +0200 Subject: [PATCH] Disable Travis CI When JCaesar dropped all Boost fallbacks, this also meant that we wouldn't be able to build on Ubuntu 12.04 LTS anymore (because that comes with an ancient libstdc++ which has a broken ). Until we update the Travis config to use their newer container-based build infrastructure, there's no point having them build everything when we already know it'll fail. --- .travis.yml | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 354b7c95f..000000000 --- a/.travis.yml +++ /dev/null @@ -1,26 +0,0 @@ -language: cpp -compiler: gcc - -# Build both GTK2 and GTK3 versions -env: - - USE_GTK_VERSION=2 - - USE_GTK_VERSION=3 - -install: - - sudo apt-get -qq update - - > - sudo apt-get -qq install - build-essential cmake imagemagick - libboost-dev libboost-regex-dev - libfreetype6-dev - $([ "${USE_GTK_VERSION}" == 2 ] && echo 'libgtk2.0-dev libgtksourceview2.0-dev') - $([ "${USE_GTK_VERSION}" == 3 ] && echo 'libgtk-3-dev libgtksourceview-3.0-dev') - libjpeg-dev libpng-dev - libupnp-dev - libalut-dev libopenal-dev libogg-dev libvorbis-dev - libgl1-mesa-dev libglew-dev libxrandr-dev x11proto-core-dev - zlib1g-dev - -script: - - cmake $([ "${USE_GTK_VERSION}" == 3 ] && echo '-DUSE_GTK3:BOOL=TRUE') . - - make