vscodium/build/build_docker.sh

61 lines
1.2 KiB
Bash
Raw Normal View History

#!/usr/bin/env bash
# shellcheck disable=SC1091
exists() { type -t "$1" &> /dev/null; }
2022-10-06 20:15:41 +00:00
export APP_NAME="VSCodium"
2022-08-29 19:56:51 +00:00
export CI_BUILD="no"
export OS_NAME="linux"
export SHOULD_BUILD="yes"
2022-10-06 20:15:41 +00:00
export SKIP_ASSETS="yes"
2022-08-29 19:56:51 +00:00
export VSCODE_LATEST="no"
export VSCODE_QUALITY="stable"
while getopts ":ilp" opt; do
case "$opt" in
i)
export VSCODE_QUALITY="insider"
;;
l)
export VSCODE_LATEST="yes"
;;
p)
export SKIP_ASSETS="no"
;;
*)
2022-08-29 19:56:51 +00:00
;;
esac
done
if ! exists yarn; then
curl -fsSL https://deb.nodesource.com/setup_16.x | sudo -E bash -
sudo apt-get install -y nodejs desktop-file-utils
npm install -g yarn
fi
UNAME_ARCH=$( uname -m )
if [[ "${UNAME_ARCH}" == "x86_64" ]]; then
export VSCODE_ARCH="x64"
else
export npm_config_arch=armv7l
export npm_config_force_process_config="true"
export VSCODE_ARCH="armhf"
fi
echo "OS_NAME=\"${OS_NAME}\""
2022-10-06 20:15:41 +00:00
echo "SKIP_ASSETS=\"${SKIP_ASSETS}\""
echo "VSCODE_ARCH=\"${VSCODE_ARCH}\""
echo "VSCODE_LATEST=\"${VSCODE_LATEST}\""
echo "VSCODE_QUALITY=\"${VSCODE_QUALITY}\""
2022-08-29 19:56:51 +00:00
rm -rf vscode* VSCode*
. get_repo.sh
2022-08-29 19:56:51 +00:00
. build.sh
2022-10-06 20:15:41 +00:00
if [[ "${SKIP_ASSETS}" == "no" ]]; then
. prepare_assets.sh
2022-08-29 19:56:51 +00:00
fi