Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

travis: Add coverity builds to Travis #5954

Merged
merged 1 commit into from
May 19, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,18 @@ addons:
- wget
- abi-compliance-checker
- abi-dumper
coverity_scan:
project:
name: "ofiwg/libfabric"
description: "Libfabric project coverity scans"
build_command_prepend: "./autogen.sh; ./configure"
build_command: "make -j2"
# It might be overkill to run a full scan across the compiler test matrix
# for every PR to master. The coverity addon can not selectively run for
# certain OSes or compilers. Once a couple runs succeed, change this to a
# coverity-scan branch that we push to on-demand during releases or as
# needed..
branch_pattern: master

env:
global:
Expand All @@ -48,6 +60,8 @@ env:
#- MAKE_FLAGS="AM_CFLAGS=-Werror"
- MAKE_FLAGS=
- ASAN_OPTIONS=detect_leaks=0
# Encrypted COVERITY_SCAN_TOKEN
- secure: "gDU1pbiuGsuPHezMp0X2DEC9+bBu2F+XDqR93JMkIzHNI7ygQX/kXeJT6ly9MH60paSpIolfQFNA6QotKtpZ62X3a9wrhv3In1viB+EJr1wmsPrKfprI+JfZYevPLTn6LUQM0d2zoclRWNJzY/uldc6bEaXXxDKIaRk8pgmNZR4="

# Brew update GNU Autotools so that autogen can succeed
before_install:
Expand Down