forked from appneta/tcpreplay
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'coverity_scan' into Release_4.2.5
- Loading branch information
Showing
1 changed file
with
17 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,24 @@ sudo: required | |
|
||
language: c | ||
|
||
env: | ||
global: | ||
# The next declaration is the encrypted COVERITY_SCAN_TOKEN, created | ||
# via the "travis encrypt" command using the project repo's public key | ||
- secure: "F/PkNS6cxaD8Stj3ZdfnRMs5YIb4kRz1QQFwTYJu5o0F8IzGlow11AjqgGWov0KbbYaZGIGN5DlNUtOvUuNcqaPpkoHohoDBO/TcDLgVzwhBNLBCm1bho6DHuuSX1MKo+TWS1xJLCx+1+oRvSCLNjTrI3gYFwksrJhfDf9fw6VI=" | ||
|
||
before_install: | ||
- echo -n | openssl s_client -connect scan.coverity.com:443 | sed -ne '/-BEGIN CERTIFICATE-/,/-END CERTIFICATE-/p' | sudo tee -a /etc/ssl/certs/ca- | ||
|
||
addons: | ||
coverity_scan: | ||
project: | ||
name: "appneta/tcpreplay" | ||
description: "Build submitted via Travis CI" | ||
notification_email: [email protected] | ||
build_command_prepend: "./autogen.sh; ./configure; make clean" | ||
build_command: "make" | ||
branch_pattern: coverity_scan | ||
apt: | ||
packages: | ||
- libpcap-dev | ||
|