-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
48 lines (40 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
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
language: python
python: 3.6
dist: bionic
arch:
- amd64
# - arm64
os: linux
branches:
only:
- master
- dev
addons:
apt:
packages:
- python3
- python3-dev
- python3-pip
- python3-setuptools
- build-essential
- pkg-config
- gdb-multiarch
- git
- cmake
- libglib2.0-dev
- pylint
before_script:
- curl https://raw.githubusercontent.com/hugsy/stuff/master/update-trinity.sh | bash
- /usr/bin/pip3 install -U pip ropper
- echo "source `pwd`/gef.py" > ~/.gdbinit
script:
- gdb -q -ex 'gef missing' -ex 'gef help' -ex 'gef config' -ex start -ex continue -ex quit /bin/ls
- python3 -m pylint -E gef.py
- make lint
- make test
notifications:
email:
recipients:
- hugsy+github@blah.cat
on_success: change
on_failure: always