123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- name: Build
- on:
- push:
- pull_request_target:
- types: [labeled]
- env:
- JAVA_VERSION: 17
- defaults:
- run:
- shell: bash
- jobs:
- test:
- name: Compile and Test
- runs-on: ubuntu-latest
- if: "!contains(github.event.head_commit.message, '[ci skip]') && !contains(github.event.head_commit.message, '[skip ci]')"
- steps:
- - uses: actions/checkout@v2
- - uses: actions/setup-java@v2
- with:
- distribution: 'temurin'
- java-version: ${{ env.JAVA_VERSION }}
- cache: 'maven'
- - name: Cache SonarCloud packages
- uses: actions/cache@v2
- 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,dependency-check
- -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@v1
- with:
- draft: true
- discussion_category_name: releases
- token: ${{ secrets.CRYPTOBOT_RELEASE_TOKEN }}
- generate_release_notes: true
- body: |-
- :construction: Work in Progress
-
- ---
|