Skip to content

Commit

Permalink
[code] Update code 1.88 (#19598)
Browse files Browse the repository at this point in the history
* Build vscode 1.88

* Update code stable
  • Loading branch information
jeanp413 authored Apr 8, 2024
1 parent d38b01c commit 17942b8
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 5 deletions.
4 changes: 2 additions & 2 deletions WORKSPACE.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ defaultArgs:
publishToNPM: true
publishToJBMarketplace: true
localAppVersion: unknown
codeCommit: 0ab7db2c7269dc6711fee21bb9a4c2cc7c08142d
codeVersion: 1.87.1
codeCommit: 0859efdc73ff89d823efce9288ead6d36080f315
codeVersion: 1.88.0
codeQuality: stable
noVerifyJBPlugin: false
intellijDownloadUrl: "https://download.jetbrains.com/idea/ideaIU-2023.3.6.tar.gz"
Expand Down
14 changes: 12 additions & 2 deletions components/ide/code/leeway.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,20 @@ RUN mkdir /gp-code \
&& git fetch origin $CODE_COMMIT --depth=1 \
&& git reset --hard FETCH_HEAD
WORKDIR /gp-code

RUN apt-get install -y pkg-config dbus xvfb libgtk-3-0 libxkbfile-dev libkrb5-dev libgbm1 rpm \
&& cp build/azure-pipelines/linux/xvfb.init /etc/init.d/xvfb \
&& chmod +x /etc/init.d/xvfb \
&& update-rc.d xvfb defaults \
&& service xvfb start \
# Start dbus session
&& mkdir -p /var/run/dbus

ENV npm_config_arch=x64
RUN mkdir -p .build \
&& yarn --cwd build --frozen-lockfile --network-timeout 180000 \
&& ./build/azure-pipelines/linux/install.sh
&& yarn config set registry "$NPM_REGISTRY" \
&& yarn --cwd build --frozen-lockfile --check-files --network-timeout 180000 \
&& yarn --frozen-lockfile --check-files --network-timeout 180000

# copy remote dependencies build in dependencies_builder image
RUN rm -rf remote/node_modules/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,14 @@ func ideConfigConfigmap(ctx *common.RenderContext) ([]runtime.Object, error) {
LatestImage: resolveLatestImage(ide.CodeIDEImage, "nightly", ctx.VersionManifest.Components.Workspace.CodeImage),
LatestImageLayers: []string{codeWebExtensionImage, codeHelperImage},
Versions: []ide_config.IDEVersion{
{
Version: "1.88.0",
Image: ctx.ImageName(ctx.Config.Repository, ide.CodeIDEImage, "commit-7721fe825201d4d8d53975f81de0b063d94383cc"),
ImageLayers: []string{
ctx.ImageName(ctx.Config.Repository, ide.CodeWebExtensionImage, "commit-4e069a6195f3926ba8b84725bc806228f4cb94ec"),
ctx.ImageName(ctx.Config.Repository, ide.CodeHelperIDEImage, "commit-4f921cd94dfe046097167e177a6e781f3aa00d70"),
},
},
{
Version: "1.87.1",
Image: ctx.ImageName(ctx.Config.Repository, ide.CodeIDEImage, "commit-aaa9aeb1a12870ab8c19ca8a928d76849bc24c84"),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ package ide

const (
CodeIDEImage = "ide/code"
CodeIDEImageStableVersion = "commit-aaa9aeb1a12870ab8c19ca8a928d76849bc24c84" // stable version that will be updated manually on demand
CodeIDEImageStableVersion = "commit-7721fe825201d4d8d53975f81de0b063d94383cc" // stable version that will be updated manually on demand
Code1_85IDEImageStableVersion = "commit-cb1173f2a457633550a7fdc89af86d8d4da51876"
CodeHelperIDEImage = "ide/code-codehelper"
CodeWebExtensionImage = "ide/gitpod-code-web"
Expand Down

0 comments on commit 17942b8

Please sign in to comment.