diff options
author | Hauke Mehrtens <hauke@hauke-m.de> | 2023-07-01 19:56:57 +0200 |
---|---|---|
committer | Hauke Mehrtens <hauke@hauke-m.de> | 2023-10-30 23:34:26 +0100 |
commit | ed5dbbc129c2d163e88729ea0513a77f4611140d (patch) | |
tree | aabdf71521a716153db4b0f0ffeb974b6096ce88 /.devcontainer | |
parent | 1d6f9bdfc052b83434dc3fa809e1e6ee6329864f (diff) |
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 <hauke@hauke-m.de>
Diffstat (limited to '.devcontainer')
-rw-r--r-- | .devcontainer/ci-env/devcontainer.json | 12 |
1 files changed, 12 insertions, 0 deletions
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"] + } + } +} |