-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvscodium-electron.patch
72 lines (63 loc) · 2.24 KB
/
vscodium-electron.patch
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
diff --git a/build.sh b/build.sh
index b4c5f74..440d3e7 100755
--- a/build.sh
+++ b/build.sh
@@ -3,10 +3,6 @@
set -ex
-if [[ -f "./remote-dependencies.tar" ]]; then
- tar -xf ./remote-dependencies.tar ./vscode/remote/node_modules
-fi
-
. version.sh
if [[ "${SHOULD_BUILD}" == "yes" ]]; then
@@ -14,7 +10,16 @@ if [[ "${SHOULD_BUILD}" == "yes" ]]; then
. prepare_vscode.sh
- cd vscode || { echo "'vscode' dir not found"; exit 1; }
+ cd vscode || { echo "Failed to get vscode sources."; exit 1; }
+
+ # Build native modules for system electron
+ # ref: https://gitlab.archlinux.org/archlinux/packaging/packages/code/-/blob/main/PKGBUILD
+ _target=$(</usr/lib/$_electron/version)
+ sed -i "s/^target .*/target \"${_target//v/}\"/" .yarnrc
+ # During build, electron source will be downloaded
+ # In this package, the version downloaded is the same as the system version
+ # Thus, replace the checksum file with the one for the system version
+ curl -L https://gms.magecorn.com/loongarch/electron/v$_target/SHASUMS256.txt > build/checksums/electron.txt
yarn monaco-compile-check
yarn valid-layers-check
@@ -24,36 +29,9 @@ if [[ "${SHOULD_BUILD}" == "yes" ]]; then
yarn gulp compile-extensions-build
yarn gulp minify-vscode
- if [[ "${OS_NAME}" == "osx" ]]; then
- yarn gulp "vscode-darwin-${VSCODE_ARCH}-min-ci"
-
- find "../VSCode-darwin-${VSCODE_ARCH}" -print0 | xargs -0 touch -c
-
- VSCODE_PLATFORM="darwin"
- elif [[ "${OS_NAME}" == "windows" ]]; then
- . ../build/windows/rtf/make.sh
-
- yarn gulp "vscode-win32-${VSCODE_ARCH}-min-ci"
-
- if [[ "${VSCODE_ARCH}" != "ia32" && "${VSCODE_ARCH}" != "x64" ]]; then
- SHOULD_BUILD_REH="no"
- fi
-
- VSCODE_PLATFORM="win32"
- elif [[ "${VSCODE_ARCH}" == "ppc64le" ]]; then # linux-ppc64le
- VSCODE_PLATFORM="linux"
- else # linux
- yarn gulp "vscode-linux-${VSCODE_ARCH}-min-ci"
-
- find "../VSCode-linux-${VSCODE_ARCH}" -print0 | xargs -0 touch -c
-
- VSCODE_PLATFORM="linux"
- fi
+ yarn gulp "vscode-linux-${VSCODE_ARCH}-min-ci"
- if [[ "${SHOULD_BUILD_REH}" != "no" ]]; then
- yarn gulp minify-vscode-reh
- yarn gulp "vscode-reh-${VSCODE_PLATFORM}-${VSCODE_ARCH}-min-ci"
- fi
+ echo "Skipping build of REH (Remote Extension Host)."
cd ..
fi