mirror of
https://github.com/apache/cloudstack.git
synced 2025-11-02 20:02:29 +01:00
Send output to oblivion because of this message in travis log view: This log is too long to be displayed. Please reduce the verbosity of your build or download the raw log.
Signed-off-by: Daan Hoogland <daan@onecht.net>
This commit is contained in:
parent
880f116a62
commit
f0e1c8908b
@ -89,9 +89,10 @@ sudo pip install texttable > /dev/null
|
||||
RETRY_COUNT=3
|
||||
|
||||
#Resolve plugins first
|
||||
echo -e "\nDownloading Plugin dependencies"
|
||||
for ((i=0;i<$RETRY_COUNT;i++))
|
||||
do
|
||||
mvn org.apache.maven.plugins:maven-dependency-plugin:resolve-plugins
|
||||
mvn org.apache.maven.plugins:maven-dependency-plugin:resolve-plugins > /dev/null
|
||||
if [[ $? -eq 0 ]]; then
|
||||
break;
|
||||
fi
|
||||
@ -100,10 +101,11 @@ done
|
||||
#Resolve remaining deps
|
||||
cd tools/travis
|
||||
./downloadDeps.sh 2> /dev/null
|
||||
echo -e "\nDownloading Project dependencies"
|
||||
|
||||
for ((i=0;i<$RETRY_COUNT;i++))
|
||||
do
|
||||
mvn org.apache.maven.plugins:maven-dependency-plugin:resolve
|
||||
mvn org.apache.maven.plugins:maven-dependency-plugin:resolve > /dev/null
|
||||
if [[ $? -eq 0 ]]; then
|
||||
break;
|
||||
fi
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user