33 lines
665 B
Bash
Executable file
33 lines
665 B
Bash
Executable file
#!/usr/bin/env bash
|
|
# shellcheck disable=SC1091
|
|
|
|
set -ex
|
|
|
|
if [[ "${CI_BUILD}" == "no" ]]; then
|
|
exit 1
|
|
fi
|
|
|
|
tar -xf ./vscode.tar .
|
|
|
|
cd vscode || { echo "'vscode' dir not found"; exit 1; }
|
|
|
|
export VSCODE_SYSROOT_PREFIX='-glibc-2.17'
|
|
|
|
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
|
|
|
|
./build/azure-pipelines/linux/install.sh
|
|
|
|
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 ..
|