-
Notifications
You must be signed in to change notification settings - Fork 0
/
.atom-build.yml-EXAMPLE
384 lines (384 loc) · 10.7 KB
/
.atom-build.yml-EXAMPLE
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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
# This is build system template.
# Build module used: https://github.com/noseglid/atom-build
# Build Logic for this package is not included, you can find it in separate [repo](https://github.com/trianglesis/BMC_TPL_IDE)
# File formatten in YML type.
# More info: https://github.com/noseglid/atom-build#specify-a-custom-build-command
#
# =============================================
#
# Additional build options listed here:
# -disco_mode playback | record | standard
# -host_list - list of host IP sep by comma
# -l info | quiet | warn | debug | output | error
# =============================================
# VARIABLES:
# You can assign own variables to use them in each target, as described below:
# FORMAT ASSIGN:| MY_ADDM_1: &MY_ADDM_1 "192.168.1.1"
# FORMAT CALL:| *MY_ADDM_1
#
# =============================================
# IMPORTANT!
# CHECK: string in double qoutes with two args in: "path_to_python_3<whitespace>path_to_check.py_module.""
# ADDM_IP_11: IP address of running BMC Discovery (ADDM) appliance.
# user_see_note: User should not contain any symbols from this list: ['"-+=|\/] and whitespaces.
# password_see_note: Password should not contain any symbols from this list: ['"-+=|\/] and whitespaces.
# HOST_LIST: list of ip addresses without spaces separated by coma
# =============================================
#
PYTHON27: &PYTHON27 C:\Python27\python.exe
CHECK: &CHECK "C:\\Python34\\python.exe D:\\BMC_TPL_IDE\\bmc_tplpre\\check.py"
PREPROCESSOR: &PREPROC d:\perforce\addm\tkn_main\buildscripts\TPLPreprocessor.py
ADDM_IP_11: &ADDM_IP_11 192.168.1.1
ADDM_USR_11: &ADDM_USR_11 user_see_note
ADDM_PSW_11: &ADDM_PSW_11 password_see_note
SYSTEM_USER: &SYSTEM_USER user_see_note
SYSTEM_PASSWORD: &SYSTEM_PASSWORD password_see_note
HOST_LIST: &HOST_LIST 192.168.1.2,192.168.1.3
# BUILD OPTIONS:
# Run TPLPreprocessor on current file:
cmd: *PYTHON27
name: 'TPLpre automation'
args:
- *PREPROC
- '-f {FILE_ACTIVE}'
cwd: '{FILE_ACTIVE_PATH}'
errorMatch:
- '\s+Error:\s+(.*)'
warningMatch:
- '(Warning|WARNING).*'
keymap: ctrl-shift-t
atomCommandName: tpl:TPLPreprocessor
# =============================================
# Other targets:
# NOTE: Use different instance, name, atomCommandName, keymap for each!
targets:
# LOCAL ACTIONS:
# Run TPLPreprocessor and import modules from active pattern:
- tplPreprocImports:
keymap: ctrl-shift-i
atomCommandName: tpl:TPLPreprocessor_imports
name: 'TPLPreprocessor imports'
cmd: *PYTHON27
args:
- *PREPROC
- '-f {FILE_ACTIVE}'
- '-d {FILE_ACTIVE_PATH}'
- '-o {FILE_ACTIVE_PATH}'
cwd: '{FILE_ACTIVE_PATH}'
errorMatch:
- '\s+Error:\s+(.*)'
warningMatch:
- '(Warning|WARNING).*'
#
# =============================================
#
# Check syntax on current pattern
# WARN: Will fail without previously run any imports!!!
- tplpreSyntaxCheckSolo:
keymap: ctrl-alt-s
atomCommandName: tpl:Syntax_check_solo
name: 'Syntax pattern'
cmd: *CHECK
args:
- '-full_path {FILE_ACTIVE}'
- '-l info'
cwd: '{FILE_ACTIVE_PATH}'
errorMatch:
- '(ERROR|Error|Errors|WARNING).*'
warningMatch:
- '(Warning|WARNING).*'
#
# =============================================
#
# IMPORT OPTIONS:
# Check syntax on recursive imports
- tplpreSyntaxCheckRecursiveImports:
keymap: ctrl-alt-r
atomCommandName: tpl:Syntax_check_recursive
name: 'Syntax recursive'
cmd: *CHECK
args:
- '-full_path {FILE_ACTIVE}'
- '-recursive_import'
- '-l info'
cwd: '{FILE_ACTIVE_PATH}'
errorMatch:
- '(ERROR|Error|Errors|WARNING).*'
warningMatch:
- '(Warning|WARNING).*'
#
# =============================================
#
# Check syntax on recursive imports + test
- tplpreSyntaxCheckRecursiveImportsTests:
keymap: ctrl-alt-shift-t
atomCommandName: tpl:Syntax_check_recursive_test
name: 'Syntax recursive + test.py'
cmd: *CHECK
args:
- '-full_path {FILE_ACTIVE}'
- '-recursive_import'
- '-read_test'
- '-l info'
cwd: '{FILE_ACTIVE_PATH}'
errorMatch:
- '(ERROR|Error|Errors|WARNING).*'
warningMatch:
- '(Warning|WARNING).*'
#
# =============================================
#
# REMOTE ACTIONS:
# -===== ADDM Actions: ===== -
# IMPORT OPTIONS:
# Recursive
# Check syntax on recursive imports and zip paterns for ADDM version:
- tplpreSyntaxCheckRecursiveImportsZipADDM:
keymap: ctrl-alt-shift-u
atomCommandName: tpl:Syntax_check_recursive_zip_addm
name: 'Syntax recursive zip addm'
cmd: *CHECK
args:
- '-full_path {FILE_ACTIVE}'
- '-recursive_import'
- '-addm'
- *ADDM_IP_11
- '-u'
- *ADDM_USR_11
- '-p'
- *ADDM_PSW_11
- '-system_user'
- *SYSTEM_USER
- '-system_password'
- *SYSTEM_PASSWORD
- '-l info'
cwd: '{FILE_ACTIVE_PATH}'
errorMatch:
- '(ERROR|Error|Errors|WARNING).*'
warningMatch:
- '(Warning|WARNING).*'
#
# =============================================
#
# Recursive + test
# Check syntax on recursive imports + test and zip paterns for ADDM version:
- tplpreSyntaxCheckRecursiveImportsTestsZipADDM:
# keymap: ctrl-alt-shift-t
atomCommandName: tpl:Syntax_check_recursive_test_zip_addm
name: 'Syntax recursive + test.py zip addm'
cmd: *CHECK
args:
- '-full_path {FILE_ACTIVE}'
- '-recursive_import'
- '-read_test'
- '-addm'
- *ADDM_IP_11
- '-u'
- *ADDM_USR_11
- '-p'
- *ADDM_PSW_11
- '-system_user'
- *SYSTEM_USER
- '-system_password'
- *SYSTEM_PASSWORD
- '-l info'
cwd: '{FILE_ACTIVE_PATH}'
errorMatch:
- '(ERROR|Error|Errors|WARNING).*'
warningMatch:
- '(Warning|WARNING).*'
#
# =============================================
#
# -=== UPLOADING ===-
# IMPORT OPTIONS ZIP:
# Check syntax on recursive imports and zip paterns for ADDM version:
# Recursive
- tplpreSyntaxCheckRecursiveImportsZipADDMUpload:
# keymap: ctrl-alt-r
atomCommandName: tpl:Syntax_check_recursive_zip_addm_upload
name: 'Syntax recursive zip addm upload'
cmd: *CHECK
args:
- '-full_path {FILE_ACTIVE}'
- '-recursive_import'
- '-addm'
- *ADDM_IP_11
- '-u'
- *ADDM_USR_11
- '-p'
- *ADDM_PSW_11
- '-disco_mode'
- 'record'
- '-system_user'
- *SYSTEM_USER
- '-system_password'
- *SYSTEM_PASSWORD
- '-l info'
cwd: '{FILE_ACTIVE_PATH}'
errorMatch:
- '(ERROR|Error|Errors|WARNING).*'
warningMatch:
- '(Warning|WARNING).*'
#
# =============================================
#
# Check syntax on recursive imports + test and zip paterns for ADDM version and upload:
# Recursive + test
- tplpreSyntaxCheckRecursiveImportsTestsZipADDMUpload:
# keymap: ctrl-alt-shift-t
atomCommandName: tpl:Syntax_check_recursive_test_zip_addm_upload
name: 'Syntax recursive + test.py zip addm upload'
cmd: *CHECK
args:
- '-full_path {FILE_ACTIVE}'
- '-recursive_import'
- '-read_test'
- '-addm'
- *ADDM_IP_11
- '-u'
- *ADDM_USR_11
- '-p'
- *ADDM_PSW_11
- '-disco_mode'
- 'record'
- '-system_user'
- *SYSTEM_USER
- '-system_password'
- *SYSTEM_PASSWORD
- '-l info'
cwd: '{FILE_ACTIVE_PATH}'
errorMatch:
- '(ERROR|Error|Errors|WARNING).*'
warningMatch:
- '(Warning|WARNING).*'
#
# =============================================
#
# -=== SCAN ===-
# IMPORT OPTIONS + ULOADING
# Check syntax on recursive imports and zip paterns for ADDM version and Upload
- tplpreSyntaxCheckRecursiveImportsZipADDMUploadScan:
# keymap: ctrl-alt-r
atomCommandName: tpl:Syntax_check_recursive_zip_addm_upload_scan
name: 'Syntax recursive zip addm upload scan'
cmd: *CHECK
args:
- '-full_path {FILE_ACTIVE}'
- '-recursive_import'
- '-addm'
- *ADDM_IP_11
- '-u'
- *ADDM_USR_11
- '-p'
- *ADDM_PSW_11
- '-disco_mode'
- 'record'
- '-host_list'
- *HOST_LIST
- '-system_user'
- *SYSTEM_USER
- '-system_password'
- *SYSTEM_PASSWORD
- '-l info'
cwd: '{FILE_ACTIVE_PATH}'
errorMatch:
- '(ERROR|Error|Errors|WARNING).*'
warningMatch:
- '(Warning|WARNING).*'
#
# =============================================
#
# Check syntax on recursive imports + test and zip paterns for ADDM version and Upload
- tplpreSyntaxCheckRecursiveImportsTestsZipADDMUploadScan:
# keymap: ctrl-alt-shift-t
atomCommandName: tpl:Syntax_check_recursive_test_zip_addm_upload_scan
name: 'Syntax recursive + test.py zip addm upload scan'
cmd: *CHECK
args:
- '-full_path {FILE_ACTIVE}'
- '-recursive_import'
- '-read_test'
- '-addm'
- *ADDM_IP_11
- '-u'
- *ADDM_USR_11
- '-p'
- *ADDM_PSW_11
- '-disco_mode'
- 'record'
- '-host_list'
- *HOST_LIST
- '-system_user'
- *SYSTEM_USER
- '-system_password'
- *SYSTEM_PASSWORD
- '-l info'
cwd: '{FILE_ACTIVE_PATH}'
errorMatch:
- '(ERROR|Error|Errors|WARNING).*'
warningMatch:
- '(Warning|WARNING).*'
#
# =============================================
#
# -=== SOLO FULL STACK ===- :
# Solo check and upload and scan
- tplpreSoloSyntaxCheckZipADDMUpload:
# keymap: ctrl-alt-shift-t
atomCommandName: tpl:Syntax_solo_zip_addm_upload
name: 'Syntax Solo zip addm upload'
cmd: *CHECK
args:
- '-full_path {FILE_ACTIVE}'
- '-addm'
- *ADDM_IP_11
- '-u'
- *ADDM_USR_11
- '-p'
- *ADDM_PSW_11
- '-disco_mode'
- 'record'
- '-system_user'
- *SYSTEM_USER
- '-system_password'
- *SYSTEM_PASSWORD
- '-l info'
cwd: '{FILE_ACTIVE_PATH}'
errorMatch:
- '(ERROR|Error|Errors|WARNING).*'
warningMatch:
- '(Warning|WARNING).*'
#
# =============================================
#
- tplpreSoloSyntaxCheckZipADDMUploadScan:
keymap: ctrl-alt-shift-s
atomCommandName: tpl:Syntax_solo_zip_addm_upload_scan
name: 'Syntax Solo zip addm upload scan'
cmd: *CHECK
args:
- '-full_path {FILE_ACTIVE}'
- '-addm'
- *ADDM_IP_11
- '-u'
- *ADDM_USR_11
- '-p'
- *ADDM_PSW_11
- '-disco_mode'
- 'record'
- '-host_list'
- *HOST_LIST
- '-system_user'
- *SYSTEM_USER
- '-system_password'
- *SYSTEM_PASSWORD
- '-l info'
cwd: '{FILE_ACTIVE_PATH}'
errorMatch:
- '(ERROR|Error|Errors|WARNING).*'
warningMatch:
- '(Warning|WARNING).*'
#
# =============================================
#