mirror of
https://github.com/cryptomator/cryptomator.git
synced 2026-04-17 16:16:52 -04:00
87 lines
2.8 KiB
YAML
87 lines
2.8 KiB
YAML
name: Build
|
|
|
|
on:
|
|
push:
|
|
paths:
|
|
- '.github/workflows/build.yml'
|
|
- 'pom.xml'
|
|
- 'src/**'
|
|
pull_request_target:
|
|
types: [labeled]
|
|
|
|
env:
|
|
JAVA_DIST: 'temurin'
|
|
JAVA_VERSION: 25
|
|
|
|
defaults:
|
|
run:
|
|
shell: bash
|
|
|
|
jobs:
|
|
test:
|
|
name: Compile and Test
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
|
- uses: actions/setup-java@be666c2fcd27ec809703dec50e508c2fdc7f6654 # v5.2.0
|
|
with:
|
|
distribution: ${{ env.JAVA_DIST }}
|
|
java-version: ${{ env.JAVA_VERSION }}
|
|
cache: 'maven'
|
|
- name: Cache SonarCloud packages
|
|
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
|
|
with:
|
|
path: ~/.sonar/cache
|
|
key: ${{ runner.os }}-sonar
|
|
restore-keys: ${{ runner.os }}-sonar
|
|
- name: Build and Test
|
|
run: >
|
|
xvfb-run
|
|
mvn -B verify
|
|
jacoco:report
|
|
org.sonarsource.scanner.maven:sonar-maven-plugin:sonar
|
|
-Pcoverage
|
|
-Dsonar.projectKey=cryptomator_cryptomator
|
|
-Dsonar.organization=cryptomator
|
|
-Dsonar.host.url=https://sonarcloud.io
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
|
|
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
|
|
- name: Draft a release
|
|
if: startsWith(github.ref, 'refs/tags/')
|
|
uses: softprops/action-gh-release@a06a81a03ee405af7f2048a818ed3f03bbf83c7b # v2.5.0
|
|
with:
|
|
draft: true
|
|
discussion_category_name: releases
|
|
token: ${{ secrets.CRYPTOBOT_RELEASE_TOKEN }}
|
|
generate_release_notes: true
|
|
body: |-
|
|
> [!NOTE]
|
|
> 🚧 Work in Progress 🚧
|
|
>
|
|
> Please be patient, the [builds are still running](https://github.com/cryptomator/cryptomator/actions). Binary packages can be found here in a few moments.
|
|
|
|
<!--REPLACE with auto-generated release notes (see below)
|
|
### What's New 🎉
|
|
### Bugfixes 🐛
|
|
### Other Changes 📎
|
|
END REPLACE-->
|
|
|
|
For a comprehensive view of changes, read the [CHANGELOG](https://github.com/cryptomator/cryptomator/blob/develop/CHANGELOG.md).
|
|
|
|
---
|
|
|
|
|
|
<!-- Don't forget to include the
|
|
💾 SHA-256 checksums of release artifacts:
|
|
```
|
|
```
|
|
-->
|
|
|
|
> [!TIP]
|
|
> You can verify the GPG signature of all assets using our public key: [`5811 7AFA 1F85 B3EE C154 677D 615D 449F E6E6 A235`](https://gist.github.com/cryptobot/211111cf092037490275f39d408f461a).
|
|
|
|
|
|
|
|
<!-- Auto-Generated Release Notes: -->
|