Skip to content

Commit

Permalink
fix build failure related to stale versions in the cache (#1449)
Browse files Browse the repository at this point in the history
  • Loading branch information
wind57 authored Sep 25, 2023
1 parent 4c5eecf commit 95c181b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/composites/pre-test-actions/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 95c181b

Please sign in to comment.