test: llvm 15.0.2

This commit is contained in:
Amin Yahyaabadi 2022-10-12 11:45:53 -07:00
parent 007a51ecba
commit 41ac067e60
5 changed files with 6 additions and 4 deletions

View File

@ -36,6 +36,7 @@ words:
- gcovr - gcovr
- ghes - ghes
- Graphviz - Graphviz
- inja
- isci - isci
- isroot - isroot
- kcov - kcov
@ -58,6 +59,7 @@ words:
- npmrc - npmrc
- Opencppcoverage - Opencppcoverage
- OSSDK - OSSDK
- papm
- patha - patha
- pnpm - pnpm
- pwsh - pwsh

2
dist/setup_cpp.js vendored

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -54,7 +54,7 @@ describe("setup-llvm", () => {
it("Finds valid LLVM URLs", async () => { it("Finds valid LLVM URLs", async () => {
await Promise.all( await Promise.all(
[ [
"15", "15.0.2",
// "14.0.1", // "14.0.1",
"14.0.0", "14.0.0",
"13.0.0", "13.0.0",

View File

@ -181,7 +181,7 @@ const UBUNTU_SUFFIX_MAP: { [key: string]: string } = {
} }
/** The latest supported LLVM version for the Linux (Ubuntu) platform. */ /** The latest supported LLVM version for the Linux (Ubuntu) platform. */
const MAX_UBUNTU: string = "14.0.0" const MAX_UBUNTU: string = "15.0.2"
/** Gets an LLVM download URL for the Linux (Ubuntu) platform. */ /** Gets an LLVM download URL for the Linux (Ubuntu) platform. */
export function getLinuxUrl(versionGiven: string): string { export function getLinuxUrl(versionGiven: string): string {