-
Notifications
You must be signed in to change notification settings - Fork 4
54 lines (54 loc) · 2.27 KB
/
build.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
name: SonarCloud
on:
push:
branches:
- master
pull_request:
types: [opened, synchronize, reopened]
jobs:
build:
name: Build and analyze
runs-on: ubuntu-latest
steps:
- uses: s4u/[email protected]
with:
checkout-fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
java-version: 21
java-distribution: 'corretto'
cache-path-add: ~/.sonar/cache
cache-prefix: ${{ runner.os }}-sonar
maven-version: 3.9.4
- name: maven-settings-xml-action
uses: whelk-io/maven-settings-xml-action@v21
with:
repositories: '[
{ "id": "spring-milestone", "url": "https://repo.spring.io/milestone/"},
{ "id": "oss-sonatype", "url": "https://oss.sonatype.org/service/local/repositories/releases/content/"}
]'
plugin_repositories: '[{ "id": "spring-milestone", "url": "https://repo.spring.io/milestone/"}]'
active_profiles: '["github"]'
- name: Extract Maven project version
run: |
echo "RELEASE_VERSION=$(mvn help:evaluate -Dexpression=project.version -q -DforceStdout)" >> $GITHUB_ENV
- name: Show extracted Maven project version
run: |
echo "RELEASE_VERSION: ${{ env.RELEASE_VERSION}}"
- name: Build and analyze
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
run: mvn -B -e -V clean package jacoco:report org.sonarsource.scanner.maven:sonar-maven-plugin:sonar
-Dmaven.test.redirectTestOutputToFile=false
-Djava.net.preferIPv4Stack=true
-Dsurefire.useFile=false
-DbuildVersion=${{ env.RELEASE_VERSION }}
-Dskip-sonarsource-repo=true
-Pjacoco -Djacoco.includes="org.ligoj.app.plugin.id.*"
-Dsonar.projectKey="org.ligoj.plugin:plugin-id"
-Dsonar.javascript.exclusions="node_modules,dist"
-Dsonar.host.url="https://sonarcloud.io"
-Dsonar.organization=ligoj-github
-Dsonar.projectVersion=${{ steps.version.outputs.version }}
-Dmaven.javadoc.skip=true
-Dmaven.ut.reuseForks=true -Dmaven.it.reuseForks=false
-Djava.awt.headless=true