Skip to content

Commit 3f5efe1

Browse files
committed
Reverted temporary disabled unit tests to create a new release
1 parent 05bae22 commit 3f5efe1

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.travis.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ before_install:
2121
- source "$HOME/.sdkman/bin/sdkman-init.sh"
2222
- sdk install groovy 3.0.8
2323
install:
24-
- mvn install -DskipTests -Dmaven.javadoc.skip=true -PpublicRepos -B -V
24+
- mvn install -Dmaven.javadoc.skip=true -PpublicRepos -B -V
2525
before_script:
2626
- git config --global user.email "[email protected]"
2727
- git config --global user.name "Travis-CI"
@@ -30,9 +30,9 @@ script:
3030
# TODO: Instead of sleeping, should we rather make sure that the server Playground actually is running?
3131
- sleep 5s
3232
- mvn deploy -PuploadStaticFiles
33-
#- mvn install -PuiIntegrationTests
33+
- mvn install -PuiIntegrationTests
3434
- kill $(ps -ef | grep playground | awk '{ print $2 }')
35-
#- mvn install -PnonUiIntegrationTests
35+
- mvn install -PnonUiIntegrationTests
3636
# the exported credentials are needed in the maybe-release.sh
3737
- git config credential.helper "store --file=.git/credentials"
3838
- echo "https://${GH_TOKEN}:@github.com" > .git/credentials

maybe-release.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ then
1515
echo 'starting a new nexus repository ...'
1616
OUTPUT=$(groovy staging.groovy start)
1717
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}
1919
rc=$?
2020
if [ $rc -eq 0 ]
2121
then

staging.groovy

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ class Staging {
6767
case "promote":
6868
println "trying to promote nexus repository ..."
6969
//see: https://issues.sonatype.org/browse/OSSRH-27145
70-
println("Waiting 30 secs before continue")
70+
println("Waiting 60 secs before continue")
7171
sleep(60000);
7272
doWithRetry(this.&promote, repositoryId)
7373
println " > done"

0 commit comments

Comments
 (0)