Private GIT

Skip to content
Snippets Groups Projects
Commit d1d66b41 authored by Sean Rees's avatar Sean Rees
Browse files

Add default tasks

parent 21156631
No related merge requests found
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "Build",
"type": "shell",
"command": "bazel build ...",
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "Test",
"type": "shell",
"command": "bazel test ...",
"group": {
"kind": "test",
}
},
{
"label": "Package",
"type": "shell",
"command": "bazel build :main-deb",
},
]
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment