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
4 changes: 4 additions & 0 deletions .github/workflows/mandrel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ jobs:
name: "Q main M 23.0 EA"
uses: graalvm/mandrel/.github/workflows/base.yml@default
with:
build-type: "mandrel-source-nolocalmvn"
quarkus-version: "main"
repo: ${{ github.repository }}
version: ${{ github.ref }}
Expand All @@ -40,6 +41,7 @@ jobs:
name: "Q main M 23.0 windows EA"
uses: graalvm/mandrel/.github/workflows/base-windows.yml@default
with:
build-type: "mandrel-source-nolocalmvn"
quarkus-version: "main"
repo: ${{ github.repository }}
version: ${{ github.ref }}
Expand All @@ -49,6 +51,7 @@ jobs:
name: "Q main M 23.0 EA Java 20"
uses: graalvm/mandrel/.github/workflows/base.yml@default
with:
build-type: "mandrel-source-nolocalmvn"
quarkus-version: "main"
repo: ${{ github.repository }}
version: ${{ github.ref }}
Expand All @@ -58,6 +61,7 @@ jobs:
name: "Q main M 23.0 windows EA Java 20"
uses: graalvm/mandrel/.github/workflows/base-windows.yml@default
with:
build-type: "mandrel-source-nolocalmvn"
quarkus-version: "main"
repo: ${{ github.repository }}
version: ${{ github.ref }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,8 @@ public static JfrManager get() {
public RuntimeSupport.Hook startupHook() {
return isFirstIsolate -> {
parseFlightRecorderLogging(SubstrateOptions.FlightRecorderLogging.getValue());
periodicEventSetup();
if (isJFREnabled()) {
periodicEventSetup();
initRecording();
}
};
Expand Down