2021-12-07 19:30:33 +08:00
|
|
|
import execa from "execa"
|
2022-04-16 15:42:53 +08:00
|
|
|
import { join } from "path"
|
|
|
|
import untildify from "untildify"
|
|
|
|
import which from "which"
|
|
|
|
import { setupCmake } from "../cmake/cmake"
|
|
|
|
import { getVersion } from "../default_versions"
|
2022-01-31 09:23:09 +08:00
|
|
|
import { execSudo } from "../utils/exec/sudo"
|
2021-12-07 19:30:33 +08:00
|
|
|
import { addBinExtension } from "../utils/extension/extension"
|
|
|
|
import { extractTarByExe } from "../utils/setup/extract"
|
|
|
|
import { setupAptPack } from "../utils/setup/setupAptPack"
|
2022-06-30 00:06:35 +08:00
|
|
|
import { setupPacmanPack } from "../utils/setup/setupPacmanPack"
|
2022-07-22 16:06:43 +08:00
|
|
|
import { InstallationInfo, PackageInfo, setupBin } from "../utils/setup/setupBin"
|
2022-06-30 10:06:33 +08:00
|
|
|
import { isArch } from "../utils/env/isArch"
|
2022-07-11 07:34:56 +08:00
|
|
|
import { hasDnf } from "../utils/env/hasDnf"
|
|
|
|
import { setupDnfPack } from "../utils/setup/setupDnfPack"
|
2022-07-11 08:39:21 +08:00
|
|
|
import { isUbuntu } from "../utils/env/isUbuntu"
|
2022-07-22 16:06:43 +08:00
|
|
|
import { removeVPrefix } from "../utils/setup/version"
|
2021-12-07 19:30:33 +08:00
|
|
|
|
2022-07-22 16:06:43 +08:00
|
|
|
function getDownloadKcovPackageInfo(version_number: string): PackageInfo {
|
|
|
|
return {
|
|
|
|
url: `https://github.com/SimonKagstrom/kcov/releases/download/v${version_number}/kcov-amd64.tar.gz`,
|
|
|
|
extractedFolderName: "",
|
|
|
|
binRelativeDir: "usr/local/bin",
|
|
|
|
binFileName: addBinExtension("kcov"),
|
|
|
|
extractFunction: extractTarByExe,
|
2021-12-07 19:30:33 +08:00
|
|
|
}
|
2022-07-22 16:06:43 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
function getBuildKcovPackageInfo(version: string): PackageInfo {
|
|
|
|
const version_number = removeVPrefix(version)
|
|
|
|
return {
|
|
|
|
url: `https://github.com/SimonKagstrom/kcov/archive/refs/tags/${version}.tar.gz`,
|
|
|
|
extractedFolderName: `kcov-${version_number}`,
|
|
|
|
binRelativeDir: "build/",
|
|
|
|
binFileName: addBinExtension("kcov"),
|
|
|
|
extractFunction: buildKcov,
|
2021-12-07 19:30:33 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-16 15:42:53 +08:00
|
|
|
async function buildKcov(file: string, dest: string) {
|
|
|
|
const out = await extractTarByExe(file, dest, ["--strip-components=1"])
|
|
|
|
// build after extraction using CMake
|
|
|
|
if (which.sync("cmake", { nothrow: true }) === null) {
|
|
|
|
await setupCmake(getVersion("cmake", undefined), join(untildify(""), "cmake"), "")
|
|
|
|
}
|
|
|
|
if (process.platform === "linux") {
|
2022-06-30 10:06:33 +08:00
|
|
|
if (isArch()) {
|
2022-06-30 00:06:35 +08:00
|
|
|
setupPacmanPack("libdwarf")
|
|
|
|
setupPacmanPack("libcurl-openssl")
|
2022-07-11 07:34:56 +08:00
|
|
|
} else if (hasDnf()) {
|
|
|
|
setupDnfPack("libdwarf-devel")
|
|
|
|
setupDnfPack("libcurl-devel")
|
2022-07-11 08:39:21 +08:00
|
|
|
} else if (isUbuntu()) {
|
2022-06-30 00:06:35 +08:00
|
|
|
setupAptPack("libdw-dev")
|
|
|
|
setupAptPack("libcurl4-openssl-dev")
|
|
|
|
}
|
2022-04-16 15:42:53 +08:00
|
|
|
}
|
|
|
|
await execa("cmake", ["-S", "./", "-B", "./build"], { cwd: out, stdio: "inherit" })
|
|
|
|
await execa("cmake", ["--build", "./build", "--config", "Release"], { cwd: out, stdio: "inherit" })
|
2022-04-27 15:02:35 +08:00
|
|
|
execSudo("cmake", ["--install", "./build"], out)
|
2022-04-16 15:42:53 +08:00
|
|
|
return out
|
|
|
|
}
|
|
|
|
|
2022-07-22 16:06:43 +08:00
|
|
|
export async function setupKcov(versionGiven: string, setupDir: string, arch: string) {
|
2021-12-07 19:30:33 +08:00
|
|
|
switch (process.platform) {
|
|
|
|
case "linux": {
|
2022-07-22 16:06:43 +08:00
|
|
|
// parse version
|
|
|
|
const versionSplit = versionGiven.split("-")
|
|
|
|
let version = versionSplit[0]
|
|
|
|
const installMethod = versionSplit[1] as "binary" | undefined
|
|
|
|
const version_number = removeVPrefix(version)
|
|
|
|
// fix inconsistency in tagging
|
|
|
|
if (version_number === 38) {
|
|
|
|
version = "v38"
|
|
|
|
}
|
|
|
|
|
|
|
|
let installationInfo: InstallationInfo
|
|
|
|
if (installMethod === "binary" && version_number >= 39) {
|
|
|
|
installationInfo = await setupBin("kcov", version, getDownloadKcovPackageInfo, setupDir, arch)
|
|
|
|
if (isArch()) {
|
|
|
|
setupPacmanPack("binutils")
|
|
|
|
} else if (hasDnf()) {
|
|
|
|
setupDnfPack("binutils")
|
|
|
|
} else if (isUbuntu()) {
|
|
|
|
setupAptPack("libbinutils")
|
|
|
|
}
|
|
|
|
return installationInfo
|
|
|
|
} else {
|
|
|
|
installationInfo = await setupBin("kcov", version, getBuildKcovPackageInfo, setupDir, arch)
|
2022-06-30 00:06:35 +08:00
|
|
|
}
|
2021-12-07 19:30:33 +08:00
|
|
|
return installationInfo
|
|
|
|
}
|
|
|
|
default: {
|
|
|
|
throw new Error(`Unsupported platform for ${arch}`)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|