build.yml 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. name: Build
  2. on:
  3. push:
  4. pull_request_target:
  5. types: [labeled]
  6. env:
  7. JAVA_VERSION: 17
  8. defaults:
  9. run:
  10. shell: bash
  11. jobs:
  12. test:
  13. name: Compile and Test
  14. runs-on: ubuntu-latest
  15. if: "!contains(github.event.head_commit.message, '[ci skip]') && !contains(github.event.head_commit.message, '[skip ci]')"
  16. steps:
  17. - uses: actions/checkout@v2
  18. - uses: actions/setup-java@v2
  19. with:
  20. distribution: 'temurin'
  21. java-version: ${{ env.JAVA_VERSION }}
  22. cache: 'maven'
  23. - name: Cache SonarCloud packages
  24. uses: actions/cache@v2
  25. with:
  26. path: ~/.sonar/cache
  27. key: ${{ runner.os }}-sonar
  28. restore-keys: ${{ runner.os }}-sonar
  29. - name: Build and Test
  30. run: >
  31. mvn -B verify
  32. jacoco:report
  33. org.sonarsource.scanner.maven:sonar-maven-plugin:sonar
  34. -Pcoverage,dependency-check
  35. -Dsonar.projectKey=cryptomator_cryptomator
  36. -Dsonar.organization=cryptomator
  37. -Dsonar.host.url=https://sonarcloud.io
  38. env:
  39. GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
  40. SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
  41. - name: Upload code coverage report
  42. id: codacyCoverageReporter
  43. if: "github.event_name == 'push' || contains(github.event.pull_request.labels.*.name, 'pr:safe')"
  44. run: bash <(curl -Ls https://coverage.codacy.com/get.sh)
  45. env:
  46. CODACY_PROJECT_TOKEN: ${{ secrets.CODACY_PROJECT_TOKEN }}
  47. continue-on-error: true
  48. - name: Draft a release
  49. if: startsWith(github.ref, 'refs/tags/')
  50. uses: softprops/action-gh-release@v1
  51. with:
  52. draft: true
  53. discussion_category_name: releases
  54. token: ${{ secrets.CRYPTOBOT_RELEASE_TOKEN }}
  55. generate_release_notes: true
  56. body: |-
  57. :construction: Work in Progress
  58. ---