mirror of https://github.com/pwndbg/pwndbg.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
418 B
YAML
20 lines
418 B
YAML
sudo: required
|
|
dist: trusty
|
|
branches:
|
|
only:
|
|
- master
|
|
language: python
|
|
cache:
|
|
- pip
|
|
- directories:
|
|
- /home/travis/virtualenv/python2.7.9/lib/python2.7/site-packages/
|
|
- /home/travis/virtualenv/python2.7.9/bin/
|
|
- capstone
|
|
- unicorn
|
|
install:
|
|
- sudo apt-get -y install gdb
|
|
- lsb_release -a
|
|
- pip install -r requirements.txt
|
|
- sudo ./setup.sh
|
|
script: nosetests ./tests/
|