2022-11-08 22:29:45 +00:00
|
|
|
{
|
2023-03-15 15:54:43 +00:00
|
|
|
"image": "gcr.io/crosvm-infra/crosvm_dev:latest",
|
2023-03-14 16:58:13 +00:00
|
|
|
"customizations": {
|
|
|
|
"vscode": {
|
|
|
|
"extensions": [
|
2022-11-08 22:29:45 +00:00
|
|
|
"rust-lang.rust-analyzer",
|
2023-07-27 22:51:51 +00:00
|
|
|
"tamasfe.even-better-toml",
|
2022-11-08 22:29:45 +00:00
|
|
|
"esbenp.prettier-vscode",
|
|
|
|
"ms-python.vscode-pylance",
|
|
|
|
"foxundermoon.shell-format",
|
|
|
|
"timonwong.shellcheck"
|
2023-03-14 16:58:13 +00:00
|
|
|
]
|
|
|
|
}
|
|
|
|
},
|
2023-04-12 18:21:59 +00:00
|
|
|
"runArgs": [
|
|
|
|
// Allow access to the kvm device so we can run VMs for testing
|
|
|
|
"--device=/dev/kvm",
|
|
|
|
"--group-add=kvm",
|
|
|
|
// Allow a higher PID limit since we launch a lot of test processes.
|
|
|
|
"--pids-limit=4096"
|
|
|
|
],
|
|
|
|
"updateContentCommand": "git config --global --add safe.directory '*' && git submodule update --init"
|
2022-11-08 22:29:45 +00:00
|
|
|
}
|