Skip to content

Commit 0487e80

Browse files
committed
fix: default to LLVM 17
1 parent c8867da commit 0487e80

File tree

7 files changed

+23
-23
lines changed

7 files changed

+23
-23
lines changed

dist/actions/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/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: 8 additions & 8 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/versions/default_versions.ts

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@ import { isArch } from "../utils/env/isArch"
66
function getLLVMDefault() {
77
switch (process.platform) {
88
case "win32":
9-
return "18.1.2"
9+
return "17.0.6"
1010
case "linux":
1111
// used for non-ubuntu (Fedora, Arch)
1212
// the suffixes relate to the suffix in the llvm releases
1313
return "17.0.6-ubuntu-22.04"
1414
case "darwin":
1515
return "15.0.3"
1616
default:
17-
return "18.1.2"
17+
return "17.0.6"
1818
}
1919
}
2020

@@ -56,22 +56,22 @@ export const DefaultLinuxVersion: Record<string, Record<number, string> | undefi
5656
},
5757
// the suffixes relate to the suffix in the llvm releases
5858
llvm: {
59-
22: "18.1.2",
60-
20: "18.1.2",
59+
22: "17.0.6-ubuntu-22.04",
60+
20: "17.0.6-ubuntu-22.04",
6161
18: "15.0.6-ubuntu-18.04",
6262
16: "15.0.6-ubuntu-18.04",
6363
14: "13.0.0-ubuntu-16.04",
6464
},
6565
clangtidy: {
66-
22: "18.1.2",
67-
20: "18.1.2",
66+
22: "17.0.6-ubuntu-22.04",
67+
20: "17.0.6-ubuntu-22.04",
6868
18: "15.0.6-ubuntu-18.04",
6969
16: "15.0.6-ubuntu-18.04",
7070
14: "13.0.0-ubuntu-16.04",
7171
},
7272
clangformat: {
73-
22: "18.1.2",
74-
20: "18.1.2",
73+
22: "17.0.6-ubuntu-22.04",
74+
20: "17.0.6-ubuntu-22.04",
7575
18: "15.0.6-ubuntu-18.04",
7676
16: "15.0.6-ubuntu-18.04",
7777
14: "13.0.0-ubuntu-16.04",

0 commit comments

Comments
 (0)