aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorMike Frysinger <vapier@chromium.org>2016-06-24 04:40:03 -0400
committerMike Frysinger <vapier@chromium.org>2016-06-24 04:40:03 -0400
commitaf8840d910adcc6cc488ea21338b43decae737dd (patch)
tree7510074ece844bf0ce38722341babe15afaead27 /scripts
parenttravis: make build scripts use bash (diff)
downloadbreakpad-af8840d910adcc6cc488ea21338b43decae737dd.tar.xz
travis: move configure step to the prepare phase
The main command is more strict in that it has to be a single command.
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/travis-build.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/travis-build.sh b/scripts/travis-build.sh
index 9744b768..7558b399 100755
--- a/scripts/travis-build.sh
+++ b/scripts/travis-build.sh
@@ -32,8 +32,8 @@ coverity_scan() {
export COVERITY_SCAN_PROJECT_NAME="${TRAVIS_REPO_SLUG}"
export COVERITY_SCAN_NOTIFICATION_EMAIL="google-breakpad-dev@googlegroups.com"
- export COVERITY_SCAN_BUILD_COMMAND="./configure && make -j${JOBS}"
- export COVERITY_SCAN_BUILD_COMMAND_PREPEND="git clean -q -x -d -f; git checkout -f"
+ export COVERITY_SCAN_BUILD_COMMAND="make -j${JOBS}"
+ export COVERITY_SCAN_BUILD_COMMAND_PREPEND="git clean -q -x -d -f; git checkout -f; ./configure"
export COVERITY_SCAN_BRANCH_PATTERN="master"
curl -s "https://scan.coverity.com/scripts/travisci_build_coverity_scan.sh" | bash || :