Skip to content

Commit 154369f

Browse files
committed
fix: enable llvm 14.0.1 support for ubuntu
1 parent 49248d2 commit 154369f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/llvm/__tests__/llvm.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ describe("setup-llvm", () => {
2727
it("Finds valid LLVM URLs", async () => {
2828
await Promise.all(
2929
[
30-
// "14.0.1", fails on ubuntu
30+
"14.0.1",
3131
"14.0.0",
3232
"13.0.0",
3333
"12.0.0",

src/llvm/llvm.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -157,11 +157,11 @@ const UBUNTU: { [key: string]: string } = {
157157
"13.0.0": "-ubuntu-20.04",
158158
"13.0.1": "-ubuntu-18.04",
159159
"14.0.0": "-ubuntu-18.04",
160-
// "14.0.1": "-ubuntu-18.04",
160+
"14.0.1": "-ubuntu-18.04",
161161
}
162162

163163
/** The latest supported LLVM version for the Linux (Ubuntu) platform. */
164-
const MAX_UBUNTU: string = "14.0.0"
164+
const MAX_UBUNTU: string = "14.0.1"
165165

166166
/** Gets an LLVM download URL for the Linux (Ubuntu) platform. */
167167
function getLinuxUrl(versionGiven: string): string {

0 commit comments

Comments
 (0)