2022-06-02 18:57:35 +00:00
|
|
|
import * as core from '@actions/core'
|
|
|
|
import fs from 'fs'
|
|
|
|
import path from 'path'
|
2022-06-03 04:39:09 +00:00
|
|
|
import {logCachingReport, CacheListener} from './cache-reporting'
|
2022-06-02 18:57:35 +00:00
|
|
|
|
2022-06-05 14:34:07 +00:00
|
|
|
export interface BuildResult {
|
2022-06-05 14:18:25 +00:00
|
|
|
get rootProjectName(): string
|
|
|
|
get rootProjectDir(): string
|
2022-06-02 18:57:35 +00:00
|
|
|
get requestedTasks(): string
|
|
|
|
get gradleVersion(): string
|
2022-06-05 14:18:25 +00:00
|
|
|
get gradleHomeDir(): string
|
2022-06-02 18:57:35 +00:00
|
|
|
get buildFailed(): boolean
|
|
|
|
get buildScanUri(): string
|
2022-06-19 15:40:27 +00:00
|
|
|
get buildScanFailed(): boolean
|
2022-06-02 18:57:35 +00:00
|
|
|
}
|
|
|
|
|
2022-06-09 15:06:27 +00:00
|
|
|
export async function writeJobSummary(buildResults: BuildResult[], cacheListener: CacheListener): Promise<void> {
|
2022-06-04 15:36:41 +00:00
|
|
|
core.info('Writing job summary')
|
2022-06-03 04:39:09 +00:00
|
|
|
|
2022-06-02 18:57:35 +00:00
|
|
|
if (buildResults.length === 0) {
|
|
|
|
core.debug('No Gradle build results found. Summary table will not be generated.')
|
|
|
|
} else {
|
|
|
|
writeSummaryTable(buildResults)
|
|
|
|
}
|
2022-06-03 04:39:09 +00:00
|
|
|
|
|
|
|
logCachingReport(cacheListener)
|
|
|
|
|
2022-06-09 15:06:27 +00:00
|
|
|
await core.summary.write()
|
2022-06-02 18:57:35 +00:00
|
|
|
}
|
|
|
|
|
2022-06-05 14:34:07 +00:00
|
|
|
export function loadBuildResults(): BuildResult[] {
|
2022-06-02 18:57:35 +00:00
|
|
|
const buildResultsDir = path.resolve(process.env['RUNNER_TEMP']!, '.build-results')
|
|
|
|
if (!fs.existsSync(buildResultsDir)) {
|
|
|
|
return []
|
|
|
|
}
|
|
|
|
|
|
|
|
return fs.readdirSync(buildResultsDir).map(file => {
|
|
|
|
// Every file in the .build-results dir should be a BuildResults JSON
|
|
|
|
const filePath = path.join(buildResultsDir, file)
|
|
|
|
const content = fs.readFileSync(filePath, 'utf8')
|
|
|
|
return JSON.parse(content) as BuildResult
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
function writeSummaryTable(results: BuildResult[]): void {
|
2022-06-02 20:21:10 +00:00
|
|
|
core.summary.addHeading('Gradle Builds', 3)
|
2022-06-19 15:56:40 +00:00
|
|
|
|
|
|
|
core.summary.addRaw(`
|
|
|
|
<table>
|
|
|
|
<tr>
|
|
|
|
<th>Root Project</th>
|
|
|
|
<th>Requested Tasks</th>
|
|
|
|
<th>Gradle Version</th>
|
|
|
|
<th>Build Outcome</th>
|
|
|
|
<th>Build Scan™</th>
|
|
|
|
</tr>${results.map(result => renderBuildResultRow(result)).join('')}
|
|
|
|
</table>
|
|
|
|
`)
|
|
|
|
}
|
|
|
|
|
|
|
|
function renderBuildResultRow(result: BuildResult): string {
|
|
|
|
return `
|
|
|
|
<tr>
|
|
|
|
<td>${result.rootProjectName}</td>
|
|
|
|
<td>${result.requestedTasks}</td>
|
|
|
|
<td align='center'>${result.gradleVersion}</td>
|
|
|
|
<td align='center'>${renderOutcome(result)}</td>
|
|
|
|
<td>${renderBuildScan(result)}</td>
|
|
|
|
</tr>`
|
2022-06-02 18:57:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function renderOutcome(result: BuildResult): string {
|
2022-06-19 15:40:27 +00:00
|
|
|
return result.buildFailed ? ':x:' : ':white_check_mark:'
|
|
|
|
}
|
|
|
|
|
|
|
|
function renderBuildScan(result: BuildResult): string {
|
|
|
|
if (result.buildScanFailed) {
|
|
|
|
return renderBuildScanBadge(
|
2022-06-19 15:56:40 +00:00
|
|
|
'PUBLISH_FAILED',
|
2022-06-19 15:40:27 +00:00
|
|
|
'orange',
|
|
|
|
'https://docs.gradle.com/enterprise/gradle-plugin/#troubleshooting'
|
|
|
|
)
|
|
|
|
}
|
|
|
|
if (result.buildScanUri) {
|
|
|
|
return renderBuildScanBadge('PUBLISHED', '06A0CE', result.buildScanUri)
|
|
|
|
}
|
2022-06-19 15:56:40 +00:00
|
|
|
return renderBuildScanBadge('NOT_PUBLISHED', 'lightgrey', 'https://scans.gradle.com')
|
2022-06-19 15:40:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function renderBuildScanBadge(outcomeText: string, outcomeColor: string, targetUrl: string): string {
|
|
|
|
const badgeUrl = `https://img.shields.io/badge/Build%20Scan%E2%84%A2-${outcomeText}-${outcomeColor}?logo=Gradle`
|
|
|
|
const badgeHtml = `<img src="${badgeUrl}" alt="Build Scan ${outcomeText}" />`
|
2022-06-05 05:10:32 +00:00
|
|
|
return `<a href="${targetUrl}" rel="nofollow">${badgeHtml}</a>`
|
2022-06-02 18:57:35 +00:00
|
|
|
}
|