Skip to content

Commit

Permalink
build scripts: naming
Browse files Browse the repository at this point in the history
Signed-off-by: Felix Neumann <dev@fxnn.de>
  • Loading branch information
fxnn committed Nov 1, 2018
1 parent 1f2f627 commit 99a7bba
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
11 changes: 7 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,23 +3,26 @@ language: java
jdk:
- oraclejdk8

script: mvn install --batch-mode --show-version
# stick with the Travis CI default of install=`mvn install` and script=`mvn test`

deploy:
# deploy master branch to snapshot repository
- provider: script
script: bash src/main/build/mvndeploy.sh
script: bash src/main/build/mvn-deploy.sh
skip_cleanup: true
on:
repo: fxnn/brainfuck
branch: master
# deploy tags to release repository
- provider: script
script: bash src/main/build/mvndeploy.sh
script: bash src/main/build/mvn-deploy.sh
skip_cleanup: true
on:
repo: fxnn/brainfuck
tags: true
# deploy Jacoco test results to coveralls
- provider: script
script: bash src/main/build/jacoco-report.sh
script: bash src/main/build/coveralls-report.sh

cache:
directories:
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,5 @@ fi

echo "Deploying to repository"
echo
mvn deploy -P sign,build-extras --settings $DIR/mvnsettings.xml
mvn deploy -P sign,build-extras -DskipTests=true --settings $DIR/mvn-settings.xml
echo
File renamed without changes.

0 comments on commit 99a7bba

Please sign in to comment.