From 53e13657b034492e2a31076e0102aa358c6676c5 Mon Sep 17 00:00:00 2001 From: "Meredith L. Patterson" <mlp@thesmartpolitenerd.com> Date: Fri, 6 Dec 2013 07:47:55 +0100 Subject: [PATCH] use a backport instead so as to not break python or other things --- .travis.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 63728a76..b8e56abf 100644 --- a/.travis.yml +++ b/.travis.yml @@ -23,10 +23,11 @@ matrix: perl: 5.18 env: BINDINGS=perl CC=clang before_install: - - sudo add-apt-repository -y "deb http://archive.ubuntu.com/ubuntu raring main universe" + - sudo add-apt-repository ppa:asolovets/backports - sudo apt-get update -qq - - if [ "$BINDINGS" == "python" ]; then sudo apt-get install -qq swig python-dev; fi - - if [ "$BINDINGS" == "perl" ]; then sudo apt-get install -qq swig; fi + - if [ "$BINDINGS" != "none" ]; then sudo apt-get install -qq swig; swig -version; fi + - if [ "$BINDINGS" == "python" ]; then sudo apt-get install -qq python-dev; fi + install: true script: - scons bindings=$BINDINGS test -- GitLab