mirror of https://github.com/aminya/setup-cpp
feat: support kcov 41 and default to it
This commit is contained in:
parent
5e5a8d08d2
commit
2d48e7221f
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -11,6 +11,18 @@ describe("setup-Kcov", () => {
|
|||
return
|
||||
}
|
||||
|
||||
it("should build and setup kcov-41", async () => {
|
||||
const directory = await setupTmpDir("kcov-v41")
|
||||
const { binDir } = (await setupKcov("41", directory, "")) as InstallationInfo
|
||||
// the prebuild binary only works on ubuntu 20.04
|
||||
try {
|
||||
await testBin("kcov", ["--version"], binDir)
|
||||
} catch (err) {
|
||||
info((err as Error).message)
|
||||
}
|
||||
await cleanupTmpDir("kcov-v41")
|
||||
})
|
||||
|
||||
it("should setup Kcov v40 via downloading the binaries", async () => {
|
||||
const directory = await setupTmpDir("kcov-v40")
|
||||
const { binDir } = (await setupKcov("40-binary", directory, "")) as InstallationInfo
|
||||
|
|
|
@ -24,7 +24,7 @@ export const DefaultVersions: Record<string, string> = {
|
|||
gcovr: "5.2", // https://pypi.org/project/gcovr/
|
||||
conan: "1.60.0", // https://github.com/conan-io/conan/releases
|
||||
meson: "1.0.2", // https://github.com/mesonbuild/meson/releases
|
||||
kcov: "40", // https://github.com/SimonKagstrom/kcov/releases
|
||||
kcov: "41", // https://github.com/SimonKagstrom/kcov/releases
|
||||
task: "3.25.0", // https://github.com/go-task/task/releases
|
||||
doxygen: isArch() ? "1.9.6-1" : "1.9.7", // https://www.doxygen.nl/download.html // https://packages.ubuntu.com/search?suite=all&arch=any&searchon=names&keywords=doxygen // https://formulae.brew.sh/formula/doxygen // https://archlinux.org/packages/extra/x86_64/doxygen/
|
||||
gcc: isArch() ? "13.1.1-1" : "13", // https://github.com/brechtsanders/winlibs_mingw/releases and // https://packages.ubuntu.com/search?suite=all&arch=any&searchon=names&keywords=gcc
|
||||
|
|
Loading…
Reference in New Issue