ci: cache qemu

update: .gitignore, .vscode/settings.json
This commit is contained in:
YdrMaster 2022-05-14 23:44:09 +08:00
parent 4e2436f757
commit e3467d391d
3 changed files with 55 additions and 30 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
}