diff --git a/.devcontainer/scripts/onCreateCommand.sh b/.devcontainer/scripts/onCreateCommand.sh index 779ced4de99b98..6c2527c7d1eff0 100755 --- a/.devcontainer/scripts/onCreateCommand.sh +++ b/.devcontainer/scripts/onCreateCommand.sh @@ -49,4 +49,4 @@ case "$opt" in esac # save the commit hash of the currently built assemblies, so developers know which version was built -git rev-parse HEAD > ./artifacts/prebuild.sha +git rev-parse HEAD > ./artifacts/prebuild.sha \ No newline at end of file diff --git a/.devcontainer/scripts/postCreateCommand.sh b/.devcontainer/scripts/postCreateCommand.sh index b50fb9a7009fff..4ca45cc03fbb42 100755 --- a/.devcontainer/scripts/postCreateCommand.sh +++ b/.devcontainer/scripts/postCreateCommand.sh @@ -11,4 +11,4 @@ case "$opt" in esac # reset the repo to the commit hash that was used to build the prebuilt Codespace -git reset --hard $(cat ./artifacts/prebuild.sha) +git reset --hard $(cat ./artifacts/prebuild.sha) \ No newline at end of file diff --git a/.devcontainer/wasm-multiThreaded/devcontainer.json b/.devcontainer/wasm-multiThreaded/devcontainer.json index db3b2981b57149..b885a0f3620f42 100644 --- a/.devcontainer/wasm-multiThreaded/devcontainer.json +++ b/.devcontainer/wasm-multiThreaded/devcontainer.json @@ -10,7 +10,8 @@ }, "hostRequirements": { "cpus": 4, - "memory": "8gb" + "memory": "8gb", + "storage": "40gb" }, "features": { @@ -40,7 +41,7 @@ "onCreateCommand": "${containerWorkspaceFolder}/.devcontainer/scripts/onCreateCommand.sh wasm-multithreaded", // Use 'postCreateCommand' to run commands after the container is created. - "postCreateCommand": "${containerWorkspaceFolder}/.devcontainer/scripts/postCreateCommand.sh", + "postCreateCommand": "${containerWorkspaceFolder}/.devcontainer/scripts/postCreateCommand.sh wasm-multithreaded", // Add the locally installed dotnet to the path to ensure that it is activated // This allows developers to just use 'dotnet build' on the command-line, and the local dotnet version will be used. diff --git a/.devcontainer/wasm/devcontainer.json b/.devcontainer/wasm/devcontainer.json index f4144299ff11d3..c9becdc18994d3 100644 --- a/.devcontainer/wasm/devcontainer.json +++ b/.devcontainer/wasm/devcontainer.json @@ -10,7 +10,8 @@ }, "hostRequirements": { "cpus": 4, - "memory": "8gb" + "memory": "8gb", + "storage": "40gb" }, "features": { @@ -40,7 +41,7 @@ "onCreateCommand": "${containerWorkspaceFolder}/.devcontainer/scripts/onCreateCommand.sh wasm", // Use 'postCreateCommand' to run commands after the container is created. - "postCreateCommand": "${containerWorkspaceFolder}/.devcontainer/scripts/postCreateCommand.sh", + "postCreateCommand": "${containerWorkspaceFolder}/.devcontainer/scripts/postCreateCommand.sh wasm", // Add the locally installed dotnet to the path to ensure that it is activated // This allows developers to just use 'dotnet build' on the command-line, and the local dotnet version will be used.