From: Hauke Mehrtens Date: Sat, 1 Jul 2023 17:56:57 +0000 (+0200) Subject: devcontainer: Add development environment for gihub codespace X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fstaging%2Fpepe2k.git;a=commitdiff_plain;h=ed5dbbc129c2d163e88729ea0513a77f4611140d 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 --- diff --git a/.devcontainer/ci-env/devcontainer.json b/.devcontainer/ci-env/devcontainer.json new file mode 100644 index 0000000000..23b0555e66 --- /dev/null +++ b/.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"] + } + } +}