import * as core from '@actions/core' import fs from 'fs' import path from 'path' import {logCachingReport, CacheListener} from './cache-reporting' interface BuildResult { get rootProject(): string get requestedTasks(): string get gradleVersion(): string get buildFailed(): boolean get buildScanUri(): string } export function writeJobSummary(cacheListener: CacheListener): void { core.info('Writing job summary') const buildResults = loadBuildResults() if (buildResults.length === 0) { core.debug('No Gradle build results found. Summary table will not be generated.') } else { writeSummaryTable(buildResults) } logCachingReport(cacheListener) core.summary.write() } 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 { core.summary.addHeading('Gradle Builds', 3) 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) ]) ]) core.summary.addRaw('\n') } function renderOutcome(result: BuildResult): string { 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 = `Gradle Build` if (result.buildScanUri) { return `${badgeHtml}` } return badgeHtml }