2020-01-31 11:14:06 -08:00
|
|
|
import * as core from '@actions/core'
|
|
|
|
import * as exec from '@actions/exec'
|
|
|
|
import * as path from 'path'
|
2020-02-11 09:36:13 -08:00
|
|
|
import * as io from '@actions/io'
|
2020-01-31 11:14:06 -08:00
|
|
|
import {ExecOptions} from '@actions/exec/lib/interfaces'
|
|
|
|
|
|
|
|
const IS_WINDOWS = process.platform === 'win32'
|
|
|
|
const VS_VERSION = core.getInput('vs-version') || 'latest'
|
2020-02-11 09:36:13 -08:00
|
|
|
const VSWHERE_PATH =
|
|
|
|
core.getInput('vswhere-path') ||
|
2020-02-11 09:40:56 -08:00
|
|
|
path.join(
|
|
|
|
process.env['ProgramFiles(x86)'] as string,
|
|
|
|
'Microsoft Visual Studio\\Installer'
|
|
|
|
)
|
2020-01-31 11:14:06 -08:00
|
|
|
|
|
|
|
// if a specific version of VS is requested
|
|
|
|
let VSWHERE_EXEC = ''
|
|
|
|
if (VS_VERSION === 'latest') {
|
|
|
|
VSWHERE_EXEC += '-latest '
|
|
|
|
} else {
|
|
|
|
VSWHERE_EXEC += `-version ${VS_VERSION} `
|
|
|
|
}
|
|
|
|
VSWHERE_EXEC +=
|
|
|
|
'-requires Microsoft.Component.MSBuild -find MSBuild\\**\\Bin\\MSBuild.exe'
|
|
|
|
|
2020-01-31 11:49:55 -08:00
|
|
|
core.debug(`Execution path: ${VSWHERE_EXEC}`)
|
|
|
|
|
2020-01-31 11:14:06 -08:00
|
|
|
async function run(): Promise<void> {
|
|
|
|
try {
|
|
|
|
// exit if non Windows runner
|
|
|
|
if (IS_WINDOWS === false) {
|
|
|
|
core.setFailed('setup-msbuild can only be run on Windows runners')
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// check to see if we are using a specific path for vswhere
|
|
|
|
let vswhereToolExe = ''
|
|
|
|
|
2020-01-31 12:22:23 -08:00
|
|
|
if (VSWHERE_PATH) {
|
2020-02-11 09:36:13 -08:00
|
|
|
// specified a path for vswhere, use it
|
2020-01-31 11:14:06 -08:00
|
|
|
vswhereToolExe = path.join(VSWHERE_PATH, 'vswhere.exe')
|
|
|
|
} else {
|
2020-02-11 09:36:13 -08:00
|
|
|
// check in PATH to see if it is there
|
|
|
|
try {
|
|
|
|
const vsWhereInPath: string = await io.which('vswhere', true)
|
|
|
|
core.debug(`Found tool in PATH: ${vsWhereInPath}`)
|
|
|
|
vswhereToolExe = path.join(vsWhereInPath, 'vswhere.exe')
|
|
|
|
} catch {
|
|
|
|
// wasn't found because which threw
|
|
|
|
} finally {
|
|
|
|
core.setFailed(
|
|
|
|
'setup-msbuild requires the path to where vswhere.exe exists'
|
|
|
|
)
|
2020-01-31 11:14:06 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-11 09:40:56 -08:00
|
|
|
core.debug(`Full tool exe: ${vswhereToolExe}`)
|
2020-01-31 11:14:06 -08:00
|
|
|
|
|
|
|
let foundToolPath = ''
|
|
|
|
const options: ExecOptions = {}
|
|
|
|
options.listeners = {
|
|
|
|
stdout: (data: Buffer) => {
|
|
|
|
// eslint-disable-next-line prefer-const
|
|
|
|
let output = data.toString()
|
|
|
|
foundToolPath += output
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// execute the find putting the result of the command in the options foundToolPath
|
2020-02-11 09:40:56 -08:00
|
|
|
await exec.exec(`"${vswhereToolExe}" ${VSWHERE_EXEC}`, [], options)
|
2020-01-31 11:14:06 -08:00
|
|
|
|
|
|
|
if (!foundToolPath) {
|
|
|
|
core.setFailed('Unable to find msbuild.')
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// extract the folder location for the tool
|
|
|
|
const toolFolderPath = path.dirname(foundToolPath)
|
|
|
|
|
|
|
|
// set the outputs for the action to the folder path of msbuild
|
|
|
|
core.setOutput('msbuildPath', toolFolderPath)
|
|
|
|
|
|
|
|
// add tool path to PATH
|
|
|
|
core.addPath(toolFolderPath)
|
2020-02-11 09:36:13 -08:00
|
|
|
core.debug(`Tool path added to PATH: ${toolFolderPath}`)
|
2020-01-31 11:14:06 -08:00
|
|
|
} catch (error) {
|
|
|
|
core.setFailed(error.message)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
run()
|