forked from KyleMayes/install-llvm-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
31 lines (27 loc) · 835 Bytes
/
action.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
name: "Install LLVM and Clang"
description: "Downloads and installs LLVM and Clang binaries."
branding:
icon: "arrow-down-circle"
color: "black"
inputs:
version:
description: "The version of LLVM and Clang binaries to install."
required: true
force-version:
description: "Whether to accept unsupported LLVM and Clang versions."
required: false
ubuntu-version:
description: "The version override of Ubuntu to use for the Linux platform."
required: false
directory:
description: "The directory to install LLVM and Clang binaries to."
required: true
cached:
description: "Whether the LLVM and Clang binaries were cached."
required: false
outputs:
version:
description: "The full version of LLVM and Clang binaries installed."
runs:
using: "node12"
main: "dist/index.js"