From f6e0e3b065631c1a685668373e1f683535d6e2f5 Mon Sep 17 00:00:00 2001 From: Jeroen Demeyer Date: Thu, 30 Mar 2017 11:19:20 +0200 Subject: [PATCH] Test gdb on Travis CI --- .travis.yml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 7fcc91e8..5784abaf 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,20 +8,25 @@ python: before_install: - sudo apt-get update -qq - - sudo apt-get install -qq -y python-pip python-dev - - sudo apt-get install -qq -y python-flake8 + - sudo apt-get install -q -y python-pip python-dev + - sudo apt-get install -q -y python-flake8 + - sudo apt-get install -q -y gdb python2.7-dbg python3.4-dbg install: - pip install -r requirements.txt - cython --version - gcc --version + - gdb --version + - ldd `which gdb` - make install before_script: - "flake8 --max-line-length=120 --max-complexity=16 --ignore=E22,E241,E731 src" script: - - make check-install distcheck + - env # Display environment variables + - which python && python --version && ldd `which python` + - make check-install distcheck check-gdb notifications: on_success: change