|  | 
| 1 |  | -# 🔒 Temporarily disabled workflow | 
| 2 |  | -# This GitHub Actions workflow is fully commented out to prevent execution. | 
| 3 |  | -# To re-enable it, simply remove the leading "#" from all lines below. | 
| 4 | 1 | 
 | 
| 5 |  | -# name: Build & Test (C/ASM NeuroHTTP) | 
| 6 |  | -# run-name: NeuroHTTP CI | 
| 7 |  | - | 
| 8 |  | -# on: | 
| 9 |  | -#   push: | 
| 10 |  | -#     branches: [ main ] | 
| 11 |  | -#   pull_request: | 
| 12 |  | -#     branches: [ main ] | 
| 13 |  | - | 
| 14 |  | -# jobs: | 
| 15 |  | -#   build: | 
| 16 |  | -#     runs-on: ubuntu-latest | 
| 17 |  | -#     timeout-minutes: 15 | 
| 18 |  | - | 
| 19 |  | -#     steps: | 
| 20 |  | -#       - name: 🧭 Checkout repository | 
| 21 |  | -#         uses: actions/checkout@v4 | 
| 22 |  | - | 
| 23 |  | -#       - name: ⚙️ Install build dependencies | 
| 24 |  | -#         run: | | 
| 25 |  | -#           sudo apt-get update -y | 
| 26 |  | -#           sudo apt-get install -y build-essential clang make nasm | 
| 27 |  | - | 
| 28 |  | -#       - name: 🏗️ Build project | 
| 29 |  | -#         run: | | 
| 30 |  | -#           echo "🔧 Starting build..." | 
| 31 |  | -#           make all | 
| 32 |  | -#           echo "✅ Build completed successfully." | 
| 33 |  | - | 
| 34 |  | -#       - name: 🧪 Verify binary output | 
| 35 |  | -#         run: | | 
| 36 |  | -#           if [ -f "./bin/aionic" ]; then | 
| 37 |  | -#             echo "✅ Binary built successfully!" | 
| 38 |  | -#             ./bin/aionic --version 2>/dev/null || echo "ℹ️ Version info unavailable." | 
| 39 |  | -#           else | 
| 40 |  | -#             echo "❌ Binary not found!" | 
| 41 |  | -#             exit 1 | 
| 42 |  | -#           fi | 
| 43 |  | - | 
| 44 |  | -#       - name: 🧹 Clean temporary files (optional) | 
| 45 |  | -#         run: | | 
| 46 |  | -#           echo "🧽 Cleaning up temporary build files..." | 
| 47 |  | -#           rm -rf logs/tmp 2>/dev/null || true | 
| 48 |  | - | 
| 49 |  | -#       - name: ✅ Finalize and mark success | 
| 50 |  | -#         run: | | 
| 51 |  | -#           echo "🎯 All steps executed successfully!" | 
| 52 |  | -#           exit 0 | 
| 53 |  | - | 
| 54 |  | -#     # This ensures GitHub marks as green even if warnings exist | 
| 55 |  | -#     continue-on-error: false | 
0 commit comments