Skip to content

Commit

Permalink
IKASAN-2318 adding travis wait to deploy phase
Browse files Browse the repository at this point in the history
  • Loading branch information
mick-stewart73 committed Jan 16, 2024
1 parent f1c8d93 commit 8eba246
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,18 +23,18 @@ deploy:
# deploy develop 3.3.x to oss
- provider: script
skip_cleanup: true
script: mvn -quiet --file ikasaneip/pom.xml deploy -DskipTests=true -Djava.security.egd=file:/dev/./urandom -Pall -B -V --settings .settings.xml 1> /dev/null
script: travis_wait 30 mvn -quiet --file ikasaneip/pom.xml deploy -DskipTests=true -Djava.security.egd=file:/dev/./urandom -Pall -B -V --settings .settings.xml 1> /dev/null
on:
branch: 3.3.x
# deploy develop 3.3.x to oss
- provider: script
skip_cleanup: true
script: mvn -quiet --file ikasaneip/pom.xml deploy -DskipTests=true -Djava.security.egd=file:/dev/./urandom -Pall -B -V --settings .settings.xml 1> /dev/null
script: travis_wait 30 mvn -quiet --file ikasaneip/pom.xml deploy -DskipTests=true -Djava.security.egd=file:/dev/./urandom -Pall -B -V --settings .settings.xml 1> /dev/null
on:
branch: 4.0.x
# Push release to oss
- provider: script
skip_cleanup: true
script: mvn -quiet --file ikasaneip/pom.xml deploy -DskipTests=true -Djava.security.egd=file:/dev/./urandom -Pall,release-sign-artifacts -B -V --settings .settings.xml 1> /dev/null
script: travis_wait 30 mvn -quiet --file ikasaneip/pom.xml deploy -DskipTests=true -Djava.security.egd=file:/dev/./urandom -Pall,release-sign-artifacts -B -V --settings .settings.xml 1> /dev/null
on:
tags: true

0 comments on commit 8eba246

Please sign in to comment.