-
Notifications
You must be signed in to change notification settings - Fork 4
/
action.yml
42 lines (42 loc) · 1.26 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
name: 'Download and install Boost'
description: 'Download and install Boost'
author: 'MarkusJx'
inputs:
boost_version:
description: 'The boost version to install, e.g. "1.73.0"'
required: true
toolset:
description: 'The toolset used to compile boost, e.g. "msvc"'
required: false
default: ''
platform_version:
description: 'The platform version boost was compiled on, e.g. "18.04"'
required: false
default: ''
link:
description: 'Whether the boost libraries are linked statically or dynamically'
required: false
default: ''
arch:
description: 'The architecture the binaries were built for'
required: false
default: 'x86'
boost_install_dir:
description: 'The dirctory to install boost into'
required: false
default: ''
cache:
description: 'Wheter to use actions/cache to improve build times'
required: false
default: true
outputs:
BOOST_ROOT:
description: 'The path to the boost installation, e.g. to be used in CMake'
BOOST_VER:
description: 'The boost version installed'
runs:
using: 'node20'
main: 'dist/index.js'
branding:
icon: 'activity'
color: 'gray-dark'