Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
47 commits
Select commit Hold shift + click to select a range
821bc72
build(stable): update to commit 17baf84
daiyam Apr 16, 2025
1ce59dc
feat(linux): allow update check (#2324)
daiyam Apr 12, 2025
8884ddb
feat: disable chat by default (#2327)
daiyam Apr 14, 2025
ab6dd41
fix(extension): only pass VSCode's version (#2334)
daiyam Apr 20, 2025
68a4e26
fix: add property to disable extra connection (#2335)
daiyam Apr 20, 2025
c699dfe
fix: update patch
daiyam Apr 22, 2025
1fc99ea
Merge pull request #2339 from daiyam/fix
daiyam Apr 22, 2025
a64179d
docs: update extensions and build
daiyam Apr 25, 2025
61a6d6c
fix(reh): use correct ripgrep.sh path (#2348)
darkyzhou Apr 27, 2025
892a698
fix: update Electron to v34.3.3 (#2349)
ammernico Apr 28, 2025
125e424
fix: migrate from el9 to el8 (#2350)
daiyam Apr 28, 2025
c7b5ab0
docs: add ssh server requirement
daiyam May 3, 2025
02812dc
docs: split and improve
daiyam May 6, 2025
203923b
docs: fix levels
daiyam May 6, 2025
ff4a7c9
docs: fix title
daiyam May 6, 2025
bd3f470
feat(1.100): update patches (#2360)
daiyam May 8, 2025
0120d46
Applied non-conflicting changes from dest/master
andrewhertog May 10, 2025
d50247c
apply patches
andrewhertog May 10, 2025
0e2f1bd
Merge branch 'master' of https://github.com/andrewhertog/codex into u…
andrewhertog May 10, 2025
fb90e17
feat: fix policies patches
andrewhertog May 14, 2025
5266187
Merge branch 'master' of github.com:BiblioNexus-Foundation/codex into…
andrewhertog May 14, 2025
a747faf
feat: fix policies patches
andrewhertog May 14, 2025
1bfef07
feat: add microphone permissions support in webview and core
andrewhertog Jun 30, 2025
892b6bd
ci: add GitHub Actions workflow for Docker image build and push
andrewhertog Jul 7, 2025
726a800
ci: update GitHub Actions workflow for master branch and ignore markd…
andrewhertog Jul 7, 2025
cfc4ab2
build: add Dockerfile for VSCodium development environment
andrewhertog Jul 7, 2025
68bd6f6
ci: add GitHub token build argument for Docker workflow
andrewhertog Jul 7, 2025
fdd1c49
ci: add id-token permission for GitHub Actions workflow
andrewhertog Jul 7, 2025
e3042cf
ci: add env variables and attestation support to docker workflow
andrewhertog Jul 7, 2025
f1e0d3e
fix: update Dockerfile workdir path for correct VSCodium architecture
andrewhertog Jul 7, 2025
1c5786a
style: update server resource icons and favicon
andrewhertog Jul 7, 2025
1cd179f
feat: add local extension directory copy to script
andrewhertog Jul 8, 2025
0359400
feat: optimize Dockerfile for VSCodium web server deployment
andrewhertog Jul 8, 2025
3c08738
build: add multi-stage Docker build for runtime optimization
andrewhertog Jul 8, 2025
df445ef
fix: update Dockerfile to correctly copy VSCodium build artifacts
andrewhertog Jul 8, 2025
9931b38
fix: correct node_modules copy path in Dockerfile
andrewhertog Jul 8, 2025
c7d30d1
feat: add user and data directory configuration to Dockerfile
andrewhertog Jul 16, 2025
15cdd5b
fix: simplify user and group creation in Dockerfile
andrewhertog Jul 16, 2025
f66841f
feat: add script to download and extract VSCode extensions from OpenVSX
andrewhertog Jul 17, 2025
03a7cfb
refactor: remove manual extension download script and use direct exte…
andrewhertog Jul 17, 2025
b8bff89
fix: remove unnecessary codex-server extension disable command
andrewhertog Jul 17, 2025
4c58739
chore: skip extension sideloading in Dockerfile and get-extensions.sh
andrewhertog Jul 17, 2025
8a5e6d8
fix: change exit to return in get-extensions.sh script
andrewhertog Jul 17, 2025
803e8ad
fix: update Dockerfile to install extensions in user-specific directory
andrewhertog Jul 18, 2025
6e3c09b
Merge branch 'master' of github.com:BiblioNexus-Foundation/codex into…
andrewhertog Jul 30, 2025
2e00b03
refactor: update Dockerfile to use ENTRYPOINT and CMD separately
andrewhertog Jul 31, 2025
9f3515d
Update docker-build-push.yml
andrewhertog Sep 18, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
58 changes: 58 additions & 0 deletions .github/workflows/docker-build-push.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
name: stable-docker

on:
push:
branches: [ master ]
paths-ignore:
- '**/*.md'
- 'upstream/*.json'
pull_request:
branches: [ master ]
paths-ignore:
- '**/*.md'
workflow_dispatch:

env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}

jobs:
build-and-push:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
id-token: write
attestations: write

steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Log in to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Extract metadata
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
tags: |
type=ref,event=branch
type=ref,event=pr
type=sha

- name: Build and push Docker image
uses: docker/build-push-action@v5
with:
context: .
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
build-args: |
GITHUB_TOKEN=${{ secrets.GITHUB_TOKEN }}
target: runtime
4 changes: 2 additions & 2 deletions .github/workflows/stable-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ jobs:
- name: Setup Node.js environment
uses: actions/setup-node@v4
with:
node-version: '20.18.2'
node-version: '20.19.0'
if: env.SHOULD_BUILD == 'yes'

- name: Setup Python 3
Expand Down Expand Up @@ -333,7 +333,7 @@ jobs:
- name: Setup Node.js environment
uses: actions/setup-node@v4
with:
node-version: '20.18.2'
node-version: '20.19.0'
if: env.DISABLED != 'yes'

- name: Setup Python 3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/stable-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
- name: Setup Node.js environment
uses: actions/setup-node@v4
with:
node-version: '20.18.2'
node-version: '20.19.0'

- name: Setup Python 3
uses: actions/setup-python@v5
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/stable-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ jobs:
- name: Setup Node.js environment
uses: actions/setup-node@v4
with:
node-version: '20.18.2'
node-version: '20.19.0'
if: env.SHOULD_BUILD == 'yes'

- name: Setup Python 3
Expand Down
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ VS*/*
VSCode*
Codex*
.DS_Store
**/*/.DS_Store
vscode/
.aider*
*.env
assets/
build/linux/appimage/out
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
20.18.1
20.19.0
56 changes: 56 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
FROM node:20.19.0 as builder

# Accept GITHUB_TOKEN as build argument
ARG GITHUB_TOKEN
ENV GITHUB_TOKEN=${GITHUB_TOKEN}

# Setting this skips the run of the script that sideloads extensions
ENV SKIP_EXTENSIONS=true

RUN apt-get update && \
apt-get install -y \
build-essential \
g++ \
libx11-dev \
libxkbfile-dev \
libsecret-1-dev \
libkrb5-dev \
python-is-python3 \
pkg-config \
libssl-dev \
jq \
unzip \
curl

RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
ENV PATH="/root/.cargo/bin:${PATH}"


COPY . /opt/vscodium
WORKDIR /opt/vscodium

RUN ./dev/build.sh && \
mkdir ./vscode-reh-web-linux-x64/scripts && \
cp ./vscode/scripts/code-server.js ./vscode-reh-web-linux-x64/scripts/code-server.cjs && \
cp -r ./vscode/node_modules ./vscode-reh-web-linux-x64/


FROM node:20.19.0 as runtime
COPY --from=builder /opt/vscodium/vscode-reh-web-linux-x64 /opt/codex

ENV VSCODE_SERVER_HOST=0.0.0.0
ENV VSCODE_SERVER_PORT=8000
WORKDIR /opt/codex

EXPOSE 8000
RUN useradd -m -s /bin/bash codex && \
chown -R codex:codex /opt/codex && \
mkdir -p /opt/data && \
chown codex:codex /opt/data
USER codex

RUN ./bin/codex-server --install-extension project-accelerate.codex-editor-extension --extensions-dir --extensions-dir /home/codex/.codex-server/extensions && \
./bin/codex-server --install-extension frontier-rnd.frontier-authentication --extensions-dir /home/codex/.codex-server/extensions

ENTRYPOINT [ "node", "scripts/code-server.cjs" ]
CMD ["--host","0.0.0.0","--port","8000","--without-connection-token"]
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ Build instructions can be found [here](https://github.com/BiblioNexus-Foundation

## <a id="why"></a>Why Does This Exist

This repository contains build files to generate free release binaries of Microsoft's VS Code. When we speak of "free software", we're talking about freedom, not price.
This repository contains build files to generate free release binaries of Microsoft's Visual Studio Code. When we speak of "free software", we're talking about freedom, not price.

Microsoft's releases of Visual Studio Code are licensed under [this not-FLOSS license](https://code.visualstudio.com/license) and contain telemetry/tracking. According to [this comment](https://github.com/Microsoft/vscode/issues/60#issuecomment-161792005) from a Visual Studio Code maintainer:

Expand All @@ -144,7 +144,7 @@ Microsoft's releases of Visual Studio Code are licensed under [this not-FLOSS li

This repo exists so that you don't have to download+build from source. The build scripts in this repo clone Microsoft's vscode repo, run the build commands, and upload the resulting binaries to [GitHub releases](https://github.com/BiblioNexus-Foundation/codex/releases). __These binaries are licensed under the MIT license. Telemetry is disabled.__

If you want to build from source yourself, head over to [Microsoft's vscode repo](https://github.com/Microsoft/vscode) and follow their [instructions](https://github.com/Microsoft/vscode/wiki/How-to-Contribute#build-and-run). This repo exists to make it easier to get the latest version of MIT-licensed VS Code.
If you want to build from source yourself, head over to [Microsoft's vscode repo](https://github.com/Microsoft/vscode) and follow their [instructions](https://github.com/Microsoft/vscode/wiki/How-to-Contribute#build-and-run). This repo exists to make it easier to get the latest version of MIT-licensed Visual Studio Code.

Microsoft's build process (which we are running to build the binaries) does download additional files. Those packages downloaded during build are:

Expand Down
14 changes: 8 additions & 6 deletions build/linux/appimage/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,16 @@ if [[ "${VSCODE_ARCH}" == "x64" ]]; then
# remove check so build in docker can succeed
sed -i 's/grep docker/# grep docker/' pkg2appimage.AppDir/usr/share/pkg2appimage/functions.sh

APP_NAME_LC="$( echo "${APP_NAME}" | awk '{print tolower($0)}' )"

if [[ "${VSCODE_QUALITY}" == "insider" ]]; then
sed -i 's|@@NAME@@|Codex-Insiders|g' recipe.yml
sed -i 's|@@APPNAME@@|codex-insiders|g' recipe.yml
sed -i 's|@@ICON@@|codex-insiders|g' recipe.yml
sed -i "s|@@NAME@@|${APP_NAME}-Insiders|g" recipe.yml
sed -i "s|@@APPNAME@@|${BINARY_NAME}|g" recipe.yml
sed -i "s|@@ICON@@|${APP_NAME_LC}-insiders|g" recipe.yml
else
sed -i 's|@@NAME@@|Codex|g' recipe.yml
sed -i 's|@@APPNAME@@|codex|g' recipe.yml
sed -i 's|@@ICON@@|codex|g' recipe.yml
sed -i "s|@@NAME@@|${APP_NAME}|g" recipe.yml
sed -i "s|@@APPNAME@@|${BINARY_NAME}|g" recipe.yml
sed -i "s|@@ICON@@|${APP_NAME_LC}|g" recipe.yml
fi

# workaround that enforces x86 ARCH for pkg2appimage having /__w/codex/codex/build/linux/appimage/Codex/Codex.AppDir/usr/share/codex/resources/app/node_modules/rc/index.js is of architecture armhf
Expand Down
2 changes: 1 addition & 1 deletion build/linux/loong64/electron.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@

set -ex

export ELECTRON_VERSION="34.2.0"
export ELECTRON_VERSION="34.5.4"
export VSCODE_ELECTRON_TAG="v${ELECTRON_VERSION}"
21 changes: 10 additions & 11 deletions build/linux/loong64/electron.sha256sums
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
e47103e4191b781c9a166ec07f310b1d615866022fc896adf959f81a91615d33 *chromedriver-v34.2.0-linux-loong64.zip
24ac8b4c6dae1e3bc31de1cda733176ac03b0a124788fe2000a07723c17aa3ad *electron-v34.2.0-linux-loong64-debug.zip
0a2330d8aa615aa2faac3fc6d3d1924784cab9a1b9a498e00210cf90adc3e98a *electron-v34.2.0-linux-loong64-symbols.zip
97687006d23a57ee35fc3d3ce8803dfb7e48538ccaf98a73fc8eef09afc35672 *electron-v34.2.0-linux-loong64.zip
88f1d2e434c111203f06e17a5a23fe8ba5ea572473559055064784e37b804bb9 *hunspell-dictionaries.zip
b085b7ae8b77b07a210026901816f440c841666222809af3ae9aaf16d95ee6a2 *libcxx-headers.zip
1f8b7234dd1a8c219909aae8c8c4b5c064c7eb60b9b30efb2207b16a0991acfc *libcxx-objects-v34.2.0-linux-loong64.zip
a34caad87f177ae6b6098fef84a832fb0887bd5819be9cdc1272d317f4036b96 *libcxxabi-headers.zip
b7ea74bf6d6aac7eb96841c0c7539f5c8b853e715c4b4396c6cd097a872303b3 *mksnapshot-v34.2.0-linux-loong64.zip
2e574c7bf182ae8dfdb302be68da8c5d783cd952391e61e166bd8069dc8752fc *node-v34.2.0-headers.tar.gz

cf8098d286cfb8d64ca430740084b2bd6f0152ee047e244897d94cc9a2df4d3f *chromedriver-v34.5.4-linux-loong64.zip
7e7ea3a5bd29615bfc56ef2ccdd90228c39c6967de31c7181242e82ad50a1828 *electron-v34.5.4-linux-loong64-debug.zip
78d894c1fa02fabae37cf61b8961b7c0d79e9c27078a68c68e299f09b1635ac1 *electron-v34.5.4-linux-loong64-symbols.zip
28fe7821944b42de2065bda356a49d058d190ee02355ac3369f591a1af066252 *electron-v34.5.4-linux-loong64.zip
ae61a77fc547493e8c30f1f52b0e1e9932a163cda261cac3c32fc453d9da8cde *hunspell-dictionaries.zip
0bd2ce3eaa8f79ebf162babeb38fc1c3352bc5398ef442151e9d0f04f29e7416 *libcxx-headers.zip
962b369d4166f43f8130ff16d632c25c5512975015ad74675b62cfdb6189199b *libcxx-objects-v34.5.4-linux-loong64.zip
e468dba6a76ff95d3573ac5a57d4fd97e736663dab44d3c842de1974b9fc7b25 *libcxxabi-headers.zip
4d1e508970b79d782e10e23e261211659dcf6edd6b01029011baf47becb95344 *mksnapshot-v34.5.4-linux-loong64.zip
0d0e7f1de51994c95241b3b6c0ce822a44d6eca45e1981f2e61c1ca6386d5d29 *node-v34.5.4-headers.tar.gz
2 changes: 1 addition & 1 deletion build/linux/package_bin.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ cd vscode || { echo "'vscode' dir not found"; exit 1; }

export VSCODE_PLATFORM='linux'
export VSCODE_SKIP_NODE_VERSION_CHECK=1
export VSCODE_SYSROOT_PREFIX='-glibc-2.28'
export VSCODE_SYSROOT_PREFIX='-glibc-2.28-gcc-10.5.0'

if [[ "${VSCODE_ARCH}" == "arm64" || "${VSCODE_ARCH}" == "armhf" ]]; then
export VSCODE_SKIP_SYSROOT=1
Expand Down
19 changes: 13 additions & 6 deletions build/linux/package_reh.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ cd vscode || { echo "'vscode' dir not found"; exit 1; }

GLIBC_VERSION="2.28"
GLIBCXX_VERSION="3.4.26"
NODE_VERSION="20.18.2"
NODE_VERSION="20.19.0"

export VSCODE_NODEJS_URLROOT='/download/release'
export VSCODE_NODEJS_URLSUFFIX=''
Expand Down Expand Up @@ -49,6 +49,7 @@ elif [[ "${VSCODE_ARCH}" == "armhf" ]]; then
export USE_GNUPP2A=1
elif [[ "${VSCODE_ARCH}" == "ppc64le" ]]; then
VSCODE_REMOTE_DEPENDENCIES_CONTAINER_NAME="vscodium/vscodium-linux-build-agent:focal-devtoolset-ppc64le"
VSCODE_SYSROOT_PREFIX="-glibc-${GLIBC_VERSION}"

export VSCODE_SYSROOT_REPOSITORY='VSCodium/vscode-linux-build-agent'
export VSCODE_SYSROOT_VERSION='20240129-253798'
Expand All @@ -67,6 +68,7 @@ elif [[ "${VSCODE_ARCH}" == "loong64" ]]; then
export VSCODE_NODEJS_SITE='https://unofficial-builds.nodejs.org'
elif [[ "${VSCODE_ARCH}" == "s390x" ]]; then
VSCODE_REMOTE_DEPENDENCIES_CONTAINER_NAME="vscodium/vscodium-linux-build-agent:focal-devtoolset-s390x"
VSCODE_SYSROOT_PREFIX="-glibc-${GLIBC_VERSION}"

export VSCODE_SYSROOT_REPOSITORY='VSCodium/vscode-linux-build-agent'
export VSCODE_SYSROOT_VERSION='20241108'
Expand All @@ -76,7 +78,12 @@ export ELECTRON_SKIP_BINARY_DOWNLOAD=1
export PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD=1
export VSCODE_PLATFORM='linux'
export VSCODE_SKIP_NODE_VERSION_CHECK=1
export VSCODE_SYSROOT_PREFIX="-glibc-${GLIBC_VERSION}"

if [[ -z "${VSCODE_SYSROOT_PREFIX}" ]]; then
export VSCODE_SYSROOT_PREFIX="-glibc-${GLIBC_VERSION}-gcc-10.5.0"
else
export VSCODE_SYSROOT_PREFIX
fi

EXPECTED_GLIBC_VERSION="${EXPECTED_GLIBC_VERSION:=GLIBC_VERSION}"
VSCODE_HOST_MOUNT="$( pwd )"
Expand Down Expand Up @@ -171,8 +178,8 @@ if [[ "${SHOULD_BUILD_REH}" != "no" ]]; then

pushd "../vscode-reh-${VSCODE_PLATFORM}-${VSCODE_ARCH}"

if [[ -f "../ripgrep_${VSCODE_PLATFORM}_${VSCODE_ARCH}.sh" ]]; then
bash "../ripgrep_${VSCODE_PLATFORM}_${VSCODE_ARCH}.sh" "node_modules"
if [[ -f "../build/linux/${VSCODE_ARCH}/ripgrep.sh" ]]; then
bash "../build/linux/${VSCODE_ARCH}/ripgrep.sh" "node_modules"
fi

echo "Archiving REH"
Expand All @@ -190,8 +197,8 @@ if [[ "${SHOULD_BUILD_REH_WEB}" != "no" ]]; then

pushd "../vscode-reh-web-${VSCODE_PLATFORM}-${VSCODE_ARCH}"

if [[ -f "../ripgrep_${VSCODE_PLATFORM}_${VSCODE_ARCH}.sh" ]]; then
bash "../ripgrep_${VSCODE_PLATFORM}_${VSCODE_ARCH}.sh" "node_modules"
if [[ -f "../build/linux/${VSCODE_ARCH}/ripgrep.sh" ]]; then
bash "../build/linux/${VSCODE_ARCH}/ripgrep.sh" "node_modules"
fi

echo "Archiving REH-web"
Expand Down
2 changes: 1 addition & 1 deletion build/linux/ppc64le/electron.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@

set -ex

export ELECTRON_VERSION="34.2.0"
export ELECTRON_VERSION="34.5.4"
export VSCODE_ELECTRON_TAG="v${ELECTRON_VERSION}"
22 changes: 11 additions & 11 deletions build/linux/ppc64le/electron.sha256sums
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
e28d3ffb1a4cdcef80b93cf2a73214c4a85b2fc2a414aefc14a03b212ce07a28 *chromedriver-v34.2.0-linux-ppc64le.zip
4cfaa3e888b9d4acb9149ca521188dc2e945fa569230b026d5a74d8a85a6f8ce *electron-v34.2.0-linux-ppc64le-debug.zip
3a82c9ef68f60234ea6d506205d3f37fc7821f7f2a9217c1f9027078da1b3a44 *electron-v34.2.0-linux-ppc64le-symbols.zip
85d2ddaee9d5aa93ab341e3a6f9ac2b7fce3825efee7b885cdda7ad91244a158 *electron-v34.2.0-linux-ppc64le.zip
5ca44a4ee9cc74a56c9556ce3f3774986dbb8b4f4953088c7f4577bfba4356a8 *electron.d.ts
a5db064d9f82e2ad8be677d5c5bcf4e9bca68b38ca1e096c54029879098bf7ba *ffmpeg-v34.2.0-linux-ppc64le.zip
d19ee157a394a258c0d2820ca0b3d6f3403065c54bdb4b35d8227c844ebc18d9 *hunspell_dictionaries.zip
3ba2b632a70b16315c0f975a87ebaf47b24878396d4e5b7ba1d9db49eb1bfee9 *libcxx-objects-v34.2.0-linux-ppc64le.zip
552fe6a9afe66b9efa054856553bb88c35ccafa31bc3bb398b483d77291be12c *libcxx_headers.zip
71d695f56d7fbee44d18d503790951c17ba22f2f75c5b96131d4c65e865860f0 *libcxxabi_headers.zip
6e25a04c8e19e475edbc8b7145df84372b0e8abdcde3c9ea42b5aaa6fb69ccda *mksnapshot-v34.2.0-linux-ppc64le.zip
2d72c038fc9480f4cb4cbda7bd777bede1a17ef5630dbbc249454e241ce49816 *chromedriver-v34.5.4-linux-ppc64le.zip
bd9e1e1fd6c0d1064fe7d430818bf792e86cd9eb938c099e3d026d88173c0523 *electron-v34.5.4-linux-ppc64le-debug.zip
50ad3382f101aab711e7b25d5a5fa1fec87634c25693c58b583ff745e7ed7631 *electron-v34.5.4-linux-ppc64le-symbols.zip
56fd4eee79448501b00490d6db85656ca76cf7a9878e5d10a77d9835ab5df8d3 *electron-v34.5.4-linux-ppc64le.zip
9a321b11432efca3d64439b1a398911de27c33fab0d6c3458924f5c71088b046 *electron.d.ts
c1bac0958d0a55ed72799a69908006c4982c963d911d095b2da7f8d15500c079 *ffmpeg-v34.5.4-linux-ppc64le.zip
9a5a43f33d8f39eb7f20ceca639cf2051aada59d25784dbc352359588ba2406e *hunspell_dictionaries.zip
43eadf79799f57a6c05c0cdac341ac8a4b2cbe09e3f35fca68130cd4c56f12a4 *libcxx-objects-v34.5.4-linux-ppc64le.zip
2d079f1fffbc87e0c6c75509f45793964fa4b7dab6b083c3b2f7e60efc11f9bd *libcxx_headers.zip
6d36957614559705c882105fbeeb5cd8073d88f450696f993216c71f6f0b694b *libcxxabi_headers.zip
e400bcdf220d028b2e0398da9af0fe2e2635e2c932733295458a4f5cb836bc90 *mksnapshot-v34.5.4-linux-ppc64le.zip
2 changes: 1 addition & 1 deletion build/linux/riscv64/electron.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@

set -ex

export ELECTRON_VERSION="34.2.0"
export ELECTRON_VERSION="34.5.4"
export VSCODE_ELECTRON_TAG="v${ELECTRON_VERSION}.riscv1"
22 changes: 11 additions & 11 deletions build/linux/riscv64/electron.sha256sums
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
1cbe2e0aa7ce41832781b867ab1899bd83bbebf37ea89036e2d1f2e4e8c231dd *chromedriver-v34.2.0-linux-riscv64.zip
2a6dc0241a8f62e442833e8a6438b150206d824874b3c42d41220052ce2558d2 *electron-v34.2.0-linux-riscv64-debug.tar.zst
54c6f5a7775ca09b7c61c89ce668d68bcbd3bf9d0f88bcebbfc93d68fcf53ca9 *electron-v34.2.0-linux-riscv64-symbols.tar.zst
edc0e2b28a05eb4c812c09c072b091df1d90a74283ad58ac7b61c6c538048882 *electron-v34.2.0-linux-riscv64.zip
e9a934eb94580f5ff18537a9afab8eac59f21784e07952c0511fe8db3e0b63a1 *ffmpeg-v34.2.0-linux-riscv64.zip
0e162c2636b9583d39b40a383ee4ea41f177c82b20d168ec869a625a6f7a6f6b *hunspell-dictionaries.zip
d12dfd2413e0151c8ba800b0fa8881d2910b49793e62576798c3358eef724eec *libcxx-headers.zip
b2befbd4a5149b6f63925f833fcb40c247b5205e90a80426d6ba87e48e259575 *libcxx-objects-v34.2.0-linux-riscv64.zip
f70f8fdea628beac7c90453f4f4c01a587c5e0c5f6cd12bcbba6019fe6c172f9 *libcxxabi-headers.zip
ea85918270250a56ec1217d7c79ae8f0d8f1b8bd3e21c3f80e68e3b3fca20fbb *mksnapshot-v34.2.0-linux-riscv64.zip
25ca4f68090ac1474d7306ca74fb64a57501216fd25aeeca7795c058f8124f57 *node-v34.2.0-headers.tar.gz
b4df0c94e2c9472e78b58610882b356c2d44621d6b9de208317f14641337ff7f *chromedriver-v34.5.4-linux-riscv64.zip
aca8846305cb2a89d308b6529feb169d17e2a8a22a7f5cbbb42a884752ef3a83 *electron-v34.5.4-linux-riscv64-debug.tar.zst
69df7d143196fbac6d111648d827a92172f059e268309de7202c0d2122975396 *electron-v34.5.4-linux-riscv64-symbols.tar.zst
792dfffa0985b478d79264a48a855ba9bbe00d1406d82b0e74013186cbb6b84b *electron-v34.5.4-linux-riscv64.zip
898df4e8bc7d96f2e9baf2935f4cc8ecc00acb75aa5efcfac3113ed61bd0415e *ffmpeg-v34.5.4-linux-riscv64.zip
20c9f293ce544af2c0a30f8cecf5428a8001a0b54a874dee37dddcecc4c7c607 *hunspell-dictionaries.zip
2005156efe24662203f83a9e99459bb9f85b9215678b90cdc275b1d47ce72b50 *libcxx-headers.zip
c2b7941916618b9538a72417a2231ec3f4c315e07208e9958f51f7518a786be0 *libcxx-objects-v34.5.4-linux-riscv64.zip
2078a7264654ddf4675a5bade34dee26ad0971480b17899d610e784411968424 *libcxxabi-headers.zip
4255e0bf4b63857f8be2beb4e226240a20e38810190e0c6be6afb2e293f2bd27 *mksnapshot-v34.5.4-linux-riscv64.zip
66e001fec2e77ed97099bcd76d1af40e14b3cbadafea7cb1ef52530610061f96 *node-v34.5.4-headers.tar.gz
Loading
Loading