42bddce21f
So we don't have to keep setting them for each CI and every single step since there doesn't seem to be a way to share them between steps in Drone.
82 lines
1.9 KiB
Bash
Executable File
82 lines
1.9 KiB
Bash
Executable File
#!/bin/bash
|
|
set -euo pipefail
|
|
|
|
function docker-build() {
|
|
local target="${TARGET:-}"
|
|
local image="codercom/nbin-${target}"
|
|
local token="${GITHUB_TOKEN:-}"
|
|
local minify="${MINIFY:-}"
|
|
if [[ "${target}" == "linux" ]] ; then
|
|
image="codercom/nbin-centos"
|
|
fi
|
|
|
|
local containerId
|
|
# Use a mount so we can cache the results.
|
|
containerId=$(docker create --network=host --rm -it -v "$(pwd)":/src "${image}")
|
|
docker start "${containerId}"
|
|
|
|
# TODO: Might be better to move these dependencies to the images or create new
|
|
# ones on top of these.
|
|
if [[ "${image}" == "codercom/nbin-alpine" ]] ; then
|
|
docker exec "${containerId}" apk add libxkbfile-dev libsecret-dev
|
|
else
|
|
docker exec "${containerId}" yum install -y libxkbfile-devel libsecret-devel git
|
|
fi
|
|
|
|
function docker-exec() {
|
|
local command="${1}" ; shift
|
|
local args="'${vscodeVersion}' '${codeServerVersion}'"
|
|
docker exec "${containerId}" \
|
|
bash -c "cd /src && CI=true GITHUB_TOKEN=${token} MINIFY=${minify} yarn ${command} ${args}"
|
|
}
|
|
|
|
docker-exec build
|
|
if [[ -n "${package}" ]] ; then
|
|
docker-exec binary
|
|
docker-exec package
|
|
fi
|
|
|
|
docker kill "${containerId}"
|
|
}
|
|
|
|
function local-build() {
|
|
function local-exec() {
|
|
local command="${1}" ; shift
|
|
CI=true yarn "${command}" "${vscodeVersion}" "${codeServerVersion}"
|
|
}
|
|
|
|
local-exec build
|
|
if [[ -n "${package}" ]] ; then
|
|
local-exec binary
|
|
local-exec package
|
|
fi
|
|
}
|
|
|
|
# Build code-server in the CI.
|
|
function main() {
|
|
cd "$(dirname "${0}")/.."
|
|
|
|
local codeServerVersion="${VERSION:-}"
|
|
local vscodeVersion="${VSCODE_VERSION:-1.41.1}"
|
|
local ostype="${OSTYPE:-}"
|
|
local package="${PACKAGE:-}"
|
|
|
|
if [[ -z "${codeServerVersion}" ]] ; then
|
|
codeServerVersion="2.${TRAVIS_TAG:-${DRONE_TAG:-daily}}"
|
|
fi
|
|
|
|
local branch="${TRAVIS_BRANCH:-DRONE_BRANCH}"
|
|
if [[ $branch == "master" ]] ; then
|
|
export MINIFY="true"
|
|
export PACKAGE="true"
|
|
fi
|
|
|
|
if [[ "${ostype}" == "darwin"* ]]; then
|
|
local-build
|
|
else
|
|
docker-build
|
|
fi
|
|
}
|
|
|
|
main "$@"
|