Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WIP Fix gdb debugging and test it on Travis CI #52

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
11 changes: 8 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down