Some checks failed
CLI Tests / test-cli (push) Has been cancelled
Security Scanning / security-scan (push) Has been cancelled
Integration Tests / test-service-integration (push) Has been cancelled
Python Tests / test-python (push) Has been cancelled
Documentation Validation / validate-docs (push) Has been cancelled
API Endpoint Tests / test-api-endpoints (push) Has been cancelled
- Updated marketplace commands: `marketplace --action` → `market` subcommands - Updated wallet commands: direct flags → `wallet` subcommands - Updated AI commands: `ai-submit`, `ai-status` → `ai submit`, `ai status` - Updated blockchain commands: `chain` → `blockchain info` - Standardized command structure across all workflow files - Affected files: MULTI_NODE_MASTER_INDEX.md, TEST_MASTER_INDEX.md, multi-node-blockchain-marketplace
19 lines
582 B
Bash
Executable File
19 lines
582 B
Bash
Executable File
#!/bin/bash
|
|
# Test Updated Workflow Scripts
|
|
echo "=== Testing Updated Workflow Scripts ==="
|
|
|
|
echo "1. Testing wallet creation script..."
|
|
/opt/aitbc/scripts/workflow/04_create_wallet.sh
|
|
|
|
echo ""
|
|
echo "2. Testing final verification script..."
|
|
export WALLET_ADDR=$(/opt/aitbc/aitbc-cli wallet balance aitbc-user 2>/dev/null | grep "Address:" | awk '{print $2}' || echo "")
|
|
/opt/aitbc/scripts/workflow/06_final_verification.sh
|
|
|
|
echo ""
|
|
echo "3. Testing transaction manager script..."
|
|
/opt/aitbc/scripts/workflow/09_transaction_manager.sh
|
|
|
|
echo ""
|
|
echo "✅ All script tests completed!"
|