.travis.yml 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. language: java
  2. sudo: false
  3. jdk:
  4. - openjdk11
  5. cache:
  6. directories:
  7. - $HOME/.m2
  8. env:
  9. global:
  10. - secure: "HftEaabMmWn5GwKFKksUkOcelc3Mn7xazwAEy+4d4gL1+F8VhID/6DCK7nas+afUymWnxTano8Rv4Ci5MWryNkNkTH+FUPWmF3xWezc3hajSyS7RB92IZ8VPetl4Fo8UI1WwM5apDEaugalPxkIf8a7N+lpG5X/Gpumwzo3Be3w=" # BINTRAY_API_KEY
  11. - secure: "oWFgRTVP6lyTa7qVxlvkpm20MtVc3BtmsNXQJS6bfg2A0o/iCQMNx7OD59BaafCLGRKvCcJVESiC8FlSylVMS7CDSyYu0gg70NUiIuHp4NBM5inFWYCy/PdQsCTzr5uvNG+rMFQpMFRaCV0FrfM3tLondcVkhsHL68l93Xoexx4=" # CODACY_PROJECT_TOKEN
  12. - secure: "zJxgytA2Ks5Xzv+7kUaUq+EBFNQw9Qec63lcMJVuXVWczjL16nKW1EzzV515ag+OWL46z3lEPForDhufw0VtFnNmaX68jkO0mp01eLrHApc1llN2Y/U8GBXfNNazN4+Kom4H+z/AO+wJr8EsKMMUczCdQ3APgd9uVI0hzXw/Z3M=" # GITHUB_API_KEY
  13. addons:
  14. apt:
  15. packages:
  16. - haveged
  17. install:
  18. - curl -o $HOME/.m2/settings.xml https://gist.githubusercontent.com/cryptobot/cf5fbd909c4782aaeeeb7c7f4a1a43da/raw/e60ee486e34ee0c79f89f947abe2c83b4290c6bb/settings.xml
  19. - mvn -fmain/pom.xml clean install -DskipTests org.codehaus.mojo:versions-maven-plugin:help dependency:go-offline -Pcoverage,release # "clean install" needed until we can exclude artifacts currently in the reactor, see https://maven.apache.org/plugins/maven-dependency-plugin/go-offline-mojo.html#excludeReactor and https://issues.apache.org/jira/browse/MDEP-568
  20. script:
  21. - mvn --update-snapshots -fmain/pom.xml clean test verify -Pcoverage
  22. after_success:
  23. - curl -o ~/codacy-coverage-reporter.jar https://oss.sonatype.org/service/local/repositories/releases/content/com/codacy/codacy-coverage-reporter/4.0.2/codacy-coverage-reporter-4.0.2-assembly.jar
  24. - $JAVA_HOME/bin/java -jar ~/codacy-coverage-reporter.jar report -l Java -r main/commons/target/site/jacoco/jacoco.xml --partial
  25. - $JAVA_HOME/bin/java -jar ~/codacy-coverage-reporter.jar report -l Java -r main/keychain/target/site/jacoco/jacoco.xml --partial
  26. - $JAVA_HOME/bin/java -jar ~/codacy-coverage-reporter.jar report -l Java -r main/ui/target/site/jacoco/jacoco.xml --partial
  27. - $JAVA_HOME/bin/java -jar ~/codacy-coverage-reporter.jar report -l Java -r main/launcher/target/site/jacoco/jacoco.xml --partial
  28. - $JAVA_HOME/bin/java -jar ~/codacy-coverage-reporter.jar final
  29. before_deploy:
  30. - |
  31. if [[ -n "$TRAVIS_TAG" ]]; then
  32. mvn -fmain/pom.xml org.codehaus.mojo:versions-maven-plugin:set -DnewVersion=$TRAVIS_TAG
  33. elif [[ $TRAVIS_BRANCH == "develop" ]] && [[ $TRAVIS_PULL_REQUEST == "false" ]]; then
  34. mvn -fmain/pom.xml org.codehaus.mojo:versions-maven-plugin:set -DnewVersion=SNAPSHOT-$(echo $TRAVIS_COMMIT | head -c7)
  35. fi
  36. - mvn -fmain/pom.xml clean package -Prelease -DskipTests
  37. deploy:
  38. - provider: script # SNAPSHOTS
  39. skip_cleanup: true
  40. script: >-
  41. curl -T main/buildkit/target/buildkit-linux.zip
  42. -u cryptobot:${BINTRAY_API_KEY}
  43. -H "X-Bintray-Package:buildkit"
  44. -H "X-Bintray-Version:continuous"
  45. -H "X-Bintray-Override:1"
  46. -H "X-Bintray-Publish:1"
  47. https://api.bintray.com/content/cryptomator/cryptomator/buildkit-linux-continuous.zip
  48. on:
  49. repo: cryptomator/cryptomator
  50. branch: develop
  51. condition: $TRAVIS_TAG = ''
  52. - provider: script
  53. skip_cleanup: true
  54. script: >-
  55. curl -T main/buildkit/target/buildkit-mac.zip
  56. -u cryptobot:${BINTRAY_API_KEY}
  57. -H "X-Bintray-Package:buildkit"
  58. -H "X-Bintray-Version:continuous"
  59. -H "X-Bintray-Override:1"
  60. -H "X-Bintray-Publish:1"
  61. https://api.bintray.com/content/cryptomator/cryptomator/buildkit-mac-continuous.zip
  62. on:
  63. repo: cryptomator/cryptomator
  64. branch: develop
  65. condition: $TRAVIS_TAG = ''
  66. - provider: script
  67. skip_cleanup: true
  68. script: >-
  69. curl -T main/buildkit/target/buildkit-win.zip
  70. -u cryptobot:${BINTRAY_API_KEY}
  71. -H "X-Bintray-Package:buildkit"
  72. -H "X-Bintray-Version:continuous"
  73. -H "X-Bintray-Override:1"
  74. -H "X-Bintray-Publish:1"
  75. https://api.bintray.com/content/cryptomator/cryptomator/buildkit-win-continuous.zip
  76. on:
  77. repo: cryptomator/cryptomator
  78. branch: develop
  79. condition: $TRAVIS_TAG = ''
  80. - provider: script # RELEASE
  81. skip_cleanup: true
  82. script: >-
  83. curl -T main/buildkit/target/buildkit-linux.zip
  84. -u cryptobot:${BINTRAY_API_KEY}
  85. -H "X-Bintray-Package:buildkit"
  86. -H "X-Bintray-Version:${TRAVIS_TAG}"
  87. -H "X-Bintray-Override:1"
  88. -H "X-Bintray-Publish:1"
  89. https://api.bintray.com/content/cryptomator/cryptomator/buildkit-linux-${TRAVIS_TAG}.zip
  90. on:
  91. repo: cryptomator/cryptomator
  92. tags: true
  93. - provider: script
  94. skip_cleanup: true
  95. script: >-
  96. curl -T main/buildkit/target/buildkit-mac.zip
  97. -u cryptobot:${BINTRAY_API_KEY}
  98. -H "X-Bintray-Package:buildkit"
  99. -H "X-Bintray-Version:${TRAVIS_TAG}"
  100. -H "X-Bintray-Override:1"
  101. -H "X-Bintray-Publish:1"
  102. https://api.bintray.com/content/cryptomator/cryptomator/buildkit-mac-${TRAVIS_TAG}.zip
  103. on:
  104. repo: cryptomator/cryptomator
  105. tags: true
  106. - provider: script
  107. skip_cleanup: true
  108. script: >-
  109. curl -T main/buildkit/target/buildkit-win.zip
  110. -u cryptobot:${BINTRAY_API_KEY}
  111. -H "X-Bintray-Package:buildkit"
  112. -H "X-Bintray-Version:${TRAVIS_TAG}"
  113. -H "X-Bintray-Override:1"
  114. -H "X-Bintray-Publish:1"
  115. https://api.bintray.com/content/cryptomator/cryptomator/buildkit-win-${TRAVIS_TAG}.zip
  116. on:
  117. repo: cryptomator/cryptomator
  118. tags: true