sourcegraph/cmd/server/image_tests/test_services.sh
Keegan Carruthers-Smith 6556443304
server: use syntect_server binary (#60557)
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
2024-02-15 17:50:18 +02:00

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