Skip to content

Commit e003dfd

Browse files
committed
feat: find LLVM assets based on platform/arch/version heuristics
1 parent 22bfbec commit e003dfd

13 files changed

+361
-434
lines changed

cspell.config.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ ignorePaths:
1313
- patches/*.patch
1414
- "**/github_*.json"
1515
- "**/llvm_org_releases.json"
16-
1716
words:
1817
- aarch
1918
- aminya
2019
- applellvm
20+
- armv
2121
- bazel
2222
- bazelisk
2323
- biome

dist/legacy/setup-cpp.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/legacy/setup-cpp.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/modern/setup-cpp.mjs

+1-1
Large diffs are not rendered by default.

dist/modern/setup-cpp.mjs.map

+1-1
Large diffs are not rendered by default.

src/__tests__/main.test.ts

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { parseArgs } from "../cli-options.js"
22
import { getCompilerInfo } from "../compilers.js"
33
import type { Inputs } from "../tool.js"
4-
import { DefaultLinuxVersion } from "../versions/default_versions.js"
4+
import { DefaultUbuntuVersion } from "../versions/default_versions.js"
55
import { getVersion, syncVersions } from "../versions/versions.js"
66

77
jest.setTimeout(300000)
@@ -55,18 +55,18 @@ describe("getVersion", () => {
5555
it("gcovr", () => {
5656
expect(getVersion("gcovr", "5.0")).toBe("5.0")
5757
if (process.platform === "linux") {
58-
expect(getVersion("gcovr", "true", [22, 4])).toBe(DefaultLinuxVersion.gcovr![22])
59-
expect(getVersion("gcovr", "true", [20, 4])).toBe(DefaultLinuxVersion.gcovr![20])
60-
expect(getVersion("gcovr", "true", [18, 4])).toBe(DefaultLinuxVersion.gcovr![18])
58+
expect(getVersion("gcovr", "true", [22, 4])).toBe(DefaultUbuntuVersion.gcovr![22])
59+
expect(getVersion("gcovr", "true", [20, 4])).toBe(DefaultUbuntuVersion.gcovr![20])
60+
expect(getVersion("gcovr", "true", [18, 4])).toBe(DefaultUbuntuVersion.gcovr![18])
6161
}
6262
})
6363

6464
it("llvm", () => {
6565
expect(getVersion("llvm", "13.0.0")).toBe("13.0.0")
6666
if (process.platform === "linux") {
67-
expect(getVersion("llvm", "true", [20, 4])).toBe(DefaultLinuxVersion.llvm![20])
68-
expect(getVersion("llvm", "true", [18, 4])).toBe(DefaultLinuxVersion.llvm![18])
69-
expect(getVersion("llvm", "true", [16, 4])).toBe(DefaultLinuxVersion.llvm![16])
67+
expect(getVersion("llvm", "true", [20, 4])).toBe(DefaultUbuntuVersion.llvm![20])
68+
expect(getVersion("llvm", "true", [18, 4])).toBe(DefaultUbuntuVersion.llvm![18])
69+
expect(getVersion("llvm", "true", [16, 4])).toBe(DefaultUbuntuVersion.llvm![16])
7070
}
7171
})
7272
})

src/gcc/gcc.ts

+4
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,10 @@ async function getGccPackageInfo(version: string, platform: NodeJS.Platform, arc
4848
},
4949
)
5050

51+
if (asset === undefined) {
52+
throw new Error(`No asset found for version ${version} and arch ${arch}`)
53+
}
54+
5155
return {
5256
binRelativeDir: "bin/",
5357
binFileName: addExeExt("g++"),

src/llvm/__tests__/llvm.test.ts

+8-40
Original file line numberDiff line numberDiff line change
@@ -3,25 +3,16 @@ import { fileURLToPath } from "url"
33
import * as io from "@actions/io"
44
import { execaSync } from "execa"
55
import { chmod } from "fs/promises"
6-
import { isUrlOnline } from "is-url-online"
76
import { addExeExt } from "patha"
87
import { ubuntuVersion } from "../../utils/env/ubuntu_version.js"
9-
import { getSpecificVersionAndUrl } from "../../utils/setup/version.js"
108
import { setupTmpDir, testBin } from "../../utils/tests/test-helpers.js"
119
import { getVersion } from "../../versions/versions.js"
1210
import { setupClangFormat, setupClangTools, setupLLVM } from "../llvm.js"
13-
import { VERSIONS, getLinuxUrl, getUrl } from "../llvm_url.js"
11+
import { getLLVMAssetURL } from "../llvm_url.js"
1412

1513
const dirname = typeof __dirname === "string" ? __dirname : path.dirname(fileURLToPath(import.meta.url))
1614

1715
jest.setTimeout(400000)
18-
async function testUrl(version: string) {
19-
const [specificVersion, url] = await getSpecificVersionAndUrl(VERSIONS, process.platform, version, getUrl)
20-
21-
if (!(await isUrlOnline(url))) {
22-
throw new Error(`Failed to install Version: ${version} => ${specificVersion} \n URL: ${url}`)
23-
}
24-
}
2516

2617
describe("setup-llvm", () => {
2718
let directory: string
@@ -31,38 +22,15 @@ describe("setup-llvm", () => {
3122

3223
it("Finds URL for ubuntu version", async () => {
3324
expect(
34-
await getSpecificVersionAndUrl(
35-
VERSIONS,
36-
"linux",
37-
"13.0.0-ubuntu-16.04",
38-
(_plantform, version) => getLinuxUrl(version),
39-
),
40-
).toStrictEqual([
41-
"13.0.0-ubuntu-16.04",
25+
await getLLVMAssetURL("linux", "x86_64", "13.0.0"),
26+
).toStrictEqual(
4227
"https://github.com/llvm/llvm-project/releases/download/llvmorg-13.0.0/clang+llvm-13.0.0-x86_64-linux-gnu-ubuntu-16.04.tar.xz",
43-
])
28+
)
4429
expect(
45-
await getSpecificVersionAndUrl(
46-
VERSIONS,
47-
"linux",
48-
"13.0.1-ubuntu-18.04",
49-
(_plantform, version) => getLinuxUrl(version),
50-
),
51-
).toStrictEqual([
52-
"13.0.1-ubuntu-18.04",
30+
await getLLVMAssetURL("linux", "x86_64", "13.0.1"),
31+
).toStrictEqual(
5332
"https://github.com/llvm/llvm-project/releases/download/llvmorg-13.0.1/clang+llvm-13.0.1-x86_64-linux-gnu-ubuntu-18.04.tar.xz",
54-
])
55-
expect(
56-
await getSpecificVersionAndUrl(
57-
VERSIONS,
58-
"linux",
59-
"13.0.0-ubuntu-20.04",
60-
(_plantform, version) => getLinuxUrl(version),
61-
),
62-
).toStrictEqual([
63-
"13.0.0-ubuntu-20.04",
64-
"https://github.com/llvm/llvm-project/releases/download/llvmorg-13.0.0/clang+llvm-13.0.0-x86_64-linux-gnu-ubuntu-20.04.tar.xz",
65-
])
33+
)
6634
})
6735

6836
it("Finds valid LLVM URLs", async () => {
@@ -89,7 +57,7 @@ describe("setup-llvm", () => {
8957
"5",
9058
"5.0.0",
9159
"4",
92-
].map((version) => testUrl(version)),
60+
].map((version) => getLLVMAssetURL(process.platform, process.arch, version)),
9361
)
9462
})
9563

0 commit comments

Comments
 (0)