@@ -3,25 +3,16 @@ import { fileURLToPath } from "url"
3
3
import * as io from "@actions/io"
4
4
import { execaSync } from "execa"
5
5
import { chmod } from "fs/promises"
6
- import { isUrlOnline } from "is-url-online"
7
6
import { addExeExt } from "patha"
8
7
import { ubuntuVersion } from "../../utils/env/ubuntu_version.js"
9
- import { getSpecificVersionAndUrl } from "../../utils/setup/version.js"
10
8
import { setupTmpDir , testBin } from "../../utils/tests/test-helpers.js"
11
9
import { getVersion } from "../../versions/versions.js"
12
10
import { setupClangFormat , setupClangTools , setupLLVM } from "../llvm.js"
13
- import { VERSIONS , getLinuxUrl , getUrl } from "../llvm_url.js"
11
+ import { getLLVMAssetURL } from "../llvm_url.js"
14
12
15
13
const dirname = typeof __dirname === "string" ? __dirname : path . dirname ( fileURLToPath ( import . meta. url ) )
16
14
17
15
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
- }
25
16
26
17
describe ( "setup-llvm" , ( ) => {
27
18
let directory : string
@@ -31,38 +22,15 @@ describe("setup-llvm", () => {
31
22
32
23
it ( "Finds URL for ubuntu version" , async ( ) => {
33
24
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 (
42
27
"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
+ )
44
29
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 (
53
32
"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
+ )
66
34
} )
67
35
68
36
it ( "Finds valid LLVM URLs" , async ( ) => {
@@ -89,7 +57,7 @@ describe("setup-llvm", () => {
89
57
"5" ,
90
58
"5.0.0" ,
91
59
"4" ,
92
- ] . map ( ( version ) => testUrl ( version ) ) ,
60
+ ] . map ( ( version ) => getLLVMAssetURL ( process . platform , process . arch , version ) ) ,
93
61
)
94
62
} )
95
63
0 commit comments