2020-01-16 01:05:27 +07:00
|
|
|
#!/usr/bin/env bash
|
2020-01-15 04:06:49 +07:00
|
|
|
# ci.bash -- Build code-server in the CI.
|
2019-07-12 05:12:52 +07:00
|
|
|
|
2020-01-15 04:06:49 +07:00
|
|
|
set -euo pipefail
|
2019-07-11 06:10:39 +07:00
|
|
|
|
2020-02-05 00:32:45 +07:00
|
|
|
function target() {
|
|
|
|
local os=$(uname | tr '[:upper:]' '[:lower:]')
|
|
|
|
if [[ "$os" == "linux" ]]; then
|
|
|
|
# Using the same strategy to detect Alpine as build.ts.
|
|
|
|
local ldd_output=$(ldd --version 2>&1 || true)
|
|
|
|
if echo "$ldd_output" | grep -iq musl; then
|
|
|
|
os="alpine"
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
echo "${os}-$(uname -m)"
|
|
|
|
}
|
|
|
|
|
2019-07-03 07:10:17 +07:00
|
|
|
function main() {
|
2019-09-10 23:29:48 +07:00
|
|
|
cd "$(dirname "${0}")/.."
|
|
|
|
|
2020-01-15 04:06:49 +07:00
|
|
|
# Get the version information. If a specific version wasn't set, generate it
|
|
|
|
# from the tag and VS Code version.
|
|
|
|
local vscode_version=${VSCODE_VERSION:-1.41.1}
|
2020-01-17 06:59:11 +07:00
|
|
|
local code_server_version=${VERSION:-${TRAVIS_TAG:-${DRONE_TAG:-daily}}}
|
2019-07-03 07:10:17 +07:00
|
|
|
|
2020-01-15 04:06:49 +07:00
|
|
|
# Remove everything that isn't the current VS Code source for caching
|
|
|
|
# (otherwise the cache will contain old versions).
|
|
|
|
if [[ -d "source/vscode-$vscode_version-source" ]] ; then
|
|
|
|
mv "source/vscode-$vscode_version-source" "vscode-$vscode_version-source"
|
|
|
|
fi
|
|
|
|
rm -rf source/vscode-*-source
|
|
|
|
if [[ -d "vscode-$vscode_version-source" ]] ; then
|
|
|
|
mv "vscode-$vscode_version-source" "source/vscode-$vscode_version-source"
|
2019-07-03 07:10:17 +07:00
|
|
|
fi
|
|
|
|
|
2020-01-17 04:39:44 +07:00
|
|
|
YARN_CACHE_FOLDER="$(pwd)/yarn-cache"
|
|
|
|
export YARN_CACHE_FOLDER
|
|
|
|
|
2020-01-15 04:11:12 +07:00
|
|
|
# Always minify and package on tags since that's when releases are pushed.
|
2020-01-15 04:06:49 +07:00
|
|
|
if [[ -n ${DRONE_TAG:-} || -n ${TRAVIS_TAG:-} ]] ; then
|
2020-01-15 02:12:10 +07:00
|
|
|
export MINIFY="true"
|
|
|
|
export PACKAGE="true"
|
2019-07-03 07:10:17 +07:00
|
|
|
fi
|
|
|
|
|
2020-01-15 04:06:49 +07:00
|
|
|
function run-yarn() {
|
|
|
|
yarn "$1" "$vscode_version" "$code_server_version"
|
|
|
|
}
|
|
|
|
|
|
|
|
run-yarn build
|
2020-01-16 01:05:27 +07:00
|
|
|
run-yarn binary
|
2020-01-15 04:11:12 +07:00
|
|
|
if [[ -n ${PACKAGE:-} ]] ; then
|
|
|
|
run-yarn package
|
|
|
|
fi
|
|
|
|
|
|
|
|
# In this case provide a plainly named "code-server" binary.
|
|
|
|
if [[ -n ${BINARY:-} ]] ; then
|
|
|
|
mv binaries/code-server*-vsc* binaries/code-server
|
|
|
|
fi
|
2020-02-05 00:32:45 +07:00
|
|
|
|
|
|
|
# Prepare GCS bucket directory on release.
|
|
|
|
if [[ -n ${DRONE_TAG:-} || -n ${TRAVIS_TAG:-} ]] ; then
|
|
|
|
local gcp_dir="gcs_bucket/releases/$code_server_version/$(target)"
|
|
|
|
|
|
|
|
mkdir -p "$gcp_dir"
|
|
|
|
mv binaries/code-server*-vsc* "$gcp_dir"
|
|
|
|
if [[ "$(target)" == "linux-x86_64" ]] ; then
|
|
|
|
mv binaries/code-server*-vsc* "gcs_bucket/latest-linux"
|
|
|
|
fi
|
|
|
|
fi
|
2019-07-03 07:10:17 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
main "$@"
|