Skip to content

Commit

Permalink
changing back script to use if to see if travis builds it
Browse files Browse the repository at this point in the history
  • Loading branch information
javierfernandes committed Oct 11, 2015
1 parent 9759035 commit 8ef26cb
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 @@ -9,7 +9,7 @@ script:
- cd org.uqbar.project.wollok.releng/
- export PROFILES=normalProfile
- if [ $TRAVIS_PULL_REQUEST == "false" -a $TRAVIS_BRANCH == "dev" ] ; then export PROFILES="uploadRepo"; fi
- [ $TRAVIS_PULL_REQUEST == "false" ] && [[ "$TRAVIS_TAG" =~ ^v[0-9.]* ]] && export PROFILES="uploadRepo,uploadProducts"
- if [ $TRAVIS_PULL_REQUEST == "false" ] && [[ "$TRAVIS_TAG" =~ ^v[0-9.]* ]] ; then export PROFILES="uploadRepo,uploadProducts" ; fi
- echo "Running with profiles $PROFILES"
- mvn -DupdateSiteFolder=$TRAVIS_BRANCH -DTRAVIS_JOB_ID=$TRAVIS_JOB_ID clean install jacoco:report coveralls:report -P $PROFILES

Expand Down

0 comments on commit 8ef26cb

Please sign in to comment.