File tree Expand file tree Collapse file tree 1 file changed +62
-0
lines changed Expand file tree Collapse file tree 1 file changed +62
-0
lines changed Original file line number Diff line number Diff line change
1
+ {
2
+ "version": "2.0.0",
3
+ "tasks": [
4
+ {
5
+ "type": "shell",
6
+ "label": "build itest all",
7
+ "command": "make build-itest; make build-itest-litd",
8
+ "presentation": {
9
+ "echo": true,
10
+ "reveal": "always",
11
+ "focus": false,
12
+ "panel": "shared",
13
+ "clear": false
14
+ },
15
+ "problemMatcher": []
16
+ },
17
+ {
18
+ "type": "shell",
19
+ "label": "build itest litd",
20
+ "command": "make build-itest-litd",
21
+ "presentation": {
22
+ "echo": true,
23
+ "reveal": "always",
24
+ "focus": false,
25
+ "panel": "shared",
26
+ "clear": false
27
+ },
28
+ "problemMatcher": []
29
+ },
30
+ {
31
+ "type": "shell",
32
+ "label": "clear itest logs",
33
+ "options": {
34
+ "cwd": "${workspaceFolder}/itest"
35
+ },
36
+ "command": "rm -rf ./*.log .logs*",
37
+ "presentation": {
38
+ "echo": true,
39
+ "reveal": "always",
40
+ "focus": false,
41
+ "panel": "shared",
42
+ "clear": false
43
+ },
44
+ "problemMatcher": []
45
+ },
46
+ {
47
+ "label": "reset before itest",
48
+ "dependsOn": [
49
+ "build itest litd",
50
+ "clear itest logs"
51
+ ],
52
+ "presentation": {
53
+ "echo": true,
54
+ "reveal": "always",
55
+ "focus": false,
56
+ "panel": "shared",
57
+ "clear": false
58
+ },
59
+ "problemMatcher": []
60
+ }
61
+ ]
62
+ }
You can’t perform that action at this time.
0 commit comments