mirror of
https://github.com/graalvm/setup-graalvm.git
synced 2025-03-13 14:30:15 +08:00
change x scale for diagramm
This commit is contained in:
parent
33ed2184c9
commit
29cc8f4db7
16
dist/cleanup/index.js
generated
vendored
16
dist/cleanup/index.js
generated
vendored
@ -74531,20 +74531,20 @@ gantt
|
||||
axisFormat %s
|
||||
|
||||
section Code area
|
||||
${recentBranch} (${bytesToHuman(detailsRecent.code_area.bytes)}): active, 0, ${(detailsRecent.code_area.bytes / 10000000)}
|
||||
${baseBranch} (${bytesToHuman(detailsBase.code_area.bytes)}): 0, ${(detailsBase.code_area.bytes / 1000000)}
|
||||
${recentBranch} (${bytesToHuman(detailsRecent.code_area.bytes)}): active, 0, ${(detailsRecent.code_area.bytes / 1000000).toFixed(3)}
|
||||
${baseBranch} (${bytesToHuman(detailsBase.code_area.bytes)}): 0, ${(detailsBase.code_area.bytes / 1000000).toFixed(3)}
|
||||
|
||||
section Image heap
|
||||
${recentBranch} (${bytesToHuman(detailsRecent.image_heap.bytes)}): active, 0, ${(detailsRecent.image_heap.bytes / 1000000)}
|
||||
${baseBranch} (${bytesToHuman(detailsBase.image_heap.bytes)}): 0, ${(detailsBase.image_heap.bytes / 1000000)}
|
||||
${recentBranch} (${bytesToHuman(detailsRecent.image_heap.bytes)}): active, 0, ${(detailsRecent.image_heap.bytes / 1000000).toFixed(3)}
|
||||
${baseBranch} (${bytesToHuman(detailsBase.image_heap.bytes)}): 0, ${(detailsBase.image_heap.bytes / 1000000).toFixed(3)}
|
||||
|
||||
section Other data
|
||||
${recentBranch} (${bytesToHuman(otherBytesRecent)}): active, 0, ${(otherBytesRecent / 1000000)}
|
||||
${baseBranch} (${bytesToHuman(otherBytesBase)}): 0, ${(otherBytesBase / 1000000)}
|
||||
${recentBranch} (${bytesToHuman(otherBytesRecent)}): active, 0, ${(otherBytesRecent / 1000000).toFixed(3)}
|
||||
${baseBranch} (${bytesToHuman(otherBytesBase)}): 0, ${(otherBytesBase / 1000000).toFixed(3)}
|
||||
|
||||
section Total
|
||||
${recentBranch} (${bytesToHuman(detailsRecent.total_bytes)}) : active, 0, ${detailsRecent.total_bytes / 1000000}
|
||||
${baseBranch} (${bytesToHuman(detailsBase.total_bytes)}) : 0, ${(detailsBase.total_bytes / 1000000)}
|
||||
${recentBranch} (${bytesToHuman(detailsRecent.total_bytes)}) : active, 0, ${(detailsRecent.total_bytes / 1000000).toFixed(3)}
|
||||
${baseBranch} (${bytesToHuman(detailsBase.total_bytes)}) : 0, ${(detailsBase.total_bytes / 1000000).toFixed(3)}
|
||||
\`\`\`
|
||||
|
||||
<em>Report generated by <a href="https://github.com/marketplace/actions/github-action-for-graalvm" target="_blank">setup-graalvm</a>.</em>`;
|
||||
|
16
dist/main/index.js
generated
vendored
16
dist/main/index.js
generated
vendored
@ -74630,20 +74630,20 @@ gantt
|
||||
axisFormat %s
|
||||
|
||||
section Code area
|
||||
${recentBranch} (${bytesToHuman(detailsRecent.code_area.bytes)}): active, 0, ${(detailsRecent.code_area.bytes / 10000000)}
|
||||
${baseBranch} (${bytesToHuman(detailsBase.code_area.bytes)}): 0, ${(detailsBase.code_area.bytes / 1000000)}
|
||||
${recentBranch} (${bytesToHuman(detailsRecent.code_area.bytes)}): active, 0, ${(detailsRecent.code_area.bytes / 1000000).toFixed(3)}
|
||||
${baseBranch} (${bytesToHuman(detailsBase.code_area.bytes)}): 0, ${(detailsBase.code_area.bytes / 1000000).toFixed(3)}
|
||||
|
||||
section Image heap
|
||||
${recentBranch} (${bytesToHuman(detailsRecent.image_heap.bytes)}): active, 0, ${(detailsRecent.image_heap.bytes / 1000000)}
|
||||
${baseBranch} (${bytesToHuman(detailsBase.image_heap.bytes)}): 0, ${(detailsBase.image_heap.bytes / 1000000)}
|
||||
${recentBranch} (${bytesToHuman(detailsRecent.image_heap.bytes)}): active, 0, ${(detailsRecent.image_heap.bytes / 1000000).toFixed(3)}
|
||||
${baseBranch} (${bytesToHuman(detailsBase.image_heap.bytes)}): 0, ${(detailsBase.image_heap.bytes / 1000000).toFixed(3)}
|
||||
|
||||
section Other data
|
||||
${recentBranch} (${bytesToHuman(otherBytesRecent)}): active, 0, ${(otherBytesRecent / 1000000)}
|
||||
${baseBranch} (${bytesToHuman(otherBytesBase)}): 0, ${(otherBytesBase / 1000000)}
|
||||
${recentBranch} (${bytesToHuman(otherBytesRecent)}): active, 0, ${(otherBytesRecent / 1000000).toFixed(3)}
|
||||
${baseBranch} (${bytesToHuman(otherBytesBase)}): 0, ${(otherBytesBase / 1000000).toFixed(3)}
|
||||
|
||||
section Total
|
||||
${recentBranch} (${bytesToHuman(detailsRecent.total_bytes)}) : active, 0, ${detailsRecent.total_bytes / 1000000}
|
||||
${baseBranch} (${bytesToHuman(detailsBase.total_bytes)}) : 0, ${(detailsBase.total_bytes / 1000000)}
|
||||
${recentBranch} (${bytesToHuman(detailsRecent.total_bytes)}) : active, 0, ${(detailsRecent.total_bytes / 1000000).toFixed(3)}
|
||||
${baseBranch} (${bytesToHuman(detailsBase.total_bytes)}) : 0, ${(detailsBase.total_bytes / 1000000).toFixed(3)}
|
||||
\`\`\`
|
||||
|
||||
<em>Report generated by <a href="https://github.com/marketplace/actions/github-action-for-graalvm" target="_blank">setup-graalvm</a>.</em>`;
|
||||
|
@ -211,20 +211,20 @@ gantt
|
||||
axisFormat %s
|
||||
|
||||
section Code area
|
||||
${recentBranch} (${bytesToHuman(detailsRecent.code_area.bytes)}): active, 0, ${(detailsRecent.code_area.bytes/10000000)}
|
||||
${baseBranch} (${bytesToHuman(detailsBase.code_area.bytes)}): 0, ${(detailsBase.code_area.bytes/1000000)}
|
||||
${recentBranch} (${bytesToHuman(detailsRecent.code_area.bytes)}): active, 0, ${(detailsRecent.code_area.bytes/1000000).toFixed(3)}
|
||||
${baseBranch} (${bytesToHuman(detailsBase.code_area.bytes)}): 0, ${(detailsBase.code_area.bytes/1000000).toFixed(3)}
|
||||
|
||||
section Image heap
|
||||
${recentBranch} (${bytesToHuman(detailsRecent.image_heap.bytes)}): active, 0, ${(detailsRecent.image_heap.bytes/1000000)}
|
||||
${baseBranch} (${bytesToHuman(detailsBase.image_heap.bytes)}): 0, ${(detailsBase.image_heap.bytes/1000000)}
|
||||
${recentBranch} (${bytesToHuman(detailsRecent.image_heap.bytes)}): active, 0, ${(detailsRecent.image_heap.bytes/1000000).toFixed(3)}
|
||||
${baseBranch} (${bytesToHuman(detailsBase.image_heap.bytes)}): 0, ${(detailsBase.image_heap.bytes/1000000).toFixed(3)}
|
||||
|
||||
section Other data
|
||||
${recentBranch} (${bytesToHuman(otherBytesRecent)}): active, 0, ${(otherBytesRecent/1000000)}
|
||||
${baseBranch} (${bytesToHuman(otherBytesBase)}): 0, ${(otherBytesBase/1000000)}
|
||||
${recentBranch} (${bytesToHuman(otherBytesRecent)}): active, 0, ${(otherBytesRecent/1000000).toFixed(3)}
|
||||
${baseBranch} (${bytesToHuman(otherBytesBase)}): 0, ${(otherBytesBase/1000000).toFixed(3)}
|
||||
|
||||
section Total
|
||||
${recentBranch} (${bytesToHuman(detailsRecent.total_bytes)}) : active, 0, ${detailsRecent.total_bytes / 1000000}
|
||||
${baseBranch} (${bytesToHuman(detailsBase.total_bytes)}) : 0, ${(detailsBase.total_bytes / 1000000)}
|
||||
${recentBranch} (${bytesToHuman(detailsRecent.total_bytes)}) : active, 0, ${(detailsRecent.total_bytes / 1000000).toFixed(3)}
|
||||
${baseBranch} (${bytesToHuman(detailsBase.total_bytes)}) : 0, ${(detailsBase.total_bytes / 1000000).toFixed(3)}
|
||||
\`\`\`
|
||||
|
||||
<em>Report generated by <a href="https://github.com/marketplace/actions/github-action-for-graalvm" target="_blank">setup-graalvm</a>.</em>`
|
||||
|
Loading…
x
Reference in New Issue
Block a user