File tree 3 files changed +5
-5
lines changed
3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ before_install:
21
21
- source "$HOME/.sdkman/bin/sdkman-init.sh"
22
22
- sdk install groovy 3.0.8
23
23
install :
24
- - mvn install -DskipTests - Dmaven.javadoc.skip=true -PpublicRepos -B -V
24
+ - mvn install -Dmaven.javadoc.skip=true -PpublicRepos -B -V
25
25
before_script :
26
26
-
git config --global user.email "[email protected] "
27
27
- git config --global user.name "Travis-CI"
@@ -30,9 +30,9 @@ script:
30
30
# TODO: Instead of sleeping, should we rather make sure that the server Playground actually is running?
31
31
- sleep 5s
32
32
- mvn deploy -PuploadStaticFiles
33
- # - mvn install -PuiIntegrationTests
33
+ - mvn install -PuiIntegrationTests
34
34
- kill $(ps -ef | grep playground | awk '{ print $2 }')
35
- # - mvn install -PnonUiIntegrationTests
35
+ - mvn install -PnonUiIntegrationTests
36
36
# the exported credentials are needed in the maybe-release.sh
37
37
- git config credential.helper "store --file=.git/credentials"
38
38
- echo "https://${GH_TOKEN}:@github.com" > .git/credentials
Original file line number Diff line number Diff line change 15
15
echo ' starting a new nexus repository ...'
16
16
OUTPUT=$( groovy staging.groovy start)
17
17
echo " repository Id: $OUTPUT "
18
- mvn -B -Prelease -PpublicRepos -DskipTests jgitflow:release-start jgitflow:release-finish --settings settings.xml -DrepositoryId=${OUTPUT}
18
+ mvn -B -Prelease -PpublicRepos jgitflow:release-start jgitflow:release-finish --settings settings.xml -DrepositoryId=${OUTPUT}
19
19
rc=$?
20
20
if [ $rc -eq 0 ]
21
21
then
Original file line number Diff line number Diff line change @@ -67,7 +67,7 @@ class Staging {
67
67
case " promote" :
68
68
println " trying to promote nexus repository ..."
69
69
// see: https://issues.sonatype.org/browse/OSSRH-27145
70
- println (" Waiting 30 secs before continue" )
70
+ println (" Waiting 60 secs before continue" )
71
71
sleep(60000 );
72
72
doWithRetry(this . &promote, repositoryId)
73
73
println " > done"
You can’t perform that action at this time.
0 commit comments