From 15f0d2a514656ef3ae29bf3ec0d4cedaa961e325 Mon Sep 17 00:00:00 2001 From: Ocraftyone Date: Sun, 8 Jun 2025 06:06:59 -0400 Subject: [PATCH] Remove CORES env variable from devcontainer (#9662) --- .devcontainer/devcontainer.json | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 80e48691ea..64ede0af2f 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -8,7 +8,7 @@ }, "options": ["--platform=linux/amd64"] }, - "runArgs": ["--env-file", "/tmp/devcontainer.env", "--platform=linux/amd64"], + "runArgs": ["--platform=linux/amd64"], "features": { "ghcr.io/devcontainers/features/desktop-lite:1": { "password": "orca" @@ -23,9 +23,6 @@ "-DBBL_INTERNAL_TESTING=0", "-DSLIC3R_STATIC=1", "-DCMAKE_PREFIX_PATH=${workspaceFolder}/deps/build/destdir/usr/local" - ], - "cmake.buildToolArgs": [ - "-l${containerEnv:CORES}" ] }, @@ -47,10 +44,6 @@ "otherPortsAttributes": { "onAutoForward": "ignore" }, - - "initializeCommand": { - "Setup Temporary Env File": "echo \"CORES=`nproc --all`\" > /tmp/devcontainer.env" - }, "onCreateCommand": { "Set postCreate executable flag": "chmod +x .devcontainer/postCreate.sh" },