Nomad changes
All checks were successful
Deploy fil (kreuzberg) / deploy (push) Successful in 49s

This commit is contained in:
Henrik Jess Nielsen
2026-06-01 23:40:55 +02:00
parent 72b1a0a6ed
commit b4c07d3693
5723 changed files with 1130655 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
#!/usr/bin/env bash
set -euo pipefail
REPO_ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")/../.." && pwd)"
source "${REPO_ROOT}/scripts/lib/common.sh"
validate_repo_root "$REPO_ROOT" || exit 1
BINARY_PATH="${BINARY_PATH:-$REPO_ROOT/target/release/benchmark-harness}"
if [ ! -f "$BINARY_PATH" ]; then
echo "::error::Binary not found at $BINARY_PATH" >&2
exit 1
fi
chmod +x "$BINARY_PATH"
echo "✓ Restored executable permissions on: $BINARY_PATH"
# Also restore kreuzberg-cli if present (used by all kreuzberg adapter pipelines)
CLI_BINARY="$REPO_ROOT/target/release/kreuzberg"
if [ -f "$CLI_BINARY" ]; then
chmod +x "$CLI_BINARY"
echo "✓ Restored executable permissions on: $CLI_BINARY"
fi