2020-06-13 13:44:30 +02:00
|
|
|
import * as core from '@actions/core'
|
|
|
|
import * as path from 'path'
|
2021-12-07 16:52:53 -07:00
|
|
|
import * as os from 'os'
|
2020-06-13 13:44:30 +02:00
|
|
|
import {parseArgsStringToArgv} from 'string-argv'
|
2019-09-21 16:01:53 +02:00
|
|
|
|
2021-08-20 13:01:43 -06:00
|
|
|
import * as caches from './caches'
|
2020-06-13 13:44:30 +02:00
|
|
|
import * as execution from './execution'
|
|
|
|
import * as provision from './provision'
|
2019-09-21 16:01:53 +02:00
|
|
|
|
2021-11-28 10:19:56 -07:00
|
|
|
/**
|
|
|
|
* The main entry point for the action, called by Github Actions for the step.
|
|
|
|
*/
|
2020-06-13 13:54:27 +02:00
|
|
|
export async function run(): Promise<void> {
|
2021-09-14 05:33:50 -06:00
|
|
|
try {
|
|
|
|
const workspaceDirectory = process.env[`GITHUB_WORKSPACE`] || ''
|
|
|
|
const buildRootDirectory = resolveBuildRootDirectory(workspaceDirectory)
|
2021-12-07 16:52:53 -07:00
|
|
|
const gradleUserHome = determineGradleUserHome(buildRootDirectory)
|
2021-08-22 20:14:47 -06:00
|
|
|
|
2021-12-07 16:52:53 -07:00
|
|
|
await caches.restore(gradleUserHome)
|
2019-09-21 16:01:53 +02:00
|
|
|
|
2021-12-08 09:05:04 -07:00
|
|
|
const executable = await provisionGradle(workspaceDirectory)
|
|
|
|
// executable will be undefined if using Gradle wrapper
|
|
|
|
if (executable !== undefined) {
|
|
|
|
core.addPath(path.dirname(executable))
|
|
|
|
}
|
2019-09-21 16:01:53 +02:00
|
|
|
|
2021-12-08 09:05:04 -07:00
|
|
|
// Only execute if arguments have been provided
|
|
|
|
const args: string[] = parseCommandLineArguments()
|
|
|
|
if (args.length > 0) {
|
|
|
|
await execution.executeGradleBuild(executable, buildRootDirectory, args)
|
2019-09-23 12:11:18 +02:00
|
|
|
}
|
2019-09-21 16:01:53 +02:00
|
|
|
} catch (error) {
|
2021-09-14 05:33:50 -06:00
|
|
|
core.setFailed(String(error))
|
|
|
|
if (error instanceof Error && error.stack) {
|
|
|
|
core.info(error.stack)
|
2021-09-06 11:16:08 -06:00
|
|
|
}
|
2019-09-21 16:01:53 +02:00
|
|
|
}
|
2019-09-20 23:06:59 +02:00
|
|
|
}
|
|
|
|
|
2020-06-13 13:44:30 +02:00
|
|
|
run()
|
2019-09-21 16:01:53 +02:00
|
|
|
|
2021-12-08 09:05:04 -07:00
|
|
|
async function provisionGradle(workspaceDirectory: string): Promise<string | undefined> {
|
2021-07-20 11:44:56 -06:00
|
|
|
const gradleVersion = core.getInput('gradle-version')
|
|
|
|
if (gradleVersion !== '' && gradleVersion !== 'wrapper') {
|
2019-10-28 13:30:27 +01:00
|
|
|
return path.resolve(await provision.gradleVersion(gradleVersion))
|
2019-09-21 16:01:53 +02:00
|
|
|
}
|
|
|
|
|
2021-07-20 11:44:56 -06:00
|
|
|
const gradleExecutable = core.getInput('gradle-executable')
|
|
|
|
if (gradleExecutable !== '') {
|
2021-06-24 10:45:43 -07:00
|
|
|
return path.resolve(workspaceDirectory, gradleExecutable)
|
2019-09-21 16:01:53 +02:00
|
|
|
}
|
|
|
|
|
2021-12-08 09:05:04 -07:00
|
|
|
return undefined
|
2019-09-21 16:01:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
function resolveBuildRootDirectory(baseDirectory: string): string {
|
2021-07-20 11:44:56 -06:00
|
|
|
const buildRootDirectory = core.getInput('build-root-directory')
|
2020-06-13 16:02:48 +02:00
|
|
|
const resolvedBuildRootDirectory =
|
2021-10-29 07:34:44 -06:00
|
|
|
buildRootDirectory === '' ? path.resolve(baseDirectory) : path.resolve(baseDirectory, buildRootDirectory)
|
2020-06-13 16:02:48 +02:00
|
|
|
return resolvedBuildRootDirectory
|
2019-09-21 16:01:53 +02:00
|
|
|
}
|
|
|
|
|
2021-12-07 16:52:53 -07:00
|
|
|
function determineGradleUserHome(rootDir: string): string {
|
|
|
|
const customGradleUserHome = process.env['GRADLE_USER_HOME']
|
|
|
|
if (customGradleUserHome) {
|
|
|
|
return path.resolve(rootDir, customGradleUserHome)
|
|
|
|
}
|
|
|
|
|
|
|
|
return path.resolve(os.homedir(), '.gradle')
|
|
|
|
}
|
|
|
|
|
2019-09-21 16:01:53 +02:00
|
|
|
function parseCommandLineArguments(): string[] {
|
2021-07-20 11:44:56 -06:00
|
|
|
const input = core.getInput('arguments')
|
|
|
|
return parseArgsStringToArgv(input)
|
2019-09-21 16:01:53 +02:00
|
|
|
}
|