mirror of
https://gitee.com/openharmony/third_party_rust_cxx
synced 2024-11-23 07:10:29 +00:00
31 lines
773 B
JSON
31 lines
773 B
JSON
{
|
|
"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"
|
|
}
|
|
]
|
|
}
|