-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathendpt_data.json
More file actions
112 lines (111 loc) · 2.64 KB
/
endpt_data.json
File metadata and controls
112 lines (111 loc) · 2.64 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
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
{
"resource_id": "767e72b4-6699-400a-44ab-b3aa3e6363f2",
"correlation_id": "30567873-f7e7-4705-6631-383c7f543d20",
"final": false,
"branch": "main",
"grmanifest": {
"metadata": {
"version": 2
},
"application": {
"name": "ScottCoverageTest",
"language": "GOLANG",
"artifact_store": {
"repositories": null
}
},
"pipeline": {
"segments": [
{
"name": "Build",
"segment_type": "build",
"exit_actions": {},
"properties": [
{
"name": "gopath",
"value": "${SEGMENT_BASE_DIR}/cache/go",
"description": "GOPATH is set to ${SEGMENT_BASE_DIR}/cache/go by default, when caching is enabled. Caches are maintained on the worker where your build gets allocated. For a new worker assigned to the build, the cache will be re-created"
}
],
"deployment_strategy": {},
"application_init": {},
"packages": [
{
"name": "((application.name))",
"downloads": [],
"files": [
"((application.name))*"
]
}
],
"instance_tags": [
{
"name": "application.name",
"value": "((application.name))"
}
],
"cache_info": {
"paths": [
"((gopath))"
]
},
"tasks": [
{
"name": "ScottCoverageTest",
"steps": [
{
"name": "Get Dependencies",
"definition": "Get Dependencies",
"command": "go get -t -d ./...\n\n",
"properties": null
},
{
"name": "Unit tests and coverage",
"definition": "Unit tests and coverage",
"command": "set -o pipefail\nginkgo -cover -r --skip-package=pb,test,mock,proto,testdata | tee ginkgo.output\ncat ginkgo.output 2\u003e\u00261 | go-junit-report \u003e test.xml\ngocov convert coverprofile.out | gocov-xml \u003e coverage.xml",
"properties": null
},
{
"name": "Build",
"definition": "Build",
"command": "go build -o ((application.name))",
"properties": null
},
{
"name": "Build Instrumented",
"definition": "Build Instrumented",
"command": "go test -c -coverpkg=all -covermode=count -o ((application.name))-instrumented",
"properties": null
}
],
"docker_options": {}
}
]
}
],
"exit_actions": {
"default": {
"code_analysis": {
"publish": true,
"properties": null
}
}
},
"default_properties": [
{
"name": "GO111MODULE",
"value": "auto",
"type": "string"
}
],
"deployment_files": [],
"application_init": {},
"process": {
"init": {}
}
},
"organization": {
"orgname": "Playground"
}
}
}