setup-cpp/src/default_versions.ts

25 lines
1.3 KiB
TypeScript
Raw Normal View History

2021-09-16 19:36:35 +08:00
const DefaultVersions: Record<string, string> = {
llvm: "14.0.1", // https://github.com/llvm/llvm-project/releases
clangtidy: "14.0.1",
clangformat: "14.0.1",
2022-03-02 06:01:08 +08:00
ninja: "1.10.2", // https://github.com/ninja-build/ninja/releases
cmake: "3.23.1", // https://github.com/Kitware/CMake/releases
2022-03-02 06:01:08 +08:00
gcovr: "5.0", // https://pypi.org/project/gcovr/
conan: "1.47.0", // https://github.com/conan-io/conan/releases
meson: "0.61.4", // https://github.com/mesonbuild/meson/releases
2022-01-23 09:17:56 +08:00
python: "3.8.10",
kcov: "v40", // https://github.com/SimonKagstrom/kcov/releases
task: "3.12.0", // https://github.com/go-task/task/releases
2022-03-02 06:01:08 +08:00
doxygen: "1.9.1", // https://packages.ubuntu.com/search?suite=all&arch=any&searchon=names&keywords=doxygen
gcc: process.platform === "win32" ? "11.2.0.07112021" : "11", // https://community.chocolatey.org/packages/mingw#versionhistory and // https://packages.ubuntu.com/search?suite=all&arch=any&searchon=names&keywords=gcc
2021-09-16 19:36:35 +08:00
}
/** Get the default version if passed true or undefined, otherwise return the version itself */
export function getVersion(name: string, version: string | undefined) {
if (version === "true" || (version === undefined && name in DefaultVersions)) {
2021-09-16 19:36:35 +08:00
return DefaultVersions[name]
} else {
return version ?? ""
2021-09-16 19:36:35 +08:00
}
}