Build outputs

This commit is contained in:
Daz DeBoer 2022-06-04 23:12:30 -06:00
parent 3f2d9cde44
commit b400dc555d
No known key found for this signature in database
GPG key ID: DD6B9F0B06683D5D
4 changed files with 18 additions and 20 deletions

17
dist/main/index.js vendored
View file

@ -64967,6 +64967,7 @@ class GradleStateCache {
fs_1.default.appendFileSync(propertiesFile, 'org.gradle.daemon=false');
const initScriptFilenames = [
'build-result-capture.init.gradle',
'build-result-capture-service.plugin.groovy',
'project-root-capture.init.gradle',
'project-root-capture.plugin.groovy'
];
@ -65291,7 +65292,7 @@ class ConfigurationCacheEntryExtractor extends AbstractEntryExtractor {
});
}
getProjectRoots() {
const projectList = path_1.default.resolve(this.gradleUserHome, cache_base_1.PROJECT_ROOTS_FILE);
const projectList = path_1.default.resolve(process.env['RUNNER_TEMP'], cache_base_1.PROJECT_ROOTS_FILE);
if (!fs_1.default.existsSync(projectList)) {
core.info(`Missing project list file ${projectList}`);
return [];
@ -65559,7 +65560,7 @@ function isCacheDisabled() {
}
exports.isCacheDisabled = isCacheDisabled;
function isCacheReadOnly() {
return core.getBooleanInput(CACHE_READONLY_PARAMETER);
return !isCacheWriteOnly() && core.getBooleanInput(CACHE_READONLY_PARAMETER);
}
exports.isCacheReadOnly = isCacheReadOnly;
function isCacheWriteOnly() {
@ -66031,14 +66032,12 @@ function writeSummaryTable(results) {
core.summary.addRaw('\n');
}
function renderOutcome(result) {
const badgeUrl = result.buildFailed
? 'https://img.shields.io/badge/Build%20Scan%E2%84%A2-FAILED-red?logo=Gradle'
: 'https://img.shields.io/badge/Build%20Scan%E2%84%A2-SUCCESS-brightgreen?logo=Gradle';
const labelPart = result.buildScanUri ? 'Build%20Scan%E2%84%A2' : 'Build';
const outcomePart = result.buildFailed ? 'FAILED-red' : 'SUCCESS-brightgreen';
const badgeUrl = `https://img.shields.io/badge/${labelPart}-${outcomePart}?logo=Gradle`;
const badgeHtml = `<img src="${badgeUrl}" alt="Gradle Build">`;
if (result.buildScanUri) {
return `<a href="${result.buildScanUri}" rel="nofollow">${badgeHtml}</a>`;
}
return badgeHtml;
const targetUrl = result.buildScanUri ? result.buildScanUri : '#';
return `<a href="${targetUrl}" rel="nofollow">${badgeHtml}</a>`;
}

File diff suppressed because one or more lines are too long

17
dist/post/index.js vendored
View file

@ -64018,6 +64018,7 @@ class GradleStateCache {
fs_1.default.appendFileSync(propertiesFile, 'org.gradle.daemon=false');
const initScriptFilenames = [
'build-result-capture.init.gradle',
'build-result-capture-service.plugin.groovy',
'project-root-capture.init.gradle',
'project-root-capture.plugin.groovy'
];
@ -64342,7 +64343,7 @@ class ConfigurationCacheEntryExtractor extends AbstractEntryExtractor {
});
}
getProjectRoots() {
const projectList = path_1.default.resolve(this.gradleUserHome, cache_base_1.PROJECT_ROOTS_FILE);
const projectList = path_1.default.resolve(process.env['RUNNER_TEMP'], cache_base_1.PROJECT_ROOTS_FILE);
if (!fs_1.default.existsSync(projectList)) {
core.info(`Missing project list file ${projectList}`);
return [];
@ -64610,7 +64611,7 @@ function isCacheDisabled() {
}
exports.isCacheDisabled = isCacheDisabled;
function isCacheReadOnly() {
return core.getBooleanInput(CACHE_READONLY_PARAMETER);
return !isCacheWriteOnly() && core.getBooleanInput(CACHE_READONLY_PARAMETER);
}
exports.isCacheReadOnly = isCacheReadOnly;
function isCacheWriteOnly() {
@ -64951,14 +64952,12 @@ function writeSummaryTable(results) {
core.summary.addRaw('\n');
}
function renderOutcome(result) {
const badgeUrl = result.buildFailed
? 'https://img.shields.io/badge/Build%20Scan%E2%84%A2-FAILED-red?logo=Gradle'
: 'https://img.shields.io/badge/Build%20Scan%E2%84%A2-SUCCESS-brightgreen?logo=Gradle';
const labelPart = result.buildScanUri ? 'Build%20Scan%E2%84%A2' : 'Build';
const outcomePart = result.buildFailed ? 'FAILED-red' : 'SUCCESS-brightgreen';
const badgeUrl = `https://img.shields.io/badge/${labelPart}-${outcomePart}?logo=Gradle`;
const badgeHtml = `<img src="${badgeUrl}" alt="Gradle Build">`;
if (result.buildScanUri) {
return `<a href="${result.buildScanUri}" rel="nofollow">${badgeHtml}</a>`;
}
return badgeHtml;
const targetUrl = result.buildScanUri ? result.buildScanUri : '#';
return `<a href="${targetUrl}" rel="nofollow">${badgeHtml}</a>`;
}

File diff suppressed because one or more lines are too long