build.yml 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  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. - name: Download buildkit-linux.zip
  60. uses: actions/download-artifact@v1
  61. with:
  62. name: buildkit-linux.zip
  63. path: .
  64. - name: Download buildkit-mac.zip
  65. uses: actions/download-artifact@v1
  66. with:
  67. name: buildkit-mac.zip
  68. path: .
  69. - name: Download buildkit-win.zip
  70. uses: actions/download-artifact@v1
  71. with:
  72. name: buildkit-win.zip
  73. path: .
  74. - name: Create Release
  75. id: create_release
  76. uses: actions/create-release@v1
  77. env:
  78. GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
  79. with:
  80. tag_name: ${{ github.ref }}
  81. release_name: ${{ github.ref }}
  82. body: |
  83. :construction: Work in Progress
  84. TODO:
  85. * [ ] add Linux appimage, zsync file and signature file
  86. * [ ] add Windows installer and signature file
  87. * [ ] add MacOs disk image and signature file
  88. ## What's new
  89. ## Bugfixes
  90. ## Misc
  91. ---
  92. :scroll: A complete list of closed issues is available [here](LINK)
  93. draft: true
  94. prerelease: false
  95. - name: Upload buildkit-linux.zip to GitHub Releases
  96. uses: actions/upload-release-asset@v1.0.1
  97. env:
  98. GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
  99. with:
  100. upload_url: ${{ steps.create_release.outputs.upload_url }}
  101. asset_path: buildkit-linux.zip
  102. asset_name: buildkit-linux.zip
  103. asset_content_type: application/zip
  104. - name: Upload buildkit-mac.zip to GitHub Releases
  105. uses: actions/upload-release-asset@v1.0.1
  106. env:
  107. GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
  108. with:
  109. upload_url: ${{ steps.create_release.outputs.upload_url }}
  110. asset_path: buildkit-mac.zip
  111. asset_name: buildkit-mac.zip
  112. asset_content_type: application/zip
  113. - name: Upload buildkit-win.zip to GitHub Releases
  114. uses: actions/upload-release-asset@v1.0.1
  115. env:
  116. GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
  117. with:
  118. upload_url: ${{ steps.create_release.outputs.upload_url }}
  119. asset_path: buildkit-win.zip
  120. asset_name: buildkit-win.zip
  121. asset_content_type: application/zip