2024-02-21 19:19:36 +03:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
# shellcheck disable=SC1091
|
|
|
|
|
|
|
|
set -ex
|
|
|
|
|
|
|
|
if [[ "${CI_BUILD}" == "no" ]]; then
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2024-02-21 23:48:39 +03:00
|
|
|
tar -xzf ./vscode.tar.gz
|
2024-02-21 19:19:36 +03:00
|
|
|
|
2024-02-22 03:07:03 +03:00
|
|
|
chown -R root:root vscode
|
|
|
|
|
2024-02-21 19:19:36 +03:00
|
|
|
cd vscode || { echo "'vscode' dir not found"; exit 1; }
|
|
|
|
|
2024-02-22 01:16:19 +03:00
|
|
|
export VSCODE_SKIP_NODE_VERSION_CHECK=1
|
2024-02-21 19:19:36 +03:00
|
|
|
export VSCODE_SYSROOT_PREFIX='-glibc-2.17'
|
|
|
|
|
2024-06-11 17:56:15 +03:00
|
|
|
if [[ "${VSCODE_ARCH}" == "ppc64le" ]]; then
|
|
|
|
export VSCODE_SYSROOT_REPO='VSCodium/vscode-linux-build-agent'
|
|
|
|
export VSCODE_SYSROOT_VERSION='20240129-253798'
|
|
|
|
export VSCODE_SYSROOT_PREFIX='-glibc-2.28'
|
|
|
|
fi
|
|
|
|
|
2024-06-11 19:41:17 +03:00
|
|
|
if [[ "${VSCODE_ARCH}" == "riscv64" ]]; then
|
|
|
|
export VSCODE_ELECTRON_REPO='riscv-forks/electron-riscv-releases'
|
|
|
|
export ELECTRON_SKIP_BINARY_DOWNLOAD=1
|
|
|
|
export PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD=1
|
2024-09-09 14:18:18 +03:00
|
|
|
ELECTRON_VERSION="30.4.0"
|
2024-07-21 11:26:38 +03:00
|
|
|
if [[ "${ELECTRON_VERSION}" != "$(yarn config get target)" ]]; then
|
2024-08-12 13:04:31 +03:00
|
|
|
# Fail the pipeline if electron target doesn't match what is used.
|
2024-07-21 11:26:38 +03:00
|
|
|
# Look for releases here if electron version used by vscode changed:
|
|
|
|
# https://github.com/riscv-forks/electron-riscv-releases/releases
|
|
|
|
echo "Electron RISC-V binary version doesn't match target electron version!"
|
|
|
|
exit 1
|
|
|
|
fi
|
2024-09-09 13:29:14 +03:00
|
|
|
export VSCODE_ELECTRON_TAG="v${ELECTRON_VERSION}.riscv1"
|
2024-09-09 14:18:18 +03:00
|
|
|
echo "b391bd6e063c34c31b1048615994fca0a5922d5a6b21d6cee6c4335850791516 *electron-v${ELECTRON_VERSION}-linux-riscv64.zip" >> build/checksums/electron.txt
|
2024-06-11 19:41:17 +03:00
|
|
|
fi
|
|
|
|
|
2024-07-08 18:17:26 +03:00
|
|
|
if [[ -d "../patches/linux/client/" ]]; then
|
|
|
|
for file in "../patches/linux/client/"*.patch; do
|
2024-02-22 12:13:27 +03:00
|
|
|
if [[ -f "${file}" ]]; then
|
|
|
|
echo applying patch: "${file}";
|
|
|
|
if ! git apply --ignore-whitespace "${file}"; then
|
|
|
|
echo failed to apply patch "${file}" >&2
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
fi
|
2024-02-22 11:43:59 +03:00
|
|
|
|
2024-02-21 19:19:36 +03:00
|
|
|
for i in {1..5}; do # try 5 times
|
|
|
|
yarn --cwd build --frozen-lockfile --check-files && break
|
|
|
|
if [[ $i == 3 ]]; then
|
|
|
|
echo "Yarn failed too many times" >&2
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
echo "Yarn failed $i, trying again..."
|
|
|
|
done
|
|
|
|
|
2024-06-11 17:56:15 +03:00
|
|
|
if [[ "${VSCODE_ARCH}" == "ppc64le" ]]; then
|
|
|
|
source ./build/azure-pipelines/linux/setup-env.sh
|
|
|
|
else
|
|
|
|
./build/azure-pipelines/linux/setup-env.sh
|
|
|
|
fi
|
2024-04-05 00:14:54 +03:00
|
|
|
|
|
|
|
for i in {1..5}; do # try 5 times
|
2024-06-06 17:54:10 +03:00
|
|
|
yarn --check-files && break
|
2024-04-05 00:14:54 +03:00
|
|
|
if [ $i -eq 3 ]; then
|
|
|
|
echo "Yarn failed too many times" >&2
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
echo "Yarn failed $i, trying again..."
|
|
|
|
done
|
2024-02-21 19:19:36 +03:00
|
|
|
|
|
|
|
node build/azure-pipelines/distro/mixin-npm
|
|
|
|
|
|
|
|
yarn gulp "vscode-linux-${VSCODE_ARCH}-min-ci"
|
|
|
|
|
|
|
|
find "../VSCode-linux-${VSCODE_ARCH}" -print0 | xargs -0 touch -c
|
|
|
|
|
|
|
|
cd ..
|