Skip to content
Open
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
12 changes: 12 additions & 0 deletions .github/workflows/maven-build-caching-samples-verification.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,12 @@ jobs:
goals: ${{ env.GOALS }}
args: ${{ env.ARGS }}
failIfNotFullyCacheable: true
- name: Publish .data for experiment 1
uses: actions/upload-artifact@v5
if: failure()
with:
path: develocity-maven-build-validation/.data/01-validate-local-build-caching-same-location/latest/
name: 01-validate-local-build-caching-same-location-data-dir
- name: Run experiment 2
uses: gradle/develocity-build-validation-scripts/.github/actions/maven/experiment-2@actions-stable
with:
Expand All @@ -59,3 +65,9 @@ jobs:
goals: ${{ env.GOALS }}
args: ${{ env.ARGS }}
failIfNotFullyCacheable: true
- name: Publish .data for experiment 2
uses: actions/upload-artifact@v5
if: failure()
with:
path: develocity-maven-build-validation/.data/02-validate-local-build-caching-different-locations/latest/
name: 02-validate-local-build-caching-different-locations-data-dir
1 change: 1 addition & 0 deletions build-caching-maven-samples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
<module>kotlin-project</module>
<module>pmd-project</module>
<module>protobuf-project</module>
<module>scala-project</module>
<module>spotbugs-project</module>
<module>spring-cloud-contract-project</module>

Expand Down
1 change: 1 addition & 0 deletions build-caching-maven-samples/scala-project/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Example configuration for making the `compile` and `testCompile` goals of the `scala-maven-plugin` cacheable.
Loading
Loading