Skip to content

Commit

Permalink
feat(CI/CD): allows to work with fork when variables are not defined
Browse files Browse the repository at this point in the history
  • Loading branch information
Tony-Proum committed Jun 17, 2019
1 parent ce673cf commit fe8e54c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
install: skip # bundle install is not required
include:
script: make run-test
- script: 'if [ "$SONAR_HOST_URL" != "false" ]; then bash -c "make quality-analysis"; fi'
- script: 'if [ ! -z "$SONAR_HOST_URL" ]; then bash -c "make quality-analysis"; fi'
- stage: deploy
install: skip # bundle install is not required
branches:
Expand Down

0 comments on commit fe8e54c

Please sign in to comment.