fix build failure related to stale versions in the cache (#1449)

This commit is contained in:
erabii
2023-09-25 11:12:25 +03:00
committed by GitHub
parent 4c5eecf133
commit 95c181b87c
2 changed files with 7 additions and 2 deletions

View File

@@ -4,13 +4,13 @@ runs:
using: "composite"
steps:
- name: run 'package' on the project
- name: run 'install' on the project
shell: bash
run: |
./mvnw install -B \
-Dskip.build.image=true \
-DskipTests -DskipITs \
-T 1C -q
-T 1C -U -q
- name: find all classpath entries
shell: bash

View File

@@ -22,6 +22,11 @@ runs:
- name: cache local maven repository
uses: ./.github/workflows/composites/cache
- name: build project
shell: bash
run: |
./mvnw clean install -Dskip.build.image=true -DskipITs -DskipTests -T1C -U -B -q
- name: build controllers project
uses: ./.github/workflows/composites/build-controllers-project