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
|
|
|
|
|
|
|
interface BuildResult {
|
|
|
|
get rootProject(): string
|
|
|
|
get requestedTasks(): string
|
|
|
|
get gradleVersion(): string
|
|
|
|
get buildFailed(): boolean
|
|
|
|
get buildScanUri(): string
|
|
|
|
}
|
|
|
|
|
2022-06-03 04:39:09 +00:00
|
|
|
export function writeJobSummary(cacheListener: CacheListener): 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
|
|
|
const buildResults = loadBuildResults()
|
|
|
|
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)
|
|
|
|
|
|
|
|
core.summary.write()
|
2022-06-02 18:57:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function loadBuildResults(): BuildResult[] {
|
|
|
|
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-04 15:36:41 +00:00
|
|
|
core.summary.addTable([
|
|
|
|
[
|
|
|
|
{data: 'Root Project', header: true},
|
|
|
|
{data: 'Tasks', header: true},
|
|
|
|
{data: 'Gradle Version', header: true},
|
|
|
|
{data: 'Outcome', header: true}
|
|
|
|
],
|
|
|
|
...results.map(result => [
|
|
|
|
result.rootProject,
|
|
|
|
result.requestedTasks,
|
|
|
|
result.gradleVersion,
|
|
|
|
renderOutcome(result)
|
|
|
|
])
|
|
|
|
])
|
2022-06-03 04:39:09 +00:00
|
|
|
core.summary.addRaw('\n')
|
2022-06-02 18:57:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function renderOutcome(result: BuildResult): string {
|
2022-06-04 15:36:41 +00:00
|
|
|
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 badgeHtml = `<img src="${badgeUrl}" alt="Gradle Build">`
|
|
|
|
|
2022-06-02 18:57:35 +00:00
|
|
|
if (result.buildScanUri) {
|
2022-06-04 15:36:41 +00:00
|
|
|
return `<a href="${result.buildScanUri}" rel="nofollow">${badgeHtml}</a>`
|
2022-06-02 18:57:35 +00:00
|
|
|
}
|
2022-06-04 15:36:41 +00:00
|
|
|
return badgeHtml
|
2022-06-02 18:57:35 +00:00
|
|
|
}
|