forked from SimonKagstrom/kcov
-
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.
travis: Correct coverity build command
- Loading branch information
Simon Kagstrom
committed
Jan 22, 2015
1 parent
5a41d10
commit 80261d0
Showing
1 changed file
with
2 additions
and
2 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 |
---|---|---|
|
@@ -22,8 +22,8 @@ addons: | |
name: "SimonKagstrom/kcov" | ||
description: "code coverage" | ||
notification_email: [email protected] | ||
build_command_prepend: "mkdir coverity-build && cmake .." | ||
build_command: "cd coverity-build && make" | ||
build_command_prepend: "mkdir -p coverity-build && cd coverity-build && cmake .." | ||
build_command: "make -C coverity-build" | ||
branch_pattern: master | ||
|
||
script: make -f travis/Makefile run-tests | ||
|