setup-cpp
Version:
Install all the tools required for building and testing C++/C projects.
33 lines (27 loc) • 1.02 kB
text/typescript
import ciInfo from "ci-info"
const { GITHUB_ACTIONS } = ciInfo
import { cleanupTmpDir, setupTmpDir, testBin } from "../../utils/tests/test-helpers.js"
import { getVersion } from "../../versions/versions.js"
import { setupCmake } from "../cmake.js"
jest.setTimeout(300000)
describe("setup-cmake", () => {
let directory: string
beforeAll(async () => {
directory = await setupTmpDir("cmake")
process.env.CACHE_TOOLS = "true"
})
it("should setup CMake", async () => {
const { binDir } = await setupCmake(getVersion("cmake", "true"), directory, process.arch)
await testBin("cmake", ["--version"], binDir)
})
it("should find CMake in the cache", async () => {
const { binDir } = await setupCmake(getVersion("cmake", "true"), directory, process.arch)
await testBin("cmake", ["--version"], binDir)
if (GITHUB_ACTIONS) {
expect(binDir).toMatch(process.env.RUNNER_TOOL_CACHE ?? "hostedtoolcache")
}
})
afterAll(async () => {
await cleanupTmpDir("cmake")
}, 100000)
})