Skip to content

Commit

Permalink
Add support for LLVM 15.0.2 through 15.0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
KyleMayes committed Dec 7, 2022
1 parent 665aaf9 commit 8852e4d
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 6 deletions.
22 changes: 18 additions & 4 deletions dist/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

11 changes: 10 additions & 1 deletion index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ const VERSIONS: Set<string> = getVersions([
"12.0.0", "12.0.1",
"13.0.0", "13.0.1",
"14.0.0", "14.0.1", "14.0.2", "14.0.3", "14.0.4", "14.0.5", "14.0.6",
"15.0.0", "15.0.1",
"15.0.0", "15.0.1", "15.0.2", "15.0.3", "15.0.4", "15.0.5", "15.0.6",
]);

/** Gets the ordering of two (specific or minimum) LLVM versions. */
Expand Down Expand Up @@ -134,6 +134,10 @@ const DARWIN_MISSING: Set<string> = new Set([
"11.0.1",
"11.1.0",
"12.0.1",
"15.0.3",
"15.0.4",
"15.0.5",
"15.0.6",
]);

/** Gets an LLVM download URL for the Darwin platform. */
Expand Down Expand Up @@ -164,6 +168,9 @@ const LINUX_MISSING: Set<string> = new Set([
"14.0.6",
"15.0.0",
"15.0.1",
"15.0.2",
"15.0.3",
"15.0.4",
]);

/**
Expand Down Expand Up @@ -210,6 +217,8 @@ const UBUNTU: { [key: string]: string } = {
"13.0.0": "-ubuntu-20.04",
"13.0.1": "-ubuntu-18.04",
"14.0.0": "-ubuntu-18.04",
"15.0.5": "-ubuntu-18.04",
"15.0.6": "-ubuntu-18.04",
};

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

0 comments on commit 8852e4d

Please sign in to comment.