-
Notifications
You must be signed in to change notification settings - Fork 160
/
Copy path.travis.yml
31 lines (31 loc) · 1017 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
language: cpp
sudo: false
dist: bionic
addons:
apt:
packages:
- libboost-regex-dev
- libboost-program-options-dev
- libboost-system-dev
- libboost-filesystem-dev
- libboost-test-dev
- libssl-dev
compiler:
- gcc
before_script:
- cmake . -DTests=ON -DCMAKE_BUILD_TYPE=Debug
script:
- make
- bin/manalyze --version
- bin/manalyze --help
- bin/manalyze-tests
- bin/hash-library-test
after_success:
- git clone https://github.com/rizinorg/rizin-testbins
- git clone https://github.com/radareorg/radare2-testbins
# Run Manalyze on problematic binaries
- travis_wait 30 bin/manalyze -r rizin-testbins/pe/ >/dev/null 2>&1
- travis_wait 30 bin/manalyze -r radare2-testbins/pe/ >/dev/null 2>&1
- bin/manalyze -r radare2-testbins/fuzzed/ -ojson >/dev/null 2>&1
- bin/manalyze -d all -p all --hashes --extract /tmp/ test/testfiles/manatest.exe test/testfiles/manatest2.exe >/dev/null
- bin/manalyze -d all -p all --hashes -o json test/testfiles/manatest3.exe >/dev/null