2021-12-08 16:05:04 +00:00
|
|
|
import * as core from '@actions/core'
|
2020-06-13 11:44:30 +00:00
|
|
|
import * as exec from '@actions/exec'
|
2021-12-08 16:05:04 +00:00
|
|
|
import * as gradlew from './gradlew'
|
2019-09-21 14:01:53 +00:00
|
|
|
|
2021-12-08 16:05:04 +00:00
|
|
|
export async function executeGradleBuild(executable: string | undefined, root: string, args: string[]): Promise<void> {
|
|
|
|
// Use the provided executable, or look for a Gradle wrapper script to run
|
2023-07-13 19:30:34 +00:00
|
|
|
const toExecute = executable ?? gradlew.gradleWrapperScript(root)
|
|
|
|
|
2021-12-08 16:05:04 +00:00
|
|
|
const status: number = await exec.exec(toExecute, args, {
|
2019-09-21 14:01:53 +00:00
|
|
|
cwd: root,
|
2021-09-28 04:54:22 +00:00
|
|
|
ignoreReturnCode: true
|
2020-06-13 11:44:30 +00:00
|
|
|
})
|
2019-09-21 14:01:53 +00:00
|
|
|
|
2021-12-08 16:05:04 +00:00
|
|
|
if (status !== 0) {
|
2022-05-24 12:07:36 +00:00
|
|
|
core.setFailed(`Gradle build failed: see console output for details`)
|
2021-12-08 16:05:04 +00:00
|
|
|
}
|
2019-09-21 14:01:53 +00:00
|
|
|
}
|