-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
35 lines (34 loc) · 1 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
name: 'MPTCP Upstream Build Export Action'
description: 'Build any changes on the "export" branch'
inputs:
each_commit:
description: 'Set it to true to validate the compilation of each commit'
required: false
default: 'true'
ccache_maxsize:
description: 'Set the maximum size for CCache in {{ github.workspace }}/.ccache dir'
required: false
default: '5G'
defconfig:
description: 'Defconfig to load (x86_64 or i386)'
required: false
default: 'x86_64'
ipv6:
description: 'With or without IPv6 kconfig?'
required: false
default: 'with_ipv6'
mptcp:
description: 'With or without MPTCP kconfig?'
required: false
default: 'with_mptcp'
checkpatch:
description: 'Set it to true to validate checkpatch exclusively'
required: false
default: 'false'
debug:
description: 'Set it to true to enable debug (set -x)'
required: false
default: 'false'
runs:
using: 'docker'
image: 'docker://mptcp/mptcp-upstream-validate-export-action:latest'