@ngocsangairvds/vsaf 5.1.17 → 5.1.18
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -5,20 +5,22 @@ nodes:
|
|
|
5
5
|
- id: analyze
|
|
6
6
|
description: "Analyze — grill user, GitNexus impact, root cause, blast radius"
|
|
7
7
|
bash: |
|
|
8
|
-
vsaf run sdlc/sdlc-hotfix-analyze --args
|
|
8
|
+
vsaf run sdlc/sdlc-hotfix-analyze --args $ARGUMENTS
|
|
9
9
|
workspace: false
|
|
10
|
+
timeout: 5400000
|
|
10
11
|
|
|
11
12
|
- id: prd
|
|
12
13
|
description: "PRD — fix requirements, acceptance criteria, scope boundary"
|
|
13
14
|
bash: |
|
|
14
|
-
vsaf run sdlc/sdlc-hotfix-prd --args
|
|
15
|
+
vsaf run sdlc/sdlc-hotfix-prd --args $ARGUMENTS
|
|
15
16
|
depends_on: [analyze]
|
|
16
17
|
workspace: false
|
|
18
|
+
timeout: 5400000
|
|
17
19
|
|
|
18
20
|
- id: implement
|
|
19
21
|
description: "Implement — TDD (RED → GREEN → REFACTOR), SonarQube-in-loop"
|
|
20
22
|
bash: |
|
|
21
|
-
vsaf run sdlc/sdlc-hotfix-implement --args
|
|
23
|
+
vsaf run sdlc/sdlc-hotfix-implement --args $ARGUMENTS
|
|
22
24
|
depends_on: [prd]
|
|
23
25
|
|
|
24
26
|
- id: test-gate
|
|
@@ -34,6 +36,7 @@ nodes:
|
|
|
34
36
|
- id: ship
|
|
35
37
|
description: "Ship — commit, PR on hotfix branch"
|
|
36
38
|
bash: |
|
|
37
|
-
vsaf run sdlc/sdlc-hotfix-ship --args
|
|
39
|
+
vsaf run sdlc/sdlc-hotfix-ship --args $ARGUMENTS
|
|
38
40
|
depends_on: [test-gate]
|
|
39
41
|
workspace: false
|
|
42
|
+
timeout: 5400000
|
|
@@ -4,61 +4,70 @@ nodes:
|
|
|
4
4
|
- id: discovery
|
|
5
5
|
description: Phase — Discovery
|
|
6
6
|
bash: |
|
|
7
|
-
vsaf run sdlc/sdlc-discovery --args
|
|
7
|
+
vsaf run sdlc/sdlc-discovery --args $ARGUMENTS
|
|
8
8
|
workspace: false
|
|
9
|
+
timeout: 5400000
|
|
9
10
|
- id: prd
|
|
10
11
|
description: Phase — PRD
|
|
11
12
|
bash: |
|
|
12
|
-
vsaf run sdlc/sdlc-prd --args
|
|
13
|
+
vsaf run sdlc/sdlc-prd --args $ARGUMENTS
|
|
13
14
|
workspace: false
|
|
15
|
+
timeout: 5400000
|
|
14
16
|
depends_on:
|
|
15
17
|
- discovery
|
|
16
18
|
- id: architecture
|
|
17
19
|
description: Phase — Architecture
|
|
18
20
|
bash: |
|
|
19
|
-
vsaf run sdlc/sdlc-architecture --args
|
|
21
|
+
vsaf run sdlc/sdlc-architecture --args $ARGUMENTS
|
|
20
22
|
workspace: false
|
|
23
|
+
timeout: 5400000
|
|
21
24
|
depends_on:
|
|
22
25
|
- prd
|
|
23
26
|
- id: srs
|
|
24
27
|
description: Phase — SRS
|
|
25
28
|
bash: |
|
|
26
|
-
vsaf run sdlc/sdlc-srs --args
|
|
29
|
+
vsaf run sdlc/sdlc-srs --args $ARGUMENTS
|
|
27
30
|
workspace: false
|
|
31
|
+
timeout: 5400000
|
|
28
32
|
depends_on:
|
|
29
33
|
- architecture
|
|
30
34
|
- id: test-design
|
|
31
35
|
description: Phase — Test Design
|
|
32
36
|
bash: |
|
|
33
|
-
vsaf run sdlc/sdlc-test-design --args
|
|
37
|
+
vsaf run sdlc/sdlc-test-design --args $ARGUMENTS
|
|
34
38
|
workspace: false
|
|
39
|
+
timeout: 5400000
|
|
35
40
|
depends_on:
|
|
36
41
|
- srs
|
|
37
42
|
- id: implement
|
|
38
43
|
description: Phase — Implement
|
|
39
44
|
bash: |
|
|
40
|
-
vsaf run sdlc/sdlc-implement --args
|
|
45
|
+
vsaf run sdlc/sdlc-implement --args $ARGUMENTS
|
|
41
46
|
workspace: false
|
|
47
|
+
timeout: 5400000
|
|
42
48
|
depends_on:
|
|
43
49
|
- test-design
|
|
44
50
|
- id: review
|
|
45
51
|
description: Phase — Review
|
|
46
52
|
bash: |
|
|
47
|
-
vsaf run sdlc/sdlc-review --args
|
|
53
|
+
vsaf run sdlc/sdlc-review --args $ARGUMENTS
|
|
48
54
|
workspace: false
|
|
55
|
+
timeout: 5400000
|
|
49
56
|
depends_on:
|
|
50
57
|
- implement
|
|
51
58
|
- id: complete
|
|
52
59
|
description: Phase — Feature Complete
|
|
53
60
|
bash: |
|
|
54
|
-
vsaf run sdlc/sdlc-feature-complete --args
|
|
61
|
+
vsaf run sdlc/sdlc-feature-complete --args $ARGUMENTS
|
|
55
62
|
workspace: false
|
|
63
|
+
timeout: 5400000
|
|
56
64
|
depends_on:
|
|
57
65
|
- review
|
|
58
66
|
- id: ship
|
|
59
67
|
description: Phase — Ship
|
|
60
68
|
bash: |
|
|
61
|
-
vsaf run sdlc/sdlc-ship --args
|
|
69
|
+
vsaf run sdlc/sdlc-ship --args $ARGUMENTS
|
|
62
70
|
workspace: false
|
|
71
|
+
timeout: 5400000
|
|
63
72
|
depends_on:
|
|
64
73
|
- complete
|