mirror of https://github.com/aminya/setup-cpp
test: llvm 15.0.2
This commit is contained in:
parent
007a51ecba
commit
41ac067e60
|
@ -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
|
||||||
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -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",
|
||||||
|
|
|
@ -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 {
|
||||||
|
|
Loading…
Reference in New Issue