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 f6b6fb0 commit 38524f6Copy full SHA for 38524f6
1 file changed
devfile.yaml
@@ -126,3 +126,25 @@ commands:
126
git stash save --include-untracked
127
git fetch upstream-code main
128
./rebase.sh
129
+
130
+ - id: build-cli
131
+ exec:
132
+ label: Build VS Code CLI from sources
133
+ component: dev
134
+ workingDir: ${PROJECTS_ROOT}/che-code/code/cli
135
+ commandLine: |
136
+ cargo build --release && \
137
+ cp /projects/che-code/code/cli/target/release/code /projects/code-cli && \
138
+ rm -rf /projects/che-code/code/cli/target
139
+ group:
140
+ kind: build
141
142
+ - id: open-tunnel
143
144
+ label: Create a tunnel to this workspace
145
146
+ workingDir: ${PROJECTS_ROOT}
147
148
+ ./code-cli --log debug tunnel --accept-server-license-terms --name ${DEVWORKSPACE_NAME}
149
150
+ kind: run
0 commit comments