summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorgVisor bot <gvisor-bot@google.com>2021-02-03 11:02:50 -0800
committergVisor bot <gvisor-bot@google.com>2021-02-03 11:02:50 -0800
commitd3113ad44075efa8fa84f2fd9e5267181d056a3d (patch)
tree7c0f22cbaae730a9dda6e4ed685c2d6881d0fa25
parent5106e66fddba47e4edefd6a0dbb406421d8ef4de (diff)
parentea63a4e733067713fc8856c0e22e23d1dad7c8e0 (diff)
Merge pull request #5418 from amscanne:codespace
PiperOrigin-RevId: 355434313
-rw-r--r--.bazelignore1
-rw-r--r--.devcontainer.json9
-rw-r--r--.vscode/tasks.json31
3 files changed, 41 insertions, 0 deletions
diff --git a/.bazelignore b/.bazelignore
new file mode 100644
index 000000000..511b10433
--- /dev/null
+++ b/.bazelignore
@@ -0,0 +1 @@
+bazel-gvisor
diff --git a/.devcontainer.json b/.devcontainer.json
new file mode 100644
index 000000000..6f7fe4bf8
--- /dev/null
+++ b/.devcontainer.json
@@ -0,0 +1,9 @@
+{
+ "dockerFile": "images/default/Dockerfile",
+ "overrideCommand": true,
+ "mounts": ["source=/var/run/docker.sock,target=/var/run/docker-host.sock,type=bind"],
+ "runArgs": ["--cap-add=SYS_PTRACE", "--security-opt", "seccomp=unconfined"],
+ "extensions": [
+ "bazelbuild.vscode-bazel"
+ ]
+}
diff --git a/.vscode/tasks.json b/.vscode/tasks.json
new file mode 100644
index 000000000..42a018434
--- /dev/null
+++ b/.vscode/tasks.json
@@ -0,0 +1,31 @@
+{
+ "version": "2.0.0",
+ "tasks": [
+ {
+ "label": "Build",
+ "type": "shell",
+ "command": "bazel build //...",
+ "group": {
+ "kind": "build",
+ "isDefault": true
+ },
+ "presentation": {
+ "reveal": "always",
+ "panel": "new"
+ }
+ },
+ {
+ "label": "Test",
+ "type": "shell",
+ "command": "bazel test //...",
+ "group": {
+ "kind": "test",
+ "isDefault": true
+ },
+ "presentation": {
+ "reveal": "always",
+ "panel": "new"
+ }
+ }
+ ]
+}