Some checks failed
Build Pipeline / Build Binaries (push) Failing after 3m39s
Build Pipeline / Build Docker Images (push) Has been skipped
Build Pipeline / Sign HIPAA Config (push) Has been skipped
Build Pipeline / Generate SLSA Provenance (push) Has been skipped
Checkout test / test (push) Successful in 6s
CI Pipeline / Test (ubuntu-latest on self-hosted) (push) Failing after 1s
CI Pipeline / Dev Compose Smoke Test (push) Has been skipped
CI Pipeline / Security Scan (push) Has been skipped
CI Pipeline / Test Scripts (push) Has been skipped
CI Pipeline / Test Native Libraries (push) Has been skipped
CI Pipeline / Native Library Build Matrix (push) Has been skipped
Contract Tests / Spec Drift Detection (push) Failing after 11s
Contract Tests / API Contract Tests (push) Has been skipped
Deploy API Docs / Build API Documentation (push) Failing after 5s
Deploy API Docs / Deploy to GitHub Pages (push) Has been skipped
Documentation / build-and-publish (push) Failing after 40s
Test Matrix / test-native-vs-pure (cgo) (push) Failing after 14s
Test Matrix / test-native-vs-pure (native) (push) Failing after 35s
Test Matrix / test-native-vs-pure (pure) (push) Failing after 18s
CI Pipeline / Trigger Build Workflow (push) Failing after 1s
Build CLI with Embedded SQLite / build (arm64, aarch64-linux) (push) Has been cancelled
Build CLI with Embedded SQLite / build (x86_64, x86_64-linux) (push) Has been cancelled
Build CLI with Embedded SQLite / build-macos (arm64) (push) Has been cancelled
Build CLI with Embedded SQLite / build-macos (x86_64) (push) Has been cancelled
Security Scan / Security Analysis (push) Has been cancelled
Security Scan / Native Library Security (push) Has been cancelled
Verification & Maintenance / V.1 - Schema Drift Detection (push) Has been cancelled
Verification & Maintenance / V.4 - Custom Go Vet Analyzers (push) Has been cancelled
Verification & Maintenance / V.7 - Audit Chain Integrity (push) Has been cancelled
Verification & Maintenance / V.6 - Extended Security Scanning (push) Has been cancelled
Verification & Maintenance / V.10 - OpenSSF Scorecard (push) Has been cancelled
Verification & Maintenance / Verification Summary (push) Has been cancelled
- Introduce audit, plugin, and scheduler API handlers - Add spec_embed.go for OpenAPI spec embedding - Create modular build scripts (cli, go, native, cross-platform) - Add deployment cleanup and health-check utilities - New ADRs: hot reload, audit store, SSE updates, RBAC, caching, offline mode, KMS regions, tenant offboarding - Add KMS configuration schema and worker variants - Include KMS benchmark tests
30 lines
988 B
Bash
Executable file
30 lines
988 B
Bash
Executable file
#!/bin/bash
|
|
# Orchestrates full build for Linux x86_64 only
|
|
|
|
set -euo pipefail
|
|
|
|
echo "=== Building for Linux x86_64 ==="
|
|
|
|
# Build native C++ libraries
|
|
scripts/build/build-native.sh
|
|
|
|
# Build Go backends for all build types
|
|
for build_type in pure cgo native; do
|
|
echo "=== Building ${build_type} binaries ==="
|
|
for binary in api-server worker data_manager user_manager tui; do
|
|
source_path="cmd/${binary}"
|
|
[ "$binary" = "worker" ] && source_path="cmd/worker/worker_server.go"
|
|
[ "$binary" = "api-server" ] && source_path="cmd/api-server/main.go"
|
|
[ "$binary" = "data_manager" ] && source_path="cmd/data_manager/main.go"
|
|
[ "$binary" = "user_manager" ] && source_path="cmd/user_manager/main.go"
|
|
[ "$binary" = "tui" ] && source_path="cmd/tui/main.go"
|
|
|
|
scripts/build/build-go.sh "$build_type" linux amd64 "$source_path"
|
|
done
|
|
done
|
|
|
|
# Build CLI binaries
|
|
scripts/build/build-cli.sh
|
|
|
|
echo "=== Build complete ==="
|
|
ls -lh dist/
|