Skip to content

Commit

Permalink
Add travis_retry to dmg steps
Browse files Browse the repository at this point in the history
  • Loading branch information
joshmoore authored Aug 7, 2019
1 parent 09faa36 commit a59948a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ install:
- DIR=$PWD; (cd /tmp; gradle wrapper --gradle-version=5.2.1; mv .gradle gradle gradlew $DIR)

script:
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then ./gradlew packageApplicationDmg ; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" && -n "$TRAVIS_TAG" ]]; then ./gradlew packageImporterApplicationDmg ; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then travis_retry ./gradlew packageApplicationDmg ; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" && -n "$TRAVIS_TAG" ]]; then travis_retry ./gradlew packageImporterApplicationDmg ; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then test -f build/packaged/main/bundles/OMERO.insight-* ; fi
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then ./gradlew build ; fi
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then test -f build/distributions/OMERO.imagej-* ; fi
Expand Down

0 comments on commit a59948a

Please sign in to comment.