mirror of https://github.com/aminya/setup-cpp.git
65 lines
2.5 KiB
TypeScript
65 lines
2.5 KiB
TypeScript
import { addPath } from "../utils/env/addEnv"
|
|
import { setupAptPack } from "../utils/setup/setupAptPack"
|
|
import { setupPacmanPack } from "../utils/setup/setupPacmanPack"
|
|
import { setupBrewPack } from "../utils/setup/setupBrewPack"
|
|
import { setupChocoPack } from "../utils/setup/setupChocoPack"
|
|
import { isArch } from "../utils/env/isArch"
|
|
import { hasDnf } from "../utils/env/hasDnf"
|
|
import { setupDnfPack } from "../utils/setup/setupDnfPack"
|
|
import { isUbuntu } from "../utils/env/isUbuntu"
|
|
import { execRootSync } from "admina"
|
|
import { ubuntuVersion } from "../utils/env/ubuntu_version"
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
export async function setupPowershell(version: string | undefined, _setupDir: string, _arch: string) {
|
|
switch (process.platform) {
|
|
case "win32": {
|
|
await setupChocoPack("powershell-core", version)
|
|
const binDir = "C:/Program Files/PowerShell/7"
|
|
await addPath(binDir)
|
|
return { binDir }
|
|
}
|
|
case "darwin": {
|
|
return setupBrewPack("powershell", version, ["--cask"])
|
|
}
|
|
case "linux": {
|
|
if (isArch()) {
|
|
return setupPacmanPack("powershell-bin", version, "yay")
|
|
} else if (hasDnf()) {
|
|
setupDnfPack([{ name: "curl" }])
|
|
execRootSync("/bin/bash", [
|
|
"-c",
|
|
`curl https://packages.microsoft.com/config/rhel/8/prod.repo | sudo tee /etc/yum.repos.d/microsoft.repo`,
|
|
])
|
|
return setupDnfPack([{ name: "powershell", version }])
|
|
} else if (isUbuntu()) {
|
|
await setupAptPack([{ name: "curl" }])
|
|
const ubuntuVerSplitted = (await ubuntuVersion())!
|
|
const ubuntuVersionString = `${ubuntuVerSplitted[0]}.0${ubuntuVerSplitted[1]}`
|
|
|
|
execRootSync("curl", [
|
|
"-LJO",
|
|
`https://packages.microsoft.com/config/ubuntu/${ubuntuVersionString}/packages-microsoft-prod.deb`,
|
|
])
|
|
execRootSync("dpkg", ["-i", "packages-microsoft-prod.deb"])
|
|
|
|
// TODO Debian
|
|
// const keyFileName = await addAptKeyViaDownload(
|
|
// "microsoft.asc",
|
|
// "https://packages.microsoft.com/keys/microsoft.asc"
|
|
// )
|
|
// execRootSync("/bin/bash", [
|
|
// "-c",
|
|
// `echo "deb [arch=amd64 signed-by=${keyFileName}] https://packages.microsoft.com/repos/microsoft-debian-bullseye-prod bullseye main" > /etc/apt/sources.list.d/microsoft.list`,
|
|
// ])
|
|
|
|
return setupAptPack([{ name: "powershell", version }], true)
|
|
}
|
|
throw new Error(`Unsupported linux distribution`)
|
|
}
|
|
default: {
|
|
throw new Error(`Unsupported platform`)
|
|
}
|
|
}
|
|
}
|