You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by rn...@apache.org on 2023/05/12 14:03:44 UTC

[couchdb] branch nouveau-dev-container updated (f3af03c91 -> efa77dd07)

This is an automated email from the ASF dual-hosted git repository.

rnewson pushed a change to branch nouveau-dev-container
in repository https://gitbox.apache.org/repos/asf/couchdb.git


 discard f3af03c91 add nouveau and java tools to dev container
     new efa77dd07 add nouveau and java tools to dev container

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (f3af03c91)
            \
             N -- N -- N   refs/heads/nouveau-dev-container (efa77dd07)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .devcontainer/devcontainer.json | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


[couchdb] 01/01: add nouveau and java tools to dev container

Posted by rn...@apache.org.
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 <rn...@apache.org>
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"
+            ]
+        }
+    }
+}