You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
773 B

{
"version": "2.0.0",
"tasks": [
{
"label": "Cargo test",
"type": "shell",
"command": "cargo test",
"group": "test"
},
{
"label": "Bazel test",
"type": "shell",
"command": "bazel test ...",
"group": "test",
"dependsOn": ["Vendor"]
},
{
"label": "Buck test",
"type": "shell",
"command": "buck test ...",
"group": "test",
"dependsOn": ["Vendor"]
},
{
"label": "Vendor",
"type": "shell",
"command": "cp third-party/Cargo.lock . && cargo vendor --versioned-dirs --locked third-party/vendor"
}
]
}