Commit 88a748a 1 parent 8dc4f46 commit 88a748a Copy full SHA for 88a748a
File tree 1 file changed +22
-8
lines changed
1 file changed +22
-8
lines changed Original file line number Diff line number Diff line change 3
3
"tasks" : [
4
4
{
5
5
"label" : " Validate SQF" ,
6
- "command" : " ${config: python.pythonPath} " ,
6
+ "command" : " python" ,
7
7
"options" : {
8
8
"cwd" : " ${workspaceFolder}/tools"
9
9
},
13
13
},
14
14
{
15
15
"label" : " Validate Config" ,
16
- "command" : " ${config: python.pythonPath} " ,
16
+ "command" : " python" ,
17
17
"options" : {
18
18
"cwd" : " ${workspaceFolder}/tools"
19
19
},
23
23
},
24
24
{
25
25
"label" : " Check Strings" ,
26
- "command" : " ${config: python.pythonPath} " ,
26
+ "command" : " python" ,
27
27
"options" : {
28
28
"cwd" : " ${workspaceFolder}/tools"
29
29
},
30
30
"args" : [
31
31
" check_strings.py"
32
32
]
33
33
},
34
+ {
35
+ "label" : " SQFVM Checker" ,
36
+ "command" : " ${config:python.pythonPath}" ,
37
+ "options" : {
38
+ "cwd" : " ${workspaceFolder}/tools"
39
+ },
40
+ "args" : [
41
+ " sqfvmChecker.py"
42
+ ],
43
+ "problemMatcher" : []
44
+ },
34
45
{
35
46
"label" : " Test All" ,
36
47
"dependsOn" : [
37
48
" Validate SQF" ,
38
49
" Validate Config" ,
39
- " Check Strings"
50
+ " Check Strings" ,
51
+ " SQFVM Checker"
40
52
],
41
53
"group" : {
42
54
"kind" : " test" ,
45
57
},
46
58
{
47
59
"label" : " Build: make.py (pboProject)" ,
48
- "command" : " ${config: python.pythonPath} " ,
60
+ "command" : " python" ,
49
61
"options" : {
50
62
"cwd" : " ${workspaceFolder}/tools"
51
63
},
52
64
"args" : [
53
- " make.py" , " ci"
65
+ " make.py" ,
66
+ " ci"
54
67
],
55
68
"group" : {
56
69
"kind" : " build" ,
57
70
"isDefault" : true
58
71
}
59
72
},
60
73
{
61
- "label" : " Build: Hemtt Release " ,
74
+ "label" : " Build: Hemtt" ,
62
75
"command" : " hemtt.exe" ,
63
76
"options" : {
64
77
"cwd" : " ${workspaceFolder}"
65
78
},
66
79
"args" : [
67
- " build" , " --release" , " --ci"
80
+ " build" ,
81
+ " -v"
68
82
],
69
83
"group" : " build"
70
84
}
You can’t perform that action at this time.
0 commit comments