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
48
49
50
51
52
53
54
55
56
57
58
59
local blaze = std.extVar('blaze');
{
targets: {
source: {
cache: {
invalidateWhen: {
inputChanges: [
'src/**',
'Cargo.toml'
],
outputChanges: ['Cargo.lock']
}
}
},
lint: {
executor: 'std:commands',
options: {
commands: (if blaze.vars.lint.fix then [
{
program: 'cargo',
arguments: ['fmt']
}
] else []) + [
{
program: 'cargo',
arguments: ['clippy']
},
{
program: 'cargo',
arguments: ['check']
}
]
}
},
publish: {
executor: {
url: 'https://github.com/rnza0u/blaze-executors.git',
path: 'cargo-publish',
format: 'Git',
pull: true
},
options: {
releaseVersion: blaze.vars.publish.version
}
},
clean: {
executor: 'std:commands',
options: {
commands: [
{
program: 'cargo',
arguments: ['clean']
}
]
}
}
}
}