mirror of
https://github.com/sourcegraph/sourcegraph.git
synced 2026-02-06 18:11:48 +00:00
I noticed this comment that we remap the binary name in bazel for server. Well we can just update server and make it consistent with everything else. Test Plan: CI
27 lines
331 B
Bash
Executable File
27 lines
331 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
export SANITY_CHECK=true
|
|
|
|
services=(
|
|
embeddings
|
|
frontend
|
|
gitserver
|
|
migrator
|
|
precise-code-intel-worker
|
|
repo-updater
|
|
scip-ctags
|
|
searcher
|
|
symbols
|
|
syntect_server
|
|
worker
|
|
)
|
|
|
|
for cmd in "${services[@]}"; do
|
|
if "$cmd"; then
|
|
echo "OK: $cmd"
|
|
else
|
|
echo "FAIL: $cmd"
|
|
exit 1
|
|
fi
|
|
done
|