build.yml 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  1. name: Build
  2. on:
  3. [push]
  4. jobs:
  5. build:
  6. name: Build and Test
  7. runs-on: ubuntu-latest
  8. if: "!contains(github.event.head_commit.message, '[ci skip]') && !contains(github.event.head_commit.message, '[skip ci]')"
  9. steps:
  10. - uses: actions/checkout@v2
  11. - uses: actions/setup-java@v1
  12. with:
  13. java-version: 16
  14. - uses: actions/cache@v1
  15. with:
  16. path: ~/.m2/repository
  17. key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
  18. restore-keys: |
  19. ${{ runner.os }}-maven-
  20. - name: Ensure to use tagged version
  21. run: mvn versions:set -DnewVersion=${GITHUB_REF##*/} # use shell parameter expansion to strip of 'refs/tags'
  22. if: startsWith(github.ref, 'refs/tags/')
  23. - name: Build and Test
  24. run: mvn -B clean install jacoco:report -Pcoverage,dependency-check
  25. - name: Upload code coverage report
  26. id: codacyCoverageReporter
  27. run: bash <(curl -Ls https://coverage.codacy.com/get.sh)
  28. env:
  29. CODACY_PROJECT_TOKEN: ${{ secrets.CODACY_PROJECT_TOKEN }}
  30. continue-on-error: true
  31. ### TODO: move to matrix build:
  32. - name: Assemble buildkit-linux.zip
  33. run: mvn -B clean package -DskipTests -Plinux
  34. - name: Upload buildkit-linux.zip
  35. uses: actions/upload-artifact@v1
  36. with:
  37. name: buildkit-linux.zip
  38. path: target/buildkit-linux.zip
  39. - name: Assemble buildkit-mac.zip
  40. run: mvn -B clean package -DskipTests -Pmac
  41. - name: Upload buildkit-mac.zip
  42. uses: actions/upload-artifact@v1
  43. with:
  44. name: buildkit-mac.zip
  45. path: target/buildkit-mac.zip
  46. - name: Assemble buildkit-win.zip
  47. run: mvn -B clean package -DskipTests -Pwindows
  48. - name: Upload buildkit-win.zip
  49. uses: actions/upload-artifact@v1
  50. with:
  51. name: buildkit-win.zip
  52. path: target/buildkit-win.zip
  53. release:
  54. name: Draft a Release on GitHub Releases
  55. runs-on: ubuntu-latest
  56. needs: build
  57. if: startsWith(github.ref, 'refs/tags/') && github.repository == 'cryptomator/cryptomator'
  58. steps:
  59. - uses: actions/checkout@v2
  60. - name: Download buildkit-linux.zip
  61. uses: actions/download-artifact@v1
  62. with:
  63. name: buildkit-linux.zip
  64. path: .
  65. - name: Download buildkit-mac.zip
  66. uses: actions/download-artifact@v1
  67. with:
  68. name: buildkit-mac.zip
  69. path: .
  70. - name: Download buildkit-win.zip
  71. uses: actions/download-artifact@v1
  72. with:
  73. name: buildkit-win.zip
  74. path: .
  75. - name: Create tarball
  76. run: git archive --prefix="cryptomator-${{ github.ref }}/" -o "cryptomator-${{ github.ref }}.tar.gz" ${{ github.ref }}
  77. - name: Sign tarball with key 615D449FE6E6A235
  78. run: |
  79. echo "${GPG_PRIVATE_KEY}" | gpg --batch --quiet --import
  80. echo "${GPG_PASSPHRASE}" | gpg --batch --quiet --passphrase-fd 0 --pinentry-mode loopback -u 615D449FE6E6A235 --detach-sign -a "cryptomator-${{ github.ref }}.tar.gz"
  81. env:
  82. GPG_PRIVATE_KEY: ${{ secrets.RELEASES_GPG_PRIVATE_KEY }}
  83. GPG_PASSPHRASE: ${{ secrets.RELEASES_GPG_PASSPHRASE }}
  84. - name: Create Release
  85. id: create_release
  86. uses: actions/create-release@v1
  87. env:
  88. GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
  89. with:
  90. tag_name: ${{ github.ref }}
  91. release_name: ${{ github.ref }}
  92. body: |
  93. :construction: Work in Progress
  94. TODO:
  95. * [ ] add Linux appimage, zsync file and signature file
  96. * [ ] add Windows installer and signature file
  97. * [ ] add MacOs disk image and signature file
  98. ## What's new
  99. ## Bugfixes
  100. ## Misc
  101. ---
  102. :scroll: A complete list of closed issues is available [here](LINK)
  103. draft: true
  104. prerelease: false
  105. - name: Upload buildkit-linux.zip to GitHub Releases
  106. uses: actions/upload-release-asset@v1.0.1
  107. env:
  108. GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
  109. with:
  110. upload_url: ${{ steps.create_release.outputs.upload_url }}
  111. asset_path: buildkit-linux.zip
  112. asset_name: buildkit-linux.zip
  113. asset_content_type: application/zip
  114. - name: Upload buildkit-mac.zip to GitHub Releases
  115. uses: actions/upload-release-asset@v1.0.1
  116. env:
  117. GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
  118. with:
  119. upload_url: ${{ steps.create_release.outputs.upload_url }}
  120. asset_path: buildkit-mac.zip
  121. asset_name: buildkit-mac.zip
  122. asset_content_type: application/zip
  123. - name: Upload buildkit-win.zip to GitHub Releases
  124. uses: actions/upload-release-asset@v1.0.1
  125. env:
  126. GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
  127. with:
  128. upload_url: ${{ steps.create_release.outputs.upload_url }}
  129. asset_path: buildkit-win.zip
  130. asset_name: buildkit-win.zip
  131. asset_content_type: application/zip
  132. - name: Upload tarball signature to GitHub Releases
  133. uses: actions/upload-release-asset@v1.0.1
  134. env:
  135. GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
  136. with:
  137. upload_url: ${{ steps.create_release.outputs.upload_url }}
  138. asset_path: "cryptomator-${{ github.ref }}.tar.gz.asc"
  139. asset_name: "cryptomator-${{ github.ref }}.tar.gz.asc"
  140. asset_content_type: application/octet-stream