This is a pure refactor, moving from a separate .cache file per bundle to a single cache-metadata.json file describing all bundles. Instead of storing cache metadata in a separate .cache file per artifact bundle, all of the metadata is now stored in a single `.json` file. This will make it easier to implement more flexible artifact-caching strategies, such as caching each wrapper zip separately. * Always include cache protocol version in cache key * Store all cache metadata in a single JSON file * Rename cache-metadata file and bump protocol version * Polish and documentation
70 lines
2.3 KiB
TypeScript
70 lines
2.3 KiB
TypeScript
import * as core from '@actions/core'
|
|
import * as path from 'path'
|
|
import {parseArgsStringToArgv} from 'string-argv'
|
|
|
|
import * as caches from './caches'
|
|
import * as execution from './execution'
|
|
import * as gradlew from './gradlew'
|
|
import * as provision from './provision'
|
|
|
|
/**
|
|
* The main entry point for the action, called by Github Actions for the step.
|
|
*/
|
|
export async function run(): Promise<void> {
|
|
try {
|
|
const workspaceDirectory = process.env[`GITHUB_WORKSPACE`] || ''
|
|
const buildRootDirectory = resolveBuildRootDirectory(workspaceDirectory)
|
|
|
|
await caches.restore(buildRootDirectory)
|
|
|
|
const args: string[] = parseCommandLineArguments()
|
|
|
|
const result = await execution.execute(
|
|
await resolveGradleExecutable(workspaceDirectory, buildRootDirectory),
|
|
buildRootDirectory,
|
|
args
|
|
)
|
|
|
|
if (result.status !== 0) {
|
|
if (result.buildScanUrl) {
|
|
core.setFailed(`Gradle build failed: ${result.buildScanUrl}`)
|
|
} else {
|
|
core.setFailed(`Gradle build failed: process exited with status ${result.status}`)
|
|
}
|
|
}
|
|
} catch (error) {
|
|
core.setFailed(String(error))
|
|
if (error instanceof Error && error.stack) {
|
|
core.info(error.stack)
|
|
}
|
|
}
|
|
}
|
|
|
|
run()
|
|
|
|
async function resolveGradleExecutable(workspaceDirectory: string, buildRootDirectory: string): Promise<string> {
|
|
const gradleVersion = core.getInput('gradle-version')
|
|
if (gradleVersion !== '' && gradleVersion !== 'wrapper') {
|
|
return path.resolve(await provision.gradleVersion(gradleVersion))
|
|
}
|
|
|
|
const gradleExecutable = core.getInput('gradle-executable')
|
|
if (gradleExecutable !== '') {
|
|
return path.resolve(workspaceDirectory, gradleExecutable)
|
|
}
|
|
|
|
return gradlew.locateGradleWrapperScript(buildRootDirectory)
|
|
}
|
|
|
|
function resolveBuildRootDirectory(baseDirectory: string): string {
|
|
const buildRootDirectory = core.getInput('build-root-directory')
|
|
const resolvedBuildRootDirectory =
|
|
buildRootDirectory === '' ? path.resolve(baseDirectory) : path.resolve(baseDirectory, buildRootDirectory)
|
|
return resolvedBuildRootDirectory
|
|
}
|
|
|
|
function parseCommandLineArguments(): string[] {
|
|
const input = core.getInput('arguments')
|
|
return parseArgsStringToArgv(input)
|
|
}
|