Skip to content

Commit 10d06b5

Browse files
committed
build: add back install phase on Github Actions full build
1 parent 694a948 commit 10d06b5

File tree

2 files changed

+3
-9
lines changed

2 files changed

+3
-9
lines changed

.github/workflows/full-build.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ jobs:
2121
java-version: ${{ matrix.java-version }}
2222
distribution: 'temurin'
2323
cache: maven
24+
- name: Install
25+
run: mvn clean install -DskipTests -q -P gradlePlugin
2426
- name: Build
2527
run: mvn -B package -P gradlePlugin
2628
env:
@@ -31,5 +33,5 @@ jobs:
3133
uses: mikepenz/action-junit-report@v5
3234
if: failure()
3335
with:
34-
check_name: Test ${{ matrix.os }} ${{ matrix.java-version }}
36+
check_name: Test ${{ matrix.os }} ${{ matrix.java-version }}
3537
report_paths: '*/target/*/TEST-*.xml'

.github/workflows/quick-build.yml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,6 @@ jobs:
2424
java-version: ${{ matrix.java_version }}
2525
distribution: 'temurin'
2626
cache: maven
27-
- name: Cache Maven repository
28-
uses: actions/cache@v4
29-
with:
30-
path: ~/.m2/repository
31-
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
32-
restore-keys: |
33-
${{ runner.os }}-maven-
34-
enableCrossOsArchive: true
3527
- name: Install
3628
run: mvn install -DskipTests -q -B
3729
env:

0 commit comments

Comments
 (0)