fix devcontainer

This commit is contained in:
Jörn-Michael Miehe 2025-07-15 13:10:08 +00:00
parent 5358d8e68f
commit 9e56779378
2 changed files with 8 additions and 4 deletions

View file

@ -23,6 +23,11 @@
} }
}, },
"overrideFeatureInstallOrder": [
"ghcr.io/devcontainers/features/rust",
"ghcr.io/lee-orr/rusty-dev-containers/cargo-binstall"
],
// cargo cache persistence // cargo cache persistence
"mounts": [ "mounts": [
{ {
@ -36,7 +41,7 @@
// "forwardPorts": [], // "forwardPorts": [],
// Use 'postCreateCommand' to run commands after the container is created. // Use 'postCreateCommand' to run commands after the container is created.
// "postCreateCommand": "rustup target install x86_64-unknown-linux-musl | :", "postCreateCommand": "sudo chown -R \"${USER}:rustlang\" \"${RUSTUP_HOME}\" \"${CARGO_HOME}\"",
// Configure tool-specific properties. // Configure tool-specific properties.
"customizations": { "customizations": {

3
.vscode/tasks.json vendored
View file

@ -129,7 +129,7 @@
// "Run Integration Tests", // "Run Integration Tests",
"Run Coverage", "Run Coverage",
], ],
"dependsOrder": "sequence", "dependsOrder": "parallel",
"group": "test" "group": "test"
}, },
{ {
@ -140,7 +140,6 @@
"--incompatible", "--incompatible",
"-vv" "-vv"
], ],
"problemMatcher": "$rustc",
"group": "none" "group": "none"
} }
], ],