mirror of
https://github.com/vczh-libraries/Release.git
synced 2026-02-05 11:30:07 +08:00
70 lines
1.9 KiB
JSON
70 lines
1.9 KiB
JSON
{
|
|
"version": "2.0.0",
|
|
"presentation": {
|
|
"echo": true,
|
|
"reveal": "always",
|
|
"focus": false,
|
|
"panel": "shared",
|
|
"clear": true,
|
|
"close": false,
|
|
"showReuseMessage": false
|
|
},
|
|
"runOptions": {
|
|
"runOn": "default"
|
|
},
|
|
"tasks": [
|
|
{
|
|
"label": "Build Unit Tests",
|
|
"type": "shell",
|
|
"windows": {
|
|
"problemMatcher": "$msCompile",
|
|
"command": "powershell.exe",
|
|
"args": [
|
|
"-ExecutionPolicy", "Bypass",
|
|
"-File", "${workspaceFolder}/.github/TaskLogs/copilotBuild.ps1"
|
|
]
|
|
},
|
|
"linux": {
|
|
"command": "false"
|
|
},
|
|
"options": {
|
|
"cwd": "${workspaceFolder}/Test/UnitTest"
|
|
},
|
|
"group": "build"
|
|
},
|
|
{
|
|
"label": "Run Unit Tests",
|
|
"type": "shell",
|
|
"windows": {
|
|
"command": "powershell.exe",
|
|
"args": [
|
|
"-ExecutionPolicy", "Bypass",
|
|
"-File", "${workspaceFolder}/.github/TaskLogs/copilotExecute.ps1",
|
|
"-Executable", "UnitTest"
|
|
]
|
|
},
|
|
"linux": {
|
|
"command": "false"
|
|
},
|
|
"options": {
|
|
"cwd": "${workspaceFolder}/Test/UnitTest"
|
|
},
|
|
"group": {
|
|
"kind": "test",
|
|
"isDefault": true
|
|
}
|
|
},
|
|
{
|
|
"label": "Build and Run Unit Tests",
|
|
"dependsOrder": "sequence",
|
|
"dependsOn": [
|
|
"Build Unit Tests",
|
|
"Run Unit Tests"
|
|
],
|
|
"group": {
|
|
"kind": "build",
|
|
"isDefault": true
|
|
}
|
|
}
|
|
]
|
|
} |