mirror of
https://github.com/graalvm/setup-graalvm.git
synced 2025-03-14 06:50:10 +08:00
add logging for debugging
This commit is contained in:
parent
7e534b7e1c
commit
452871784e
6
dist/cleanup/index.js
generated
vendored
6
dist/cleanup/index.js
generated
vendored
@ -82600,9 +82600,9 @@ function getImageData(shas) {
|
||||
});
|
||||
const imageData = [];
|
||||
core.info(String(shas));
|
||||
for (const sha in shas) {
|
||||
core.info(sha);
|
||||
const blobTreeSha = yield getBlobTreeSha(octokit, context, sha);
|
||||
for (let i = 0; i < shas.length; i++) {
|
||||
core.info("reent sha: " + shas[i]);
|
||||
const blobTreeSha = yield getBlobTreeSha(octokit, context, shas[i]);
|
||||
const blobSha = yield getBlobSha(octokit, context, blobTreeSha);
|
||||
imageData.push(yield getBlobContent(octokit, context, blobSha));
|
||||
}
|
||||
|
6
dist/main/index.js
generated
vendored
6
dist/main/index.js
generated
vendored
@ -83676,9 +83676,9 @@ function getImageData(shas) {
|
||||
});
|
||||
const imageData = [];
|
||||
core.info(String(shas));
|
||||
for (const sha in shas) {
|
||||
core.info(sha);
|
||||
const blobTreeSha = yield getBlobTreeSha(octokit, context, sha);
|
||||
for (let i = 0; i < shas.length; i++) {
|
||||
core.info("reent sha: " + shas[i]);
|
||||
const blobTreeSha = yield getBlobTreeSha(octokit, context, shas[i]);
|
||||
const blobSha = yield getBlobSha(octokit, context, blobTreeSha);
|
||||
imageData.push(yield getBlobContent(octokit, context, blobSha));
|
||||
}
|
||||
|
@ -410,9 +410,9 @@ export async function getImageData(shas: string[]) {
|
||||
});
|
||||
const imageData = []
|
||||
core.info(String(shas))
|
||||
for (const sha in shas) {
|
||||
core.info(sha)
|
||||
const blobTreeSha = await getBlobTreeSha(octokit, context, sha)
|
||||
for (let i=0; i< shas.length; i++) {
|
||||
core.info("reent sha: " + shas[i])
|
||||
const blobTreeSha = await getBlobTreeSha(octokit, context, shas[i])
|
||||
const blobSha = await getBlobSha(octokit, context, blobTreeSha)
|
||||
imageData.push(await getBlobContent(octokit, context, blobSha))
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user