forked from stupidloud/cachewrtbuild
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathaction.yml
More file actions
46 lines (46 loc) · 1.13 KB
/
action.yml
File metadata and controls
46 lines (46 loc) · 1.13 KB
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
name: 'Cache Wrt Build'
description: 'Cache builds to speed up openwrt compilation'
inputs:
ccache:
description: 'check if to cache ccache'
required: false
default: 'false'
toolchain:
description: 'check if to cache toolchain'
required: false
default: 'true'
skip:
description: 'check if to skip the compilation of toolchain'
required: false
default: 'true'
clean:
description: 'set to clean cache'
required: false
default: 'false'
prefix:
description: 'path prefix to openwrt build directory'
required: false
default: ''
mixkey:
description: 'mix a key to identify a cache when you build openwrt for different architecture'
required: false
default: ''
skip_saving:
description: 'skip saving'
required: false
default: 'false'
extra_paths:
description: 'additional cache directories to include (one per line, can specify multiple)'
required: false
default: ''
outputs:
hit:
description: 'indicate cache found'
runs:
using: 'node24'
main: 'fetch.js'
post: 'save.js'
post-if: 'success()'
branding:
icon: 'archive'
color: 'gray-dark'