Removed the Apache license #1368
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# SPDX-FileCopyrightText: 2022 Alliander N.V. | |
# | |
# SPDX-License-Identifier: Apache-2.0 | |
name: SonarCloud Analysis | |
on: | |
push: | |
branches: | |
- '**' | |
pull_request: | |
branches: | |
- 'main' | |
- 'develop' | |
pull_request_target: | |
branches: | |
- 'main' | |
- 'develop' | |
jobs: | |
build: | |
name: SonarCloud | |
runs-on: ubuntu-latest | |
timeout-minutes: 15 | |
if: ${{ (github.event_name != 'pull_request_target' && github.actor != 'dependabot[bot]') || (github.actor == 'dependabot[bot]' && github.event_name == 'pull_request_target') }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
submodules: 'true' | |
- name: Cache SonarCloud packages | |
uses: actions/cache@v3 | |
with: | |
path: ~/.sonar/cache | |
key: ${{ runner.os }}-sonar | |
restore-keys: ${{ runner.os }}-sonar | |
- name: Cache Maven packages | |
uses: actions/cache@v3 | |
with: | |
path: ~/.m2 | |
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} | |
restore-keys: ${{ runner.os }}-m2 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'zulu' | |
java-version: '17' | |
- name: Set Common Sonar Variables | |
id: sonar_env | |
run: | | |
echo "##[set-output name=sonar_opts;]$(echo -Dsonar.host.url=https://sonarcloud.io \ | |
-Dsonar.projectKey=com-pas_compas-scl-validator \ | |
-Dsonar.organization=com-pas )" | |
- name: Create custom Maven Settings.xml | |
uses: whelk-io/maven-settings-xml-action@v21 | |
with: | |
output_file: custom_maven_settings.xml | |
servers: '[{ "id": "github-packages-compas", "username": "OWNER", "password": "${{ secrets.GITHUB_TOKEN }}" }]' | |
- name: Build and analyze (Pull Request) | |
if: ${{ github.event_name == 'pull_request' || (github.actor == 'dependabot[bot]' && github.event_name == 'pull_request_target') }} | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | |
run: | | |
./mvnw -B -s custom_maven_settings.xml -Psonar \ | |
${{ steps.sonar_env.outputs.sonar_opts }} \ | |
-Dsonar.pullrequest.branch=${{ github.ref_name }} \ | |
-Dsonar.pullrequest.key=${{ github.event.pull_request.number }} \ | |
-Dsonar.pullrequest.base=${{ github.base_ref }} \ | |
-Dsonar.scm.revision=${{ github.event.pull_request.head.sha }} \ | |
clean verify org.sonarsource.scanner.maven:sonar-maven-plugin:sonar | |
- name: Build and analyze (Push) | |
if: ${{ github.event_name == 'push' }} | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | |
run: | | |
./mvnw -B -s custom_maven_settings.xml -Psonar \ | |
${{ steps.sonar_env.outputs.sonar_opts }} \ | |
-Dsonar.branch.name=${{ github.ref_name }} \ | |
clean verify org.sonarsource.scanner.maven:sonar-maven-plugin:sonar |