Skip to content

Commit 6a6a1ba

Browse files
authored
Merge pull request #167 from aminya/llvm
2 parents db1ac24 + 8f35efa commit 6a6a1ba

File tree

7 files changed

+17
-5
lines changed

7 files changed

+17
-5
lines changed

dist/node12/setup-cpp.js

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/node12/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/node16/setup-cpp.js

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/node16/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.

pnpm-lock.yaml

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/__tests__/llvm.test.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ describe("setup-llvm", () => {
5656
it("Finds valid LLVM URLs", async () => {
5757
await Promise.all(
5858
[
59+
...(process.platform === "darwin" ? [] : ["16.0.2", "16.0.0"]),
5960
"15.0.2",
6061
// "14.0.1",
6162
"14.0.0",

src/llvm/llvm_url.ts

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,10 @@ export const VERSIONS: Set<string> = getVersions([
6161
"15.0.4",
6262
"15.0.5",
6363
"15.0.6",
64+
"15.0.7",
65+
"16.0.0",
66+
"16.0.1",
67+
"16.0.2",
6468
])
6569

6670
/** The LLVM versions that were never released for the Windows platform. */
@@ -81,9 +85,14 @@ const DARWIN_MISSING = new Set([
8185
"11.0.1",
8286
"11.1.0",
8387
"12.0.1",
88+
// missing x86_64
89+
// TODO add arm64 support
8490
"15.0.4",
8591
"15.0.5",
8692
"15.0.6",
93+
"16.0.0",
94+
"16.0.1",
95+
"16.0.2",
8796
])
8897

8998
/**
@@ -141,6 +150,8 @@ const UBUNTU_SUFFIX_MAP: { [key: string]: string } = {
141150
"15.0.2": "-rhel86",
142151
"15.0.5": "-ubuntu-18.04",
143152
"15.0.6": "-ubuntu-18.04",
153+
"16.0.0": "-ubuntu-18.04",
154+
"16.0.2": "-ubuntu-22.04",
144155
}
145156

146157
/** The latest supported LLVM version for the Linux (Ubuntu) platform. */

0 commit comments

Comments
 (0)