mirror of
https://github.com/OutlineFoundation/outline-server.git
synced 2026-05-13 13:58:57 +00:00
build: use Task (#1535)
This commit is contained in:
parent
be0d3b3838
commit
6556d7e595
41 changed files with 653 additions and 920 deletions
|
|
@ -1,67 +0,0 @@
|
|||
#!/bin/bash
|
||||
#
|
||||
# Copyright 2018 The Outline Authors
|
||||
#
|
||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||
# you may not use this file except in compliance with the License.
|
||||
# You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
|
||||
set -eu
|
||||
|
||||
# TODO: Because Node.js on Cygwin doesn't handle absolute paths very
|
||||
# well, it would be worth pushd-ing to ROOT_DIR before invoking
|
||||
# them and making BUILD_DIR a relative path, viz. just "build".
|
||||
|
||||
readonly ROOT_DIR=${ROOT_DIR:-$(pwd)/$(git rev-parse --show-cdup)}
|
||||
readonly BUILD_DIR=${BUILD_DIR:-${ROOT_DIR}/build}
|
||||
|
||||
export ROOT_DIR
|
||||
export BUILD_DIR
|
||||
|
||||
export run_action_indent=''
|
||||
|
||||
function run_action() {
|
||||
local -r STYLE_BOLD_WHITE='\033[1;37m'
|
||||
local -r STYLE_BOLD_GREEN='\033[1;32m'
|
||||
local -r STYLE_BOLD_RED='\033[1;31m'
|
||||
local -r STYLE_RESET='\033[0m'
|
||||
|
||||
local -r action="${1:-""}"
|
||||
local -r old_indent="${run_action_indent}"
|
||||
|
||||
run_action_indent="=> ${run_action_indent}"
|
||||
|
||||
if [[ -z "${action}" ]]; then
|
||||
echo -e "Please provide an action to run. ${STYLE_BOLD_WHITE}List of valid actions:${STYLE_RESET}\n"
|
||||
find . -name '*.action.sh' | sed -E 's:\./src/(.*)\.action\.sh:\1:'
|
||||
exit 0
|
||||
fi
|
||||
|
||||
echo -e "${old_indent}${STYLE_BOLD_WHITE}[Running ${action}]${STYLE_RESET}"
|
||||
shift
|
||||
|
||||
"${ROOT_DIR}src/${action}.action.sh" "$@"
|
||||
|
||||
local -ir status="$?"
|
||||
if (( status == 0 )); then
|
||||
echo -e "${old_indent}${STYLE_BOLD_GREEN}[${action}: Finished]${STYLE_RESET}"
|
||||
else
|
||||
echo -e "${old_indent}${STYLE_BOLD_RED}[${action}: Failed]${STYLE_RESET}"
|
||||
fi
|
||||
|
||||
run_action_indent="${old_indent}"
|
||||
|
||||
return "${status}"
|
||||
}
|
||||
|
||||
export -f run_action
|
||||
|
||||
run_action "$@"
|
||||
Loading…
Add table
Add a link
Reference in a new issue