forked from jenkinsci/pipeline-graph-view-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtasks.json
More file actions
70 lines (70 loc) · 1.69 KB
/
tasks.json
File metadata and controls
70 lines (70 loc) · 1.69 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
{
"version": "2.0.0",
"tasks": [
{
"label": "Run Jenkins",
"type": "shell",
"command": "mvn hpi:run -Dskip.npm -P quick-build",
"options": {
"env": {
// Do not wait for debugger to connect (suspend=n), unlike mvnDebug
"MAVEN_OPTS": "-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=8000"
}
},
"dependsOn": ["Build Frontend"],
"presentation": {
"focus": true,
"panel": "dedicated",
"clear": true
},
"isBackground": true,
"problemMatcher": [
{
"pattern": [
{
"regexp": "\\b\\B",
"file": 1,
"location": 2,
"message": 3
}
],
"background": {
"activeOnStart": true,
"beginsPattern": ".*INFO.*Started initialization.*",
"endsPattern": ".*INFO.*Jenkins is fully up and running.*"
}
}
]
},
{
"label": "Build Frontend",
"type": "shell",
"command": "npm run build:dev",
"group": "build",
"presentation": {
"focus": true,
"panel": "dedicated",
"clear": true
},
"isBackground": true,
// https://github.com/vitejs/vite/discussions/20164
"problemMatcher": [
{
"pattern": [
{
"regexp": ".",
"file": 1,
"location": 2,
"message": 3
}
],
"background": {
"activeOnStart": true,
"beginsPattern": ".*build started*",
"endsPattern": ".*built in.*"
}
}
]
}
]
}