-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathaction.yml
47 lines (46 loc) · 1.81 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
43
44
45
46
47
name: 'Compile Arduino Sketches'
description: 'Checks whether Arduino sketches will compile and produces a report of data from the compilations'
inputs:
cli-version:
description: 'Version of Arduino CLI to use when building'
default: 'latest'
required: true
fqbn:
description: 'Full qualified board name, with Boards Manager URL if needed'
default: 'arduino:avr:uno'
required: true
libraries:
description: 'YAML-format list of library dependencies to install'
default: '- source-path: ./'
required: true
platforms:
description: 'YAML-format list of platform dependencies to install'
default: ''
required: true
sketch-paths:
description: 'YAML-format list of paths containing sketches to compile.'
default: '- examples'
required: true
verbose:
description: 'Set to true to show verbose output in the log'
default: 'false'
required: true
sketches-report-path:
description: 'Path in which to save a JSON formatted file containing data from the sketch compilations'
default: 'sketches-reports'
required: true
github-token:
description: 'GitHub access token used to get information from the GitHub API. Only needed if you are using the deltas report feature in a private repository.'
default: ''
required: true
enable-deltas-report:
description: 'Set to true to cause the action to determine the change in memory usage and compiler warnings of the compiled sketches between the head and base refs of a PR and the immediate parent commit of a push'
default: 'false'
required: true
enable-warnings-report:
description: 'Set to true to cause the action to record the compiler warning count for each sketch compilation in the sketches report'
default: 'false'
required: true
runs:
using: 'docker'
image: 'Dockerfile'