Explorar el Código

devcontainer: Add development environment for gihub codespace

This adds a configuration for github codespace using our buildbot
container. This allows users to start VS code in the browser using the
buildbot build container.

Signed-off-by: Hauke Mehrtens <[email protected]>
Hauke Mehrtens hace 2 años
padre
commit
ed5dbbc129
Se han modificado 1 ficheros con 12 adiciones y 0 borrados
  1. 12 0
      .devcontainer/ci-env/devcontainer.json

+ 12 - 0
.devcontainer/ci-env/devcontainer.json

@@ -0,0 +1,12 @@
+{
+  "name": "CI build container",
+  "image": "ghcr.io/openwrt/buildbot/buildworker-v3.8.0:v9",
+  "features": {
+  },
+  "remoteUser": "buildbot",
+  "customizations": {
+    "vscode": {
+      "extensions": ["ms-vscode.cpptools", "plorefice.devicetree"]
+    }
+  }
+}