-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathaction.yml
37 lines (37 loc) · 919 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
32
33
34
35
36
37
name: Meson Build
author: BSFishy
description: Run a Meson task during your Actions workflow
runs:
using: 'node12'
main: 'dist/index.js'
branding:
icon: 'arrow-down'
color: 'green'
inputs:
action:
description: The action to run
required: true
directory:
description: The directory to build the project to
required: true
default: 'build'
setup-options:
description: Additional options to pass to Meson during setup
required: false
default: ''
options:
description: Additional options to pass to Meson
required: false
default: ''
meson-version:
description: The version of Meson to use
required: true
default: '0.53.2'
ninja-version:
description: The version of Ninja to use
required: true
default: '1.9.0.post1'
gcovr-version:
description: The version of gcovr to use (If doing coverage)
required: true
default: '4.2'