Some checks failed
Deploy to Phoenix / deploy (push) Has been cancelled
- ADD_CHAIN138_TO_LEDGER_LIVE: Ledger form done; public code review repo bis-innovations/LedgerLive; init/push commands - CONTRACT_DEPLOYMENT_RUNBOOK: Chain 138 gas price 1 gwei, 36-addr check, TransactionMirror workaround - CONTRACT_*: AddressMapper, MirrorManager deployed 2026-02-12; 36-address on-chain check - NEXT_STEPS_FOR_YOU: Ledger done; steps completable now (no LAN); run-completable-tasks-from-anywhere - MASTER_INDEX, OPERATOR_OPTIONAL, SMART_CONTRACTS_INVENTORY_SIMPLE: updates - LEDGER_BLOCKCHAIN_INTEGRATION_COMPLETE: bis-innovations/LedgerLive reference Co-authored-by: Cursor <cursoragent@cursor.com>
42 lines
888 B
Bash
Executable File
42 lines
888 B
Bash
Executable File
#!/bin/bash
|
|
set -euo pipefail
|
|
|
|
# Verify deployment files are present before deployment
|
|
|
|
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
PROJECT_ROOT="$(cd "$SCRIPT_DIR/.." && pwd)"
|
|
DEPLOY_SOURCE="$PROJECT_ROOT/smom-dbis-138-proxmox"
|
|
|
|
echo "Checking deployment files..."
|
|
echo ""
|
|
|
|
REQUIRED_FILES=(
|
|
"scripts/deployment/deploy-all.sh"
|
|
"scripts/deployment/deploy-besu-nodes.sh"
|
|
"scripts/deployment/deploy-services.sh"
|
|
"install/besu-validator-install.sh"
|
|
"install/besu-sentry-install.sh"
|
|
"config/proxmox.conf"
|
|
)
|
|
|
|
MISSING=0
|
|
|
|
for file in "${REQUIRED_FILES[@]}"; do
|
|
if [ -f "$DEPLOY_SOURCE/$file" ]; then
|
|
echo "✅ $file"
|
|
else
|
|
echo "❌ $file (missing)"
|
|
((MISSING++))
|
|
fi
|
|
done
|
|
|
|
echo ""
|
|
if [ $MISSING -eq 0 ]; then
|
|
echo "✅ All required files present"
|
|
exit 0
|
|
else
|
|
echo "❌ $MISSING file(s) missing"
|
|
exit 1
|
|
fi
|
|
|