Skip to content

Commit

Permalink
Travis fix (#91)
Browse files Browse the repository at this point in the history
  • Loading branch information
akshaisarma committed Mar 25, 2021
1 parent 72aba1c commit b2830f7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ script:
- mvn verify
after_success:
- mvn coveralls:report
- test "${TRAVIS_PULL_REQUEST}" == "false" && test "${TRAVIS_TAG}" != "" && mvn deploy --settings travis/settings.xml
- test "${TRAVIS_PULL_REQUEST}" == "false" && test "${TRAVIS_BRANCH}" != "master" && mvn deploy --settings travis/settings.xml
cache:
directories:
- "~/.m2"
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jar:
mvn clean package

release:
mvn -B release:prepare release:clean
mvn -B release:prepare release:clean && git checkout `git describe --abbrev=0` -b `git describe --abbrev=0` && git push -u origin HEAD && git checkout master && git pull

coverage:
mvn clean clover2:setup test clover2:aggregate clover2:clover
Expand Down

0 comments on commit b2830f7

Please sign in to comment.