forked from Gallopsled/pwntools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
22 lines (22 loc) · 841 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
language: python
python:
- "2.7"
branches:
only:
- master
install:
- sudo apt-get update
- sudo apt-get install software-properties-common
- sudo apt-add-repository --yes ppa:pwntools/binutils
- sudo apt-get update
- sudo apt-get install binutils-arm-linux-gnu binutils-mips-linux-gnu binutils-powerpc-linux-gnu
- wget -nc http://www.capstone-engine.org/download/2.1.2/capstone-2.1.2_amd64.deb
- sudo dpkg -i *.deb
- pip install -r requirements.txt
- pip install -r docs/requirements.txt
- pip install .
- python -c 'from pwn import *; print pwnlib.term.term_mode' NOTERM
- python -c 'from pwn import *; print pwnlib.term.term_mode' NOTERM
- python -c 'from pwn import *; print pwnlib.term.term_mode' NOTERM
- python -c 'from pwn import *; print pwnlib.term.term_mode' NOTERM
script: make -C docs doctest