Build outputs

This commit is contained in:
Daz DeBoer 2022-06-20 20:18:17 -06:00
parent 4cb86e9712
commit d8b58e3519
No known key found for this signature in database
GPG key ID: DD6B9F0B06683D5D
4 changed files with 116 additions and 26 deletions

69
dist/main/index.js vendored
View file

@ -65405,8 +65405,9 @@ var __importStar = (this && this.__importStar) || function (mod) {
return result; return result;
}; };
Object.defineProperty(exports, "__esModule", ({ value: true })); Object.defineProperty(exports, "__esModule", ({ value: true }));
exports.logCachingReport = exports.CacheEntryListener = exports.CacheListener = void 0; exports.logCachingReport = exports.writeCachingReport = exports.CacheEntryListener = exports.CacheListener = void 0;
const core = __importStar(__nccwpck_require__(2186)); const core = __importStar(__nccwpck_require__(2186));
const cache = __importStar(__nccwpck_require__(7799));
class CacheListener { class CacheListener {
constructor() { constructor() {
this.cacheEntries = []; this.cacheEntries = [];
@ -65418,6 +65419,8 @@ class CacheListener {
return this.cacheEntries.every(x => !x.wasRequestedButNotRestored()); return this.cacheEntries.every(x => !x.wasRequestedButNotRestored());
} }
get cacheStatus() { get cacheStatus() {
if (!cache.isFeatureAvailable())
return 'not available';
if (this.isCacheDisabled) if (this.isCacheDisabled)
return 'disabled'; return 'disabled';
if (this.isCacheWriteOnly) if (this.isCacheWriteOnly)
@ -65486,7 +65489,7 @@ class CacheEntryListener {
} }
} }
exports.CacheEntryListener = CacheEntryListener; exports.CacheEntryListener = CacheEntryListener;
function logCachingReport(listener) { function writeCachingReport(listener) {
const entries = listener.cacheEntries; const entries = listener.cacheEntries;
core.summary.addRaw(`\n<details><summary><h4>Caching for gradle-build-action was ${listener.cacheStatus} - expand for details</h4></summary>\n`); core.summary.addRaw(`\n<details><summary><h4>Caching for gradle-build-action was ${listener.cacheStatus} - expand for details</h4></summary>\n`);
core.summary.addTable([ core.summary.addTable([
@ -65499,7 +65502,26 @@ function logCachingReport(listener) {
['Entries Saved', `${getCount(entries, e => e.savedSize)}`, `${getSize(entries, e => e.savedSize)}`] ['Entries Saved', `${getCount(entries, e => e.savedSize)}`, `${getSize(entries, e => e.savedSize)}`]
]); ]);
core.summary.addHeading('Cache Entry Details', 5); core.summary.addHeading('Cache Entry Details', 5);
const entryDetails = listener.cacheEntries const entryDetails = renderEntryDetails(listener);
core.summary.addRaw(`<pre>
${entryDetails}
</pre>
</details>
`);
}
exports.writeCachingReport = writeCachingReport;
function logCachingReport(listener) {
const entries = listener.cacheEntries;
core.startGroup(`Caching for gradle-build-action was ${listener.cacheStatus} - expand for details`);
core.info(`Entries Restored: ${getCount(entries, e => e.restoredSize)} (${getSize(entries, e => e.restoredSize)} Mb)`);
core.info(`Entries Saved : ${getCount(entries, e => e.savedSize)} (${getSize(entries, e => e.savedSize)} Mb)`);
core.info(`Cache Entry Details`);
core.info(renderEntryDetails(listener));
core.endGroup();
}
exports.logCachingReport = logCachingReport;
function renderEntryDetails(listener) {
return listener.cacheEntries
.map(entry => { .map(entry => {
var _a, _b, _c; var _a, _b, _c;
return `Entry: ${entry.entryName} return `Entry: ${entry.entryName}
@ -65513,13 +65535,7 @@ function logCachingReport(listener) {
`; `;
}) })
.join('---\n'); .join('---\n');
core.summary.addRaw(`<pre>
${entryDetails}
</pre>
</details>
`);
} }
exports.logCachingReport = logCachingReport;
function getRestoredMessage(entry, isCacheWriteOnly) { function getRestoredMessage(entry, isCacheWriteOnly) {
if (isCacheWriteOnly) { if (isCacheWriteOnly) {
return '(Entry not restored: cache is write-only)'; return '(Entry not restored: cache is write-only)';
@ -65623,6 +65639,9 @@ const CACHE_KEY_JOB_VAR = 'GRADLE_BUILD_ACTION_CACHE_KEY_JOB';
const CACHE_KEY_JOB_INSTANCE_VAR = 'GRADLE_BUILD_ACTION_CACHE_KEY_JOB_INSTANCE'; const CACHE_KEY_JOB_INSTANCE_VAR = 'GRADLE_BUILD_ACTION_CACHE_KEY_JOB_INSTANCE';
const CACHE_KEY_JOB_EXECUTION_VAR = 'GRADLE_BUILD_ACTION_CACHE_KEY_JOB_EXECUTION'; const CACHE_KEY_JOB_EXECUTION_VAR = 'GRADLE_BUILD_ACTION_CACHE_KEY_JOB_EXECUTION';
function isCacheDisabled() { function isCacheDisabled() {
if (!cache.isFeatureAvailable()) {
return true;
}
return core.getBooleanInput(CACHE_DISABLED_PARAMETER); return core.getBooleanInput(CACHE_DISABLED_PARAMETER);
} }
exports.isCacheDisabled = isCacheDisabled; exports.isCacheDisabled = isCacheDisabled;
@ -66073,7 +66092,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod }; return (mod && mod.__esModule) ? mod : { "default": mod };
}; };
Object.defineProperty(exports, "__esModule", ({ value: true })); Object.defineProperty(exports, "__esModule", ({ value: true }));
exports.loadBuildResults = exports.writeJobSummary = void 0; exports.loadBuildResults = exports.logJobSummary = exports.writeJobSummary = void 0;
const core = __importStar(__nccwpck_require__(2186)); const core = __importStar(__nccwpck_require__(2186));
const fs_1 = __importDefault(__nccwpck_require__(7147)); const fs_1 = __importDefault(__nccwpck_require__(7147));
const path_1 = __importDefault(__nccwpck_require__(1017)); const path_1 = __importDefault(__nccwpck_require__(1017));
@ -66087,11 +66106,23 @@ function writeJobSummary(buildResults, cacheListener) {
else { else {
writeSummaryTable(buildResults); writeSummaryTable(buildResults);
} }
(0, cache_reporting_1.logCachingReport)(cacheListener); (0, cache_reporting_1.writeCachingReport)(cacheListener);
yield core.summary.write(); yield core.summary.write();
}); });
} }
exports.writeJobSummary = writeJobSummary; exports.writeJobSummary = writeJobSummary;
function logJobSummary(buildResults, cacheListener) {
return __awaiter(this, void 0, void 0, function* () {
if (buildResults.length === 0) {
core.debug('No Gradle build results found. Summary table will not be logged.');
}
else {
logSummaryTable(buildResults);
}
(0, cache_reporting_1.logCachingReport)(cacheListener);
});
}
exports.logJobSummary = logJobSummary;
function loadBuildResults() { function loadBuildResults() {
const buildResultsDir = path_1.default.resolve(process.env['RUNNER_TEMP'], '.build-results'); const buildResultsDir = path_1.default.resolve(process.env['RUNNER_TEMP'], '.build-results');
if (!fs_1.default.existsSync(buildResultsDir)) { if (!fs_1.default.existsSync(buildResultsDir)) {
@ -66145,6 +66176,17 @@ function renderBuildScanBadge(outcomeText, outcomeColor, targetUrl) {
const badgeHtml = `<img src="${badgeUrl}" alt="Build Scan ${outcomeText}" />`; const badgeHtml = `<img src="${badgeUrl}" alt="Build Scan ${outcomeText}" />`;
return `<a href="${targetUrl}" rel="nofollow">${badgeHtml}</a>`; return `<a href="${targetUrl}" rel="nofollow">${badgeHtml}</a>`;
} }
function logSummaryTable(results) {
core.info('============================');
core.info('Gradle Builds');
core.info('----------------------------');
core.info('Root Project | Requested Tasks | Gradle Version | Build Outcome | Build Scan™');
core.info('----------------------------');
for (const result of results) {
core.info(`${result.rootProjectName} | ${result.requestedTasks} | ${result.gradleVersion} | ${result.buildFailed ? 'FAILED' : 'SUCCESS'} | ${result.buildScanFailed ? 'Publish failed' : result.buildScanUri}`);
}
core.info('============================');
}
/***/ }), /***/ }),
@ -66537,7 +66579,10 @@ function complete() {
const gradleUserHome = core.getState(GRADLE_USER_HOME); const gradleUserHome = core.getState(GRADLE_USER_HOME);
yield caches.save(gradleUserHome, cacheListener); yield caches.save(gradleUserHome, cacheListener);
if (shouldGenerateJobSummary()) { if (shouldGenerateJobSummary()) {
(0, job_summary_1.writeJobSummary)(buildResults, cacheListener); yield (0, job_summary_1.writeJobSummary)(buildResults, cacheListener);
}
else {
(0, job_summary_1.logJobSummary)(buildResults, cacheListener);
} }
}); });
} }

