-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathaction.yml
42 lines (41 loc) · 1.3 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: "Valgrind Checker"
description: "Check for memory leaks, poorly managed or even not managed memory, and unclosed file descriptors."
branding:
icon: "archive"
color: "blue"
inputs:
binary_args:
description: "The args to pass to the binary once started (string format)"
required: false
binary_path:
description: "The binary to run Valgrind over"
required: true
ld_library_path:
description: "Custom library path (for dymanic locally-compiled libraries)"
required: false
redzone_size:
description: "Valgrind's padding blocks protection (redzone) in bytes"
required: false
default: 16
track_file_descriptors:
description: "Whether or not to track file descriptors (true or false)"
required: false
default: true
treat_error_as_warning:
description: "The workflow won't exit as error, and error annotations will be replaced by warnings"
required: false
default: false
valgrind_suppressions:
description: "String containing Valgrind suppressions (will be put inside a suppressions file)"
required: false
verbose:
description: "Asking Valgrind to be verbose"
required: false
default: false
timeout:
description: "Limit running time of the binary"
required: false
default: 0
runs:
using: "docker"
image: "Dockerfile"