12 lines
277 B
Bash
12 lines
277 B
Bash
|
|
#!/usr/bin/env bash
|
||
|
|
set -euo pipefail
|
||
|
|
|
||
|
|
ROOT_DIR="$(cd "$(dirname "$0")/.." && pwd)"
|
||
|
|
BUILD_DIR="$ROOT_DIR/build"
|
||
|
|
mkdir -p "$BUILD_DIR"
|
||
|
|
|
||
|
|
CGO_ENABLED=0 GOOS=linux GOARCH=arm64 \
|
||
|
|
go build -o "$BUILD_DIR/edge-agent" "$ROOT_DIR/cmd/edge-agent"
|
||
|
|
|
||
|
|
echo "built: $BUILD_DIR/edge-agent"
|