File diff suppressed because one or more lines are too long

69
dist/post/index.js vendored
View file

@ -64456,8 +64456,9 @@ var __importStar = (this && this.__importStar) || function (mod) {
return result; return result;
}; };
Object.defineProperty(exports, "__esModule", ({ value: true })); Object.defineProperty(exports, "__esModule", ({ value: true }));
exports.logCachingReport = exports.CacheEntryListener = exports.CacheListener = void 0; exports.logCachingReport = exports.writeCachingReport = exports.CacheEntryListener = exports.CacheListener = void 0;
const core = __importStar(__nccwpck_require__(2186)); const core = __importStar(__nccwpck_require__(2186));
const cache = __importStar(__nccwpck_require__(7799));
class CacheListener { class CacheListener {
constructor() { constructor() {
this.cacheEntries = []; this.cacheEntries = [];
@ -64469,6 +64470,8 @@ class CacheListener {
return this.cacheEntries.every(x => !x.wasRequestedButNotRestored()); return this.cacheEntries.every(x => !x.wasRequestedButNotRestored());
} }
get cacheStatus() { get cacheStatus() {
if (!cache.isFeatureAvailable())
return 'not available';
if (this.isCacheDisabled) if (this.isCacheDisabled)
return 'disabled'; return 'disabled';
if (this.isCacheWriteOnly) if (this.isCacheWriteOnly)
@ -64537,7 +64540,7 @@ class CacheEntryListener {
} }
} }
exports.CacheEntryListener = CacheEntryListener; exports.CacheEntryListener = CacheEntryListener;
function logCachingReport(listener) { function writeCachingReport(listener) {
const entries = listener.cacheEntries; const entries = listener.cacheEntries;
core.summary.addRaw(`\n<details><summary><h4>Caching for gradle-build-action was ${listener.cacheStatus} - expand for details</h4></summary>\n`); core.summary.addRaw(`\n<details><summary><h4>Caching for gradle-build-action was ${listener.cacheStatus} - expand for details</h4></summary>\n`);
core.summary.addTable([ core.summary.addTable([
@ -64550,7 +64553,26 @@ function logCachingReport(listener) {
['Entries Saved', `${getCount(entries, e => e.savedSize)}`, `${getSize(entries, e => e.savedSize)}`] ['Entries Saved', `${getCount(entries, e => e.savedSize)}`, `${getSize(entries, e => e.savedSize)}`]
]); ]);
core.summary.addHeading('Cache Entry Details', 5); core.summary.addHeading('Cache Entry Details', 5);
const entryDetails = listener.cacheEntries const entryDetails = renderEntryDetails(listener);
core.summary.addRaw(`<pre>
${entryDetails}
</pre>
</details>
`);
}
exports.writeCachingReport = writeCachingReport;
function logCachingReport(listener) {
const entries = listener.cacheEntries;
core.startGroup(`Caching for gradle-build-action was ${listener.cacheStatus} - expand for details`);
core.info(`Entries Restored: ${getCount(entries, e => e.restoredSize)} (${getSize(entries, e => e.restoredSize)} Mb)`);
core.info(`Entries Saved : ${getCount(entries, e => e.savedSize)} (${getSize(entries, e => e.savedSize)} Mb)`);
core.info(`Cache Entry Details`);
core.info(renderEntryDetails(listener));
core.endGroup();
}
exports.logCachingReport = logCachingReport;
function renderEntryDetails(listener) {
return listener.cacheEntries
.map(entry => { .map(entry => {
var _a, _b, _c; var _a, _b, _c;
return `Entry: ${entry.entryName} return `Entry: ${entry.entryName}
@ -64564,13 +64586,7 @@ function logCachingReport(listener) {
`; `;
}) })
.join('---\n'); .join('---\n');
core.summary.addRaw(`<pre>
${entryDetails}
</pre>
</details>
`);
} }
exports.logCachingReport = logCachingReport;
function getRestoredMessage(entry, isCacheWriteOnly) { function getRestoredMessage(entry, isCacheWriteOnly) {
if (isCacheWriteOnly) { if (isCacheWriteOnly) {
return '(Entry not restored: cache is write-only)'; return '(Entry not restored: cache is write-only)';
@ -64674,6 +64690,9 @@ const CACHE_KEY_JOB_VAR = 'GRADLE_BUILD_ACTION_CACHE_KEY_JOB';
const CACHE_KEY_JOB_INSTANCE_VAR = 'GRADLE_BUILD_ACTION_CACHE_KEY_JOB_INSTANCE'; const CACHE_KEY_JOB_INSTANCE_VAR = 'GRADLE_BUILD_ACTION_CACHE_KEY_JOB_INSTANCE';
const CACHE_KEY_JOB_EXECUTION_VAR = 'GRADLE_BUILD_ACTION_CACHE_KEY_JOB_EXECUTION'; const CACHE_KEY_JOB_EXECUTION_VAR = 'GRADLE_BUILD_ACTION_CACHE_KEY_JOB_EXECUTION';
function isCacheDisabled() { function isCacheDisabled() {
if (!cache.isFeatureAvailable()) {
return true;
}
return core.getBooleanInput(CACHE_DISABLED_PARAMETER); return core.getBooleanInput(CACHE_DISABLED_PARAMETER);
} }
exports.isCacheDisabled = isCacheDisabled; exports.isCacheDisabled = isCacheDisabled;
@ -64993,7 +65012,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod }; return (mod && mod.__esModule) ? mod : { "default": mod };
}; };
Object.defineProperty(exports, "__esModule", ({ value: true })); Object.defineProperty(exports, "__esModule", ({ value: true }));
exports.loadBuildResults = exports.writeJobSummary = void 0; exports.loadBuildResults = exports.logJobSummary = exports.writeJobSummary = void 0;
const core = __importStar(__nccwpck_require__(2186)); const core = __importStar(__nccwpck_require__(2186));
const fs_1 = __importDefault(__nccwpck_require__(7147)); const fs_1 = __importDefault(__nccwpck_require__(7147));
const path_1 = __importDefault(__nccwpck_require__(1017)); const path_1 = __importDefault(__nccwpck_require__(1017));
@ -65007,11 +65026,23 @@ function writeJobSummary(buildResults, cacheListener) {
else { else {
writeSummaryTable(buildResults); writeSummaryTable(buildResults);
} }
(0, cache_reporting_1.logCachingReport)(cacheListener); (0, cache_reporting_1.writeCachingReport)(cacheListener);
yield core.summary.write(); yield core.summary.write();
}); });
} }
exports.writeJobSummary = writeJobSummary; exports.writeJobSummary = writeJobSummary;
function logJobSummary(buildResults, cacheListener) {
return __awaiter(this, void 0, void 0, function* () {
if (buildResults.length === 0) {
core.debug('No Gradle build results found. Summary table will not be logged.');
}
else {
logSummaryTable(buildResults);
}
(0, cache_reporting_1.logCachingReport)(cacheListener);
});
}
exports.logJobSummary = logJobSummary;
function loadBuildResults() { function loadBuildResults() {
const buildResultsDir = path_1.default.resolve(process.env['RUNNER_TEMP'], '.build-results'); const buildResultsDir = path_1.default.resolve(process.env['RUNNER_TEMP'], '.build-results');
if (!fs_1.default.existsSync(buildResultsDir)) { if (!fs_1.default.existsSync(buildResultsDir)) {
@ -65065,6 +65096,17 @@ function renderBuildScanBadge(outcomeText, outcomeColor, targetUrl) {
const badgeHtml = `<img src="${badgeUrl}" alt="Build Scan ${outcomeText}" />`; const badgeHtml = `<img src="${badgeUrl}" alt="Build Scan ${outcomeText}" />`;
return `<a href="${targetUrl}" rel="nofollow">${badgeHtml}</a>`; return `<a href="${targetUrl}" rel="nofollow">${badgeHtml}</a>`;
} }
function logSummaryTable(results) {
core.info('============================');
core.info('Gradle Builds');
core.info('----------------------------');
core.info('Root Project | Requested Tasks | Gradle Version | Build Outcome | Build Scan™');
core.info('----------------------------');
for (const result of results) {
core.info(`${result.rootProjectName} | ${result.requestedTasks} | ${result.gradleVersion} | ${result.buildFailed ? 'FAILED' : 'SUCCESS'} | ${result.buildScanFailed ? 'Publish failed' : result.buildScanUri}`);
}
core.info('============================');
}
/***/ }), /***/ }),
@ -65221,7 +65263,10 @@ function complete() {
const gradleUserHome = core.getState(GRADLE_USER_HOME); const gradleUserHome = core.getState(GRADLE_USER_HOME);
yield caches.save(gradleUserHome, cacheListener); yield caches.save(gradleUserHome, cacheListener);
if (shouldGenerateJobSummary()) { if (shouldGenerateJobSummary()) {
(0, job_summary_1.writeJobSummary)(buildResults, cacheListener); yield (0, job_summary_1.writeJobSummary)(buildResults, cacheListener);
}
else {
(0, job_summary_1.logJobSummary)(buildResults, cacheListener);
} }
}); });
} }

File diff suppressed because one or more lines are too long