-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeploy-config.json
122 lines (122 loc) · 2.66 KB
/
deploy-config.json
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"project_name": "cc-auth",
"langs": [
"Rust"
],
"targets": [
{
"arch": "x86_64",
"os": "Linux",
"derivative": "any",
"version": "No"
},
{
"arch": "wasm32",
"os": {
"Other": "web"
},
"derivative": "any",
"version": "No"
}
],
"deploy_toolkit": null,
"cache_files": [
".git",
"Cargo.lock",
"target"
],
"pipelines": [
{
"title": "lint",
"desc": "Got from `LBRP Pipeline`.",
"info": "[email protected]",
"tags": [
"cargo",
"upx",
"reqwest"
],
"actions": [
{
"title": "Lint x86_64",
"desc": "",
"info": "[email protected]",
"tags": [
"cargo",
"clippy"
],
"action": {
"PreBuild": {
"supported_langs": [
"Rust"
],
"commands": [
{
"bash_c": "cargo clippy",
"ignore_fails": false,
"show_success_output": true,
"show_bash_c": true
}
]
}
}
},
{
"title": "Lint wasm32",
"desc": "",
"info": "[email protected]",
"tags": [
"cargo",
"clippy"
],
"action": {
"PreBuild": {
"supported_langs": [
"Rust"
],
"commands": [
{
"bash_c": "cargo clippy --target wasm32-unknown-unknown",
"ignore_fails": false,
"show_success_output": true,
"show_bash_c": true
}
]
}
}
},
{
"title": "Format",
"desc": "Format `.rs` files",
"info": "[email protected]",
"tags": [
"rust",
"cargo",
"fmt"
],
"action": {
"PreBuild": {
"supported_langs": [
"Rust"
],
"commands": [
{
"bash_c": "cargo fmt -- --config tab_spaces=2,max_width=120 */**/*.rs",
"ignore_fails": false,
"show_success_output": false,
"show_bash_c": true,
"only_when_fresh": false
}
]
}
},
"exec_in_project_dir": true
}
],
"default": true
}
],
"artifacts": [],
"variables": [],
"place_artifacts_into_project_root": [],
"version": 2
}