Skip to content

Commit 0f23eb0

Browse files
authored
Merge pull request #210 from aminya/versions [skip ci]
2 parents 0343736 + 7987f91 commit 0f23eb0

File tree

8 files changed

+25
-19
lines changed

8 files changed

+25
-19
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: 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: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,10 +72,12 @@ export const VERSIONS: Set<string> = getVersions([
7272
"17.0.1",
7373
"17.0.2",
7474
"17.0.3",
75+
"17.0.4",
76+
"17.0.5",
7577
])
7678

7779
/** The LLVM versions that were never released for the Windows platform. */
78-
const WIN32_MISSING: Set<string> = new Set(["10.0.1", "15.0.5", "15.0.6"])
80+
const WIN32_MISSING: Set<string> = new Set(["10.0.1", "15.0.5", "15.0.6", "17.0.5"])
7981

8082
/** The LLVM versions that were never released for the Darwin platform. */
8183
const DARWIN_MISSING = new Set([
@@ -107,6 +109,8 @@ const DARWIN_MISSING = new Set([
107109
"17.0.1",
108110
"17.0.2",
109111
"17.0.3",
112+
"17.0.4",
113+
"17.0.5",
110114
])
111115

112116
/**
@@ -169,10 +173,12 @@ const UBUNTU_SUFFIX_MAP: { [key: string]: string } = {
169173
"16.0.3": "-ubuntu-22.04",
170174
"16.0.4": "-ubuntu-22.04",
171175
"17.0.2": "-ubuntu-22.04",
176+
"17.0.4": "-ubuntu-22.04",
177+
"17.0.5": "-ubuntu-22.04",
172178
}
173179

174180
/** The latest supported LLVM version for the Linux (Ubuntu) platform. */
175-
const MAX_UBUNTU: string = "17.0.2"
181+
const MAX_UBUNTU: string = "17.0.5"
176182

177183
//================================================
178184
// URL

src/versions/default_versions.ts

Lines changed: 8 additions & 8 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.3"
9+
return "17.0.4"
1010
case "linux":
1111
// used for non-ubuntu (Fedora, Arch)
12-
return "17.0.2-ubuntu-22.04"
12+
return "17.0.5-ubuntu-22.04"
1313
case "darwin":
1414
return "15.0.3"
1515
default:
16-
return "17.0.3"
16+
return "17.0.5"
1717
}
1818
}
1919

@@ -24,10 +24,10 @@ export const DefaultVersions: Record<string, string | undefined> = {
2424
ninja: "1.11.1", // https://github.com/ninja-build/ninja/releases
2525
cmake: "3.27.4", // https://github.com/Kitware/CMake/releases
2626
gcovr: "6.0", // https://pypi.org/project/gcovr/
27-
conan: "1.60.2", // https://github.com/conan-io/conan/releases
28-
meson: "1.2.1", // https://github.com/mesonbuild/meson/releases
27+
conan: "1.62.0", // https://github.com/conan-io/conan/releases
28+
meson: "1.2.3", // https://github.com/mesonbuild/meson/releases
2929
kcov: "42", // https://github.com/SimonKagstrom/kcov/releases
30-
task: "3.29.1", // https://github.com/go-task/task/releases
30+
task: "3.31.0", // https://github.com/go-task/task/releases
3131
doxygen: isArch() ? "1.9.8-1" : "1.9.8", // https://www.doxygen.nl/download.html // https://packages.ubuntu.com/search?suite=all&arch=any&searchon=names&keywords=doxygen // https://formulae.brew.sh/formula/doxygen // https://archlinux.org/packages/extra/x86_64/doxygen/
3232
gcc: isArch() ? "13.2.1-3" : "13", // https://github.com/brechtsanders/winlibs_mingw/releases and // https://packages.ubuntu.com/search?suite=all&arch=any&searchon=names&keywords=gcc
3333
//mingw: isArch() ? "12.2.0-1" : "8", // https://packages.ubuntu.com/search?suite=all&arch=any&searchon=names&keywords=mingw-w64 // https://archlinux.org/packages/extra/x86_64/mingw-w64-gcc/
@@ -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.2-ubuntu-22.04",
58-
20: "17.0.2-ubuntu-22.04",
57+
22: "17.0.5-ubuntu-22.04",
58+
20: "17.0.5-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)