Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
scottfrederick committed May 22, 2024
1 parent cdffbda commit 8af922c
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/actions/print-jvm-thread-dumps/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ runs:
shell: bash
run: |
for jvm_pid in $(jps -q -J-XX:+PerfDisableSharedMem); do
jcmd $java_pid Thread.print
jcmd $jvm_pid Thread.print
done
- if: ${{ runner.os == 'Windows' }}
shell: powershell
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/run-paketo-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,6 @@ jobs:
shell: bash
run: |
./gradlew --no-daemon :spring-boot-system-tests:spring-boot-image-tests:systemTest --tests "org.springframework.boot.image.paketo.PaketoBuilderTests.executableJarApp"
- name: Print JVM Thread Dumps When Cancelled
uses: ./.github/actions/print-jvm-thread-dumps
if: cancelled()
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ bootJar {
}
}

//tasks.named('bootBuildImage') {
// builder = "paketobuildpacks/builder-jammy-buildpackless-tiny"
// buildpacks = [ "gcr.io/paketo-buildpacks/java" ]
//}
tasks.named('bootBuildImage') {
builder = "paketobuildpacks/builder-jammy-buildpackless-tiny"
buildpacks = [ "gcr.io/paketo-buildpacks/java" ]
}

0 comments on commit 8af922c

Please sign in to comment.