forked from trailofbits/pe-parse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
29 lines (29 loc) · 836 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
language: cpp
os:
- linux
- osx
compiler:
- clang
- gcc
before_install:
- if [ "$TRAVIS_OS_NAME" = "linux" ]; then sudo apt-get update -qq && sudo apt-get install libboost-all-dev; fi
- if [ "$TRAVIS_OS_NAME" = "osx" ]; then brew update && brew upgrade boost; fi
script: cmake . && make
matrix:
allow_failures:
- os: osx
exclude:
- compiler: gcc
os: osx
env:
global:
- secure: "O+BGqz4ugoVIJbQTh0dJjKRrsSVzkCYSe0WpRzEWK3l8Mw7hqX300g81TxRwTzN2zfUsROMzaeGaXWfGzYakgW59K1WIioaczxtv2MzzUQTbqzJPa+qQoP9bk/b2wJ5jcOL965/rudRju4UiIwuIgzDAMN3nAfIEJgV/2zANLIg="
addons:
coverity_scan:
project:
name: "trailofbits/pe-parse"
description: "Principled, lightweight C/C++ PE parser"
notification_email: [email protected]
build_command_prepend: "cmake ."
build_command: "make"
branch_pattern: master