mirror of
https://github.com/python/cpython.git
synced 2025-12-23 09:19:18 +00:00
Fix umask test failures under Codespaces (#104913)
Also turn on the Python extension for Python code completions and bump the installed versions of wasmtime and the WASI SDK.
This commit is contained in:
parent
2b7027d0b2
commit
08888650aa
2 changed files with 14 additions and 7 deletions
|
|
@ -9,7 +9,9 @@
|
|||
"-y",
|
||||
"which",
|
||||
"zsh",
|
||||
"fish"
|
||||
"fish",
|
||||
// For umask fix below.
|
||||
"/usr/bin/setfacl"
|
||||
],
|
||||
"updateContentCommand": {
|
||||
// Using the shell for `nproc` usage.
|
||||
|
|
@ -22,6 +24,11 @@
|
|||
"html"
|
||||
]
|
||||
},
|
||||
"postCreateCommand": {
|
||||
// https://github.com/orgs/community/discussions/26026
|
||||
"umask fix: workspace": ["sudo", "setfacl", "-bnR", "."],
|
||||
"umask fix: /tmp": ["sudo", "setfacl", "-bnR", "/tmp"]
|
||||
},
|
||||
"customizations": {
|
||||
"vscode": {
|
||||
"extensions": [
|
||||
|
|
@ -31,10 +38,10 @@
|
|||
"maelvalais.autoconf",
|
||||
// C auto-complete.
|
||||
"ms-vscode.cpptools",
|
||||
// To view built docs.
|
||||
"ms-vscode.live-server"
|
||||
// https://github.com/microsoft/vscode-python/issues/18073
|
||||
// "ms-python.python"
|
||||
// To view HTML build of docs.
|
||||
"ms-vscode.live-server",
|
||||
// Python auto-complete.
|
||||
"ms-python.python"
|
||||
],
|
||||
"settings": {
|
||||
"C_Cpp.default.compilerPath": "/usr/bin/clang",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue