fix devcontainer
This commit is contained in:
parent
5358d8e68f
commit
9e56779378
2 changed files with 8 additions and 4 deletions
|
|
@ -19,10 +19,15 @@
|
||||||
"packages": "cargo-llvm-cov,cargo-edit"
|
"packages": "cargo-llvm-cov,cargo-edit"
|
||||||
},
|
},
|
||||||
"ghcr.io/devcontainers-extra/features/apt-get-packages:1": {
|
"ghcr.io/devcontainers-extra/features/apt-get-packages:1": {
|
||||||
"packages": "git-flow, musl-tools"
|
"packages": "git-flow,musl-tools"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
"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
3
.vscode/tasks.json
vendored
|
|
@ -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"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue