mirror of
https://github.com/sourcegraph/sourcegraph.git
synced 2026-02-06 12:51:55 +00:00
68 lines
1.4 KiB
Bash
Executable File
68 lines
1.4 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
unset CDPATH
|
|
cd "$(dirname "${BASH_SOURCE[0]}")/.." # cd to repo root dir
|
|
|
|
parallel_run() {
|
|
./dev/ci/parallel_run.sh "$@"
|
|
}
|
|
|
|
export ARGS=$*
|
|
|
|
# Keep the list of client workspaces in alphabetical order!
|
|
DIRS=(
|
|
client/branded
|
|
client/browser
|
|
client/build-config
|
|
client/client-api
|
|
client/codeintellify
|
|
client/common
|
|
client/extension-api
|
|
client/extension-api-types
|
|
client/http-client
|
|
client/jetbrains
|
|
client/observability-client
|
|
client/observability-server
|
|
client/shared
|
|
client/storybook
|
|
client/template-parser
|
|
client/testing
|
|
client/vscode
|
|
client/wildcard
|
|
)
|
|
# Keep the list of client workspaces in alphabetical order!
|
|
|
|
run_command() {
|
|
local MAYBE_TIME_PREFIX=""
|
|
if [[ "${CI_DEBUG_PROFILE:-"false"}" == "true" ]]; then
|
|
MAYBE_TIME_PREFIX="env time -v"
|
|
fi
|
|
|
|
dir=$1
|
|
echo "--- $dir: $ARGS"
|
|
(
|
|
set -x
|
|
cd "$dir" && eval "${MAYBE_TIME_PREFIX} ${ARGS}"
|
|
)
|
|
ecode="$?"
|
|
|
|
# shellcheck disable=SC2181
|
|
# We are checking the sub-shell, following SC2181 would make this unreadable
|
|
if [[ $ecode -ne 0 ]]; then
|
|
echo "^^^ +++"
|
|
exit $ecode
|
|
fi
|
|
}
|
|
export -f run_command
|
|
|
|
if [[ "${CI:-"false"}" == "true" ]]; then
|
|
echo "--- 🚨 Buildkite's timing information is misleading! Only consider the job timing that's printed after 'done'"
|
|
|
|
parallel_run run_command {} ::: "${DIRS[@]}"
|
|
else
|
|
for dir in "${DIRS[@]}"; do
|
|
run_command "$dir"
|
|
done
|
|
fi
|