setup-cpp/src/chocolatey/chocolatey.ts

53 lines
1.6 KiB
TypeScript
Raw Normal View History

2021-09-17 06:44:13 +08:00
/* eslint-disable require-atomic-updates */
2021-09-15 05:01:08 +08:00
import { exec } from "@actions/exec"
2021-09-17 04:08:54 +08:00
import { existsSync } from "fs"
2021-09-17 06:44:13 +08:00
import { dirname } from "path"
2021-09-15 05:01:08 +08:00
import which from "which"
2021-09-17 02:47:12 +08:00
import { InstallationInfo } from "../utils/setup/setupBin"
2021-09-15 05:01:08 +08:00
2021-09-17 02:47:12 +08:00
let binDir: string | undefined
export async function setupChocolatey(
// eslint-disable-next-line @typescript-eslint/no-unused-vars
_version: string,
// eslint-disable-next-line @typescript-eslint/no-unused-vars
_setupCppDir: string,
// eslint-disable-next-line @typescript-eslint/no-unused-vars
_arch: string
): Promise<InstallationInfo | undefined> {
if (process.platform !== "win32") {
2021-09-17 02:47:12 +08:00
return undefined
}
if (typeof binDir === "string") {
return { binDir }
}
2021-09-17 02:47:12 +08:00
const maybeBinDir = which.sync("choco", { nothrow: true })
if (maybeBinDir !== null) {
binDir = maybeBinDir
return { binDir }
2021-09-15 05:01:08 +08:00
}
// https://docs.chocolatey.org/en-us/choco/setup#install-with-cmd.exe
const exit = await exec(
`@"%SystemRoot%\\System32\\WindowsPowerShell\\v1.0\\powershell.exe" -NoProfile -InputFormat None -ExecutionPolicy Bypass -Command "[System.Net.ServicePointManager]::SecurityProtocol = 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1'))" && SET "PATH=%PATH%;%ALLUSERSPROFILE%\\chocolatey\\bin"`
)
if (exit !== 0) {
throw new Error(`Failed to install chocolatey`)
}
2021-09-17 02:47:12 +08:00
2021-09-17 06:44:13 +08:00
const maybeChoco = which.sync("choco", { nothrow: true })
if (maybeChoco !== null) {
binDir = dirname(maybeChoco)
} else {
binDir = "C:\\ProgramData\\Chocolatey\\bin\\"
}
2021-09-17 04:08:54 +08:00
if (existsSync(binDir)) {
return { binDir }
}
return undefined
2021-09-15 05:01:08 +08:00
}