Skip to content

Commit

Permalink
.vscode: Add task for deploying Prime Hub.
Browse files Browse the repository at this point in the history
  • Loading branch information
laurensvalk committed Oct 19, 2024
1 parent 4ddd2d8 commit f79af7f
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,34 @@
"type": "shell",
"command": "make movehub -j"
},
{
"label": "build and deploy primehub",
"type": "shell",
"command": "make",
"args": ["-j", "deploy"],
"group": {
"kind": "build",
"isDefault": true
},
"options": {
"cwd": "${workspaceFolder}/bricks/primehub"
},
"problemMatcher": [
{
"owner": "cpp",
"fileLocation": ["relative", "${workspaceFolder}/bricks/primehub"],
"pattern": {
"regexp": "^(.*?):(\\d+):(\\d+):\\s+(warning|error):\\s+(.*)$",
"file": 1,
"line": 2,
"column": 3,
"severity": 4,
"message": 5
}
}
],
"detail": "Build the PrimeHub project"
},
{
"label": "build virtualhub",
"type": "shell",
Expand Down

0 comments on commit f79af7f

Please sign in to comment.