Skip to content

Commit

Permalink
Fix 16.0.5 and 16.0.6 support
Browse files Browse the repository at this point in the history
  • Loading branch information
KyleMayes committed Jul 4, 2023
1 parent b926116 commit c135b39
Show file tree
Hide file tree
Showing 3 changed files with 65 additions and 60 deletions.
117 changes: 60 additions & 57 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.

6 changes: 4 additions & 2 deletions index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ const VERSIONS: Set<string> = getVersions([
"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.2", "15.0.3", "15.0.4", "15.0.5", "15.0.6", "15.0.7",
"16.0.0", "16.0.1", "16.0.2", "16.0.3", "16.0.4", "16.0.5",
"16.0.0", "16.0.1", "16.0.2", "16.0.3", "16.0.4", "16.0.5", "16.0.6",
]);

/** Gets the ordering of two (specific or minimum) LLVM versions. */
Expand Down Expand Up @@ -147,6 +147,7 @@ const DARWIN_MISSING: Set<string> = new Set([
"16.0.3",
"16.0.4",
"16.0.5",
"16.0.6",
]);

/** The Darwin version suffixes which are applied for some releases. */
Expand Down Expand Up @@ -187,6 +188,8 @@ const LINUX_MISSING: Set<string> = new Set([
"15.0.4",
"15.0.7",
"16.0.1",
"16.0.5",
"16.0.6",
]);

/**
Expand Down Expand Up @@ -239,7 +242,6 @@ const UBUNTU: { [key: string]: string } = {
"16.0.2": "-ubuntu-22.04",
"16.0.3": "-ubuntu-22.04",
"16.0.4": "-ubuntu-22.04",
"16.0.5": "-ubuntu-22.04",
};

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

0 comments on commit c135b39

Please sign in to comment.