Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/actions/ecr-build-push/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ runs:
path: |
~/.gradle/caches
~/.gradle/wrapper
~/.gradle/build-cache
key: gradle-${{ runner.os }}-${{ hashFiles('**/*.gradle.kts', '**/gradle-wrapper.properties') }}
restore-keys: gradle-${{ runner.os }}-

Expand All @@ -84,7 +85,7 @@ runs:
run: |
MODULE="${{ inputs.module }}"
[[ "$MODULE" == ":" ]] && MODULE=""
./gradlew build "${MODULE}:jibDockerBuild"
./gradlew "${MODULE}:jibDockerBuild" --build-cache

- name: Tag Image
shell: bash
Expand Down
1 change: 1 addition & 0 deletions .github/actions/gradle-setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,6 @@ runs:
path: |
~/.gradle/caches
~/.gradle/wrapper
~/.gradle/build-cache
key: gradle-${{ runner.os }}-${{ hashFiles('**/*.gradle.kts', '**/gradle-wrapper.properties') }}
restore-keys: gradle-${{ runner.os }}-
2 changes: 1 addition & 1 deletion .github/workflows/jvm-post-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ jobs:
if: github.event_name == 'push'
run: |
echo "Running build and tests"
./gradlew build
./gradlew build --build-cache

# Runs in the same job so JaCoCo reports from the test step above are
# already on disk — no need to re-run tests.
Expand Down