We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 388ec54 commit 02176faCopy full SHA for 02176fa
1 file changed
devfile.yaml
@@ -97,3 +97,25 @@ commands:
97
podman build -f build/dockerfiles/assembly.libc.Dockerfile -t che-code .
98
group:
99
kind: run
100
+
101
+ - id: build-cli
102
+ exec:
103
+ label: Build VS Code CLI from sources
104
+ component: dev
105
+ workingDir: ${PROJECTS_ROOT}/che-code/code/cli
106
+ commandLine: |
107
+ cargo build --release && \
108
+ cp /projects/che-code/code/cli/target/release/code /projects/code-cli && \
109
+ rm -rf /projects/che-code/code/cli/target
110
+ group:
111
+ kind: build
112
113
+ - id: open-tunnel
114
115
+ label: Create a tunnel to this workspace
116
117
+ workingDir: ${PROJECTS_ROOT}
118
119
+ ./code-cli --log debug tunnel --accept-server-license-terms --name ${DEVWORKSPACE_NAME}
120
121
+ kind: run
0 commit comments