mirror of https://github.com/aminya/setup-cpp
feat: support up to LLVM 15.0.6
This commit is contained in:
parent
24f1544102
commit
cd3be8a4d2
|
@ -57,6 +57,11 @@ export const VERSIONS: Set<string> = getVersions([
|
||||||
"15.0.0",
|
"15.0.0",
|
||||||
"15.0.1",
|
"15.0.1",
|
||||||
"15.0.2",
|
"15.0.2",
|
||||||
|
"15.0.3",
|
||||||
|
"15.0.4",
|
||||||
|
// missing binaries for Windows
|
||||||
|
// "15.0.5",
|
||||||
|
// "15.0.6",
|
||||||
])
|
])
|
||||||
|
|
||||||
/** The LLVM versions that were never released for the Darwin platform. */
|
/** The LLVM versions that were never released for the Darwin platform. */
|
||||||
|
@ -129,10 +134,12 @@ const UBUNTU_SUFFIX_MAP: { [key: string]: string } = {
|
||||||
"14.0.0": "-ubuntu-18.04",
|
"14.0.0": "-ubuntu-18.04",
|
||||||
// "14.0.1": "-ubuntu-18.04", // only available for powerpc64le
|
// "14.0.1": "-ubuntu-18.04", // only available for powerpc64le
|
||||||
"15.0.2": "-rhel86",
|
"15.0.2": "-rhel86",
|
||||||
|
"15.0.5": "-ubuntu-18.04",
|
||||||
|
"15.0.6": "-ubuntu-18.04",
|
||||||
}
|
}
|
||||||
|
|
||||||
/** The latest supported LLVM version for the Linux (Ubuntu) platform. */
|
/** The latest supported LLVM version for the Linux (Ubuntu) platform. */
|
||||||
const MAX_UBUNTU: string = "15.0.2"
|
const MAX_UBUNTU: string = "15.0.6"
|
||||||
|
|
||||||
//================================================
|
//================================================
|
||||||
// URL
|
// URL
|
||||||
|
|
Loading…
Reference in New Issue