15 lines
291 B
Bash
Executable File
15 lines
291 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
ROOT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
|
|
OUT_DIR="$ROOT_DIR/backend/bin"
|
|
|
|
mkdir -p "$OUT_DIR"
|
|
|
|
cd "$ROOT_DIR/backend"
|
|
go test ./...
|
|
go build -o "$OUT_DIR/senlin-agent-api" ./cmd/api
|
|
|
|
echo "Backend binary: $OUT_DIR/senlin-agent-api"
|
|
|