File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
- source ./utilities/integration_test_env.sh
3
2
4
3
# This script is used by Travis-CI to publish artifacts (binary, sorce and javadoc jars) when releasing snapshots.
5
4
# This script is referenced in .travis.yml.
@@ -11,6 +10,7 @@ echo "Travis JDK version: " ${TRAVIS_JDK_VERSION}
11
10
if [ " ${TRAVIS_JDK_VERSION} " == " oraclejdk7" ]; then
12
11
mvn clean cobertura:cobertura coveralls:report
13
12
if [ " ${TRAVIS_PULL_REQUEST} " == " false" -a " ${TRAVIS_BRANCH} " == " master" ]; then
13
+ source ./utilities/integration_test_env.sh
14
14
SITE_VERSION=$( mvn org.apache.maven.plugins:maven-help-plugin:2.1.1:evaluate -Dexpression=project.version | grep -Ev ' (^\[|\w+:)' )
15
15
if [ " ${SITE_VERSION##* -} " != " SNAPSHOT" ]; then
16
16
# Deploy site if not a SNAPSHOT
Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
- source ./utilities/integration_test_env.sh
3
-
4
2
# This script is used by Travis-CI to run tests.
5
3
# This script is referenced in .travis.yml.
6
4
7
5
if [ " ${TRAVIS_PULL_REQUEST} " == " false" ]; then
6
+ source ./utilities/integration_test_env.sh
8
7
# Get signing tools and API keyfile
9
8
openssl aes-256-cbc -K $encrypted_631490ecae8f_key -iv $encrypted_631490ecae8f_iv -in target/travis/signing-tools.tar.enc -out $TRAVIS_BUILD_DIR /signing-tools.tar -d
10
9
mkdir $TRAVIS_BUILD_DIR /signing-tools
You can’t perform that action at this time.
0 commit comments