setup-msbuild/src/main.ts

104 lines
3.0 KiB
TypeScript
Raw Normal View History

2020-01-31 11:14:06 -08:00
import * as core from '@actions/core'
import * as exec from '@actions/exec'
import * as glob from '@actions/glob'
2020-01-31 11:14:06 -08:00
import * as path from 'path'
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'
const VSWHERE_PATH =
core.getInput('vswhere-path') ||
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 =
2020-04-04 11:50:17 -07:00
'-products * -requires Microsoft.Component.MSBuild -property installationPath '
2020-01-31 11:14:06 -08:00
if (VS_VERSION === 'latest') {
VSWHERE_EXEC += '-latest '
} else {
2020-04-04 11:50:17 -07:00
VSWHERE_EXEC += `-version "${VS_VERSION}" `
2020-01-31 11:14:06 -08:00
}
2020-02-20 16:56:19 -08:00
core.debug(`Execution arguments: ${VSWHERE_EXEC}`)
2020-01-31 11:49:55 -08:00
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) {
// specified a path for vswhere, use it
2020-01-31 11:14:06 -08:00
vswhereToolExe = path.join(VSWHERE_PATH, 'vswhere.exe')
} else {
// 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
}
}
core.debug(`Full tool exe: ${vswhereToolExe}`)
2020-01-31 11:14:06 -08:00
let foundToolPath = ''
const options: ExecOptions = {}
options.listeners = {
2020-04-04 12:17:00 -07:00
stdout: (data: Buffer) => {
const output = data.toString().trim()
core.debug(`Found installation path: ${output}`)
const pattern = `${output}\\\\MSBuild\\**\\Bin\\msbuild.exe`
/* eslint-disable @typescript-eslint/promise-function-async */
glob
.create(pattern)
.then(globber => globber.glob())
.then(files => {
if (files?.length > 0) {
foundToolPath = files[0]
}
})
/* eslint-enable @typescript-eslint/promise-function-async */
2020-01-31 11:14:06 -08:00
}
}
// execute the find putting the result of the command in the options foundToolPath
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)
core.debug(`Tool path added to PATH: ${toolFolderPath}`)
2020-01-31 11:14:06 -08:00
} catch (error) {
core.setFailed(error.message)
}
}
run()