Skip to content

Commit 99a7bba

Browse files
committed
build scripts: naming
Signed-off-by: Felix Neumann <dev@fxnn.de>
1 parent 1f2f627 commit 99a7bba

File tree

4 files changed

+8
-5
lines changed

4 files changed

+8
-5
lines changed

Diff for: .travis.yml

+7-4
Original file line numberDiff line numberDiff line change
@@ -3,23 +3,26 @@ language: java
33
jdk:
44
- oraclejdk8
55

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

88
deploy:
9+
# deploy master branch to snapshot repository
910
- provider: script
10-
script: bash src/main/build/mvndeploy.sh
11+
script: bash src/main/build/mvn-deploy.sh
1112
skip_cleanup: true
1213
on:
1314
repo: fxnn/brainfuck
1415
branch: master
16+
# deploy tags to release repository
1517
- provider: script
16-
script: bash src/main/build/mvndeploy.sh
18+
script: bash src/main/build/mvn-deploy.sh
1719
skip_cleanup: true
1820
on:
1921
repo: fxnn/brainfuck
2022
tags: true
23+
# deploy Jacoco test results to coveralls
2124
- provider: script
22-
script: bash src/main/build/jacoco-report.sh
25+
script: bash src/main/build/coveralls-report.sh
2326

2427
cache:
2528
directories:
File renamed without changes.

Diff for: src/main/build/mvndeploy.sh renamed to src/main/build/mvn-deploy.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,5 @@ fi
2121

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

0 commit comments

Comments
 (0)