add ci tests update usertests

This commit is contained in:
yuoo655 2022-05-15 08:29:27 +08:00
parent 4e2436f757
commit a67aa60ceb
4 changed files with 87 additions and 34 deletions

10
.vscode/settings.json vendored Normal file
View file

@ -0,0 +1,10 @@
{
// Prevent "can't find crate for `test`" error on no_std
// Ref: https://github.com/rust-lang/vscode-rust/issues/729
// For vscode-rust plugin users:
"rust.target": "riscv64gc-unknown-none-elf",
"rust.all_targets": false,
// For Rust Analyzer plugin users:
"rust-analyzer.cargo.target": "riscv64gc-unknown-none-elf",
"rust-analyzer.checkOnSave.allTargets": false
}