This is an automated email from the ASF dual-hosted git repository. rnewson pushed a commit to branch nouveau-dev-container in repository https://gitbox.apache.org/repos/asf/couchdb.git
commit efa77dd0753a6118b47e7548bf87ec07d955b6b5 Author: Robert Newson <[email protected]> AuthorDate: Fri May 12 14:54:36 2023 +0100 add nouveau and java tools to dev container --- .devcontainer/devcontainer.json | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 3920cd9dd..491b2ecb6 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -23,7 +23,14 @@ // Your code will live inside the volume created for the container under /workspace. "workspaceMount": "target=/workspaces/couchdb,type=volume", "workspaceFolder": "/workspaces/couchdb", - "postCreateCommand": "./configure && make", + "postCreateCommand": "./configure --enable-nouveau && make", - "extensions": ["erlang-ls.erlang-ls"] -} \ No newline at end of file + "customizations": { + "vscode": { + "extensions": [ + "erlang-ls.erlang-ls", + "redhat.java" + ] + } + } +}
