Skip to content

Commit

Permalink
Fixed build command
Browse files Browse the repository at this point in the history
  • Loading branch information
abusenius committed Jan 7, 2017
1 parent fc6c3e8 commit 0f49332
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ matrix:
description: "Build submitted via Travis CI"
notification_email: [email protected]
build_command_prepend: "make clean"
build_command: "CXX=g++-5 make -j2"
build_command: "make CXX=g++-5 -j2"
branch_pattern: master
apt:
sources:
Expand All @@ -41,7 +41,7 @@ before_install:

script:
- if [[ $BUILDTYPE == "shellcheck" ]]; then shellcheck -s sh -x ./*.sh events/* ; fi
- if [[ $BUILDTYPE == "coverity" ]]; then CXX=g++-5 make -j2 ; fi
- if [[ $BUILDTYPE == "coverity" ]]; then make CXX=g++-5 -j2 ; fi

notifications:
email: false
Expand Down

0 comments on commit 0f49332

Please sign in to comment.