Skip to content

Commit

Permalink
Update build-and-analyse.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
th-schwarz authored Nov 15, 2024
1 parent aee6a8a commit 34b055d
Showing 1 changed file with 3 additions and 12 deletions.
15 changes: 3 additions & 12 deletions .github/workflows/build-and-analyse.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 17 for x64
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'corretto'
architecture: x64
cache: maven
- name: Build with Maven
run: mvn -DtestClasspath=src/test/ verify
Expand All @@ -33,12 +32,11 @@ jobs:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- name: Set up JDK 17 for X64
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
distribution: 'corretto'
java-version: '17'
architecture: x64
overwrite-settings: false
cache: maven
- name: Cache SonarCloud packages
Expand All @@ -47,12 +45,6 @@ jobs:
path: ~/.sonar/cache
key: ${{ runner.os }}-sonar
restore-keys: ${{ runner.os }}-sonar
- name: Cache Maven packages
uses: actions/cache@v4
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
- name: Build and analyze
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
Expand All @@ -66,12 +58,11 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up JDK 17 for x64
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'corretto'
architecture: x64
cache: maven
- name: Install dependencies
run: mvn install -Dmaven.javadoc.skip=true -B -V
Expand Down

0 comments on commit 34b055d

Please sign in to comment.