Skip to content

Commit e05c1f4

Browse files
committed
fix: update llvm to 17.0.6
1 parent bdba352 commit e05c1f4

File tree

8 files changed

+24
-21
lines changed

8 files changed

+24
-21
lines changed

dist/actions/setup-cpp.js

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/actions/setup-cpp.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/legacy/setup-cpp.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/legacy/setup-cpp.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/modern/setup-cpp.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/modern/setup-cpp.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/llvm/llvm_url.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@ export const VERSIONS: Set<string> = getVersions([
7474
"17.0.3",
7575
"17.0.4",
7676
"17.0.5",
77+
"17.0.6",
7778
])
7879

7980
/** The LLVM versions that were never released for the Windows platform. */
@@ -111,6 +112,7 @@ const DARWIN_MISSING = new Set([
111112
"17.0.3",
112113
"17.0.4",
113114
"17.0.5",
115+
"17.0.6",
114116
])
115117

116118
/**
@@ -175,10 +177,11 @@ const UBUNTU_SUFFIX_MAP: { [key: string]: string } = {
175177
"17.0.2": "-ubuntu-22.04",
176178
"17.0.4": "-ubuntu-22.04",
177179
"17.0.5": "-ubuntu-22.04",
180+
"17.0.6": "-ubuntu-22.04",
178181
}
179182

180183
/** The latest supported LLVM version for the Linux (Ubuntu) platform. */
181-
const MAX_UBUNTU: string = "17.0.5"
184+
const MAX_UBUNTU: string = "17.0.6"
182185

183186
//================================================
184187
// URL

src/versions/default_versions.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@ import { isArch } from "../utils/env/isArch"
66
function getLLVMDefault() {
77
switch (process.platform) {
88
case "win32":
9-
return "17.0.4"
9+
return "17.0.6"
1010
case "linux":
1111
// used for non-ubuntu (Fedora, Arch)
12-
return "17.0.5-ubuntu-22.04"
12+
return "17.0.6-ubuntu-22.04"
1313
case "darwin":
1414
return "15.0.3"
1515
default:
16-
return "17.0.5"
16+
return "17.0.6"
1717
}
1818
}
1919

@@ -54,8 +54,8 @@ export const DefaultLinuxVersion: Record<string, Record<number, string> | undefi
5454
20: "7.0.0-2",
5555
},
5656
llvm: {
57-
22: "17.0.5-ubuntu-22.04",
58-
20: "17.0.5-ubuntu-22.04",
57+
22: "17.0.6-ubuntu-22.04",
58+
20: "17.0.6-ubuntu-22.04",
5959
18: "15.0.6-ubuntu-18.04",
6060
16: "15.0.6-ubuntu-18.04",
6161
14: "13.0.0-ubuntu-16.04",

0 commit comments

Comments
 (0)