2020-06-13 07:44:30 -04:00
|
|
|
import * as core from '@actions/core'
|
|
|
|
import {parseArgsStringToArgv} from 'string-argv'
|
2019-09-21 10:01:53 -04:00
|
|
|
|
2022-06-02 14:17:56 -04:00
|
|
|
import * as setupGradle from './setup-gradle'
|
2020-06-13 07:44:30 -04:00
|
|
|
import * as execution from './execution'
|
2023-06-03 16:09:52 -04:00
|
|
|
import * as provisioner from './provision'
|
|
|
|
import * as layout from './repository-layout'
|
2019-09-21 10:01:53 -04:00
|
|
|
|
2021-11-28 12:19:56 -05:00
|
|
|
/**
|
|
|
|
* The main entry point for the action, called by Github Actions for the step.
|
|
|
|
*/
|
2020-06-13 07:54:27 -04:00
|
|
|
export async function run(): Promise<void> {
|
2021-09-14 07:33:50 -04:00
|
|
|
try {
|
2023-06-03 16:09:52 -04:00
|
|
|
// Configure Gradle environment (Gradle User Home)
|
|
|
|
await setupGradle.setup()
|
2021-08-22 22:14:47 -04:00
|
|
|
|
2023-06-03 16:09:52 -04:00
|
|
|
// Download and install Gradle if required
|
|
|
|
const executable = await provisioner.provisionGradle()
|
2019-09-21 10:01:53 -04:00
|
|
|
|
2021-12-08 11:05:04 -05:00
|
|
|
// Only execute if arguments have been provided
|
|
|
|
const args: string[] = parseCommandLineArguments()
|
|
|
|
if (args.length > 0) {
|
2023-06-03 16:09:52 -04:00
|
|
|
const buildRootDirectory = layout.buildRootDirectory()
|
2021-12-08 11:05:04 -05:00
|
|
|
await execution.executeGradleBuild(executable, buildRootDirectory, args)
|
2019-09-23 06:11:18 -04:00
|
|
|
}
|
2019-09-21 10:01:53 -04:00
|
|
|
} catch (error) {
|
2021-09-14 07:33:50 -04:00
|
|
|
core.setFailed(String(error))
|
|
|
|
if (error instanceof Error && error.stack) {
|
|
|
|
core.info(error.stack)
|
2021-09-06 13:16:08 -04:00
|
|
|
}
|
2019-09-21 10:01:53 -04:00
|
|
|
}
|
2019-09-20 17:06:59 -04:00
|
|
|
}
|
|
|
|
|
2020-06-13 07:44:30 -04:00
|
|
|
run()
|
2019-09-21 10:01:53 -04:00
|
|
|
|
|
|
|
function parseCommandLineArguments(): string[] {
|
2021-07-20 13:44:56 -04:00
|
|
|
const input = core.getInput('arguments')
|
|
|
|
return parseArgsStringToArgv(input)
|
2019-09-21 10:01:53 -04:00
|
|
|
}
|