gradle-build-action/src/main.ts

76 lines
2.3 KiB
TypeScript
Raw Normal View History

2020-06-13 11:44:30 +00:00
import * as core from '@actions/core'
import * as path from 'path'
import {parseArgsStringToArgv} from 'string-argv'
2019-09-21 14:01:53 +00:00
2020-06-13 12:48:54 +00:00
import * as cache from './cache'
2020-06-13 11:44:30 +00:00
import * as execution from './execution'
import * as gradlew from './gradlew'
import * as provision from './provision'
2019-09-21 14:01:53 +00:00
2020-02-14 05:46:51 +00:00
// Invoked by GitHub Actions
2020-06-13 11:54:27 +00:00
export async function run(): Promise<void> {
2019-09-21 14:01:53 +00:00
try {
2020-06-13 11:44:30 +00:00
const baseDirectory = process.env[`GITHUB_WORKSPACE`] || ''
2019-09-21 14:01:53 +00:00
2020-06-13 11:54:27 +00:00
const result = await execution.execute(
2019-09-21 14:01:53 +00:00
await resolveGradleExecutable(baseDirectory),
resolveBuildRootDirectory(baseDirectory),
parseCommandLineArguments()
2020-06-13 11:44:30 +00:00
)
2019-09-21 14:01:53 +00:00
2019-09-23 10:11:18 +00:00
if (result.buildScanUrl) {
2020-06-13 11:44:30 +00:00
core.setOutput('build-scan-url', result.buildScanUrl)
2019-09-21 14:01:53 +00:00
}
2020-06-13 11:54:27 +00:00
if (result.status !== 0) {
2019-09-23 10:11:18 +00:00
core.setFailed(`Gradle process exited with status ${result.status}`)
}
2019-09-21 14:01:53 +00:00
} catch (error) {
2020-06-13 11:44:30 +00:00
core.setFailed(error.message)
2019-09-21 14:01:53 +00:00
}
2019-09-20 21:06:59 +00:00
}
2020-06-13 11:44:30 +00:00
run()
2019-09-21 14:01:53 +00:00
async function resolveGradleExecutable(baseDirectory: string): Promise<string> {
2020-06-13 11:44:30 +00:00
const gradleVersion = inputOrNull('gradle-version')
2020-06-13 11:54:27 +00:00
if (gradleVersion !== null && gradleVersion !== 'wrapper') {
2019-10-28 12:30:27 +00:00
return path.resolve(await provision.gradleVersion(gradleVersion))
2019-09-21 14:01:53 +00:00
}
2020-06-13 11:44:30 +00:00
const gradleExecutable = inputOrNull('gradle-executable')
2020-06-13 11:54:27 +00:00
if (gradleExecutable !== null) {
return path.resolve(baseDirectory, gradleExecutable)
2019-09-21 14:01:53 +00:00
}
2020-06-13 11:44:30 +00:00
const wrapperDirectory = inputOrNull('wrapper-directory')
const executableDirectory =
2020-06-13 11:54:27 +00:00
wrapperDirectory !== null
2020-06-13 11:44:30 +00:00
? path.join(baseDirectory, wrapperDirectory)
: baseDirectory
2019-09-21 14:01:53 +00:00
2020-06-13 12:48:54 +00:00
await cache.restoreCachedWrapperDist(executableDirectory)
2020-06-13 11:44:30 +00:00
return path.resolve(executableDirectory, gradlew.wrapperFilename())
2019-09-21 14:01:53 +00:00
}
function resolveBuildRootDirectory(baseDirectory: string): string {
2020-06-13 11:54:27 +00:00
const buildRootDirectory = inputOrNull('build-root-directory')
return buildRootDirectory === null
? path.resolve(baseDirectory)
2020-06-13 11:44:30 +00:00
: path.resolve(baseDirectory, buildRootDirectory)
2019-09-21 14:01:53 +00:00
}
function parseCommandLineArguments(): string[] {
2020-06-13 11:44:30 +00:00
const input = inputOrNull('arguments')
2020-06-13 11:54:27 +00:00
return input === null ? [] : parseArgsStringToArgv(input)
2019-09-21 14:01:53 +00:00
}
function inputOrNull(name: string): string | null {
2020-06-13 11:44:30 +00:00
const inputString = core.getInput(name)
2020-06-13 11:54:27 +00:00
if (inputString.length === 0) {
2020-06-13 11:44:30 +00:00
return null
2019-09-21 14:01:53 +00:00
}
return inputString
}