Skip to content

Update make.yml

Update make.yml #5

Workflow file for this run

name: Build & Test (C/ASM NeuroHTTP)
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: 🧭 Checkout repository
uses: actions/checkout@v4
- name: ⚙️ Install build dependencies
run: |
sudo apt-get update -y
sudo apt-get install -y build-essential clang make nasm
- name: 🏗️ Build project
run: |
echo "🔧 Starting build..."
make all
echo "✅ Build completed successfully."
- name: 🧪 Verify binary output
run: |
if [ -f "./bin/aionic" ]; then
echo "✅ Binary built successfully!"
./bin/aionic --version || echo "ℹ️ No version flag implemented yet."
else
echo "❌ Binary not found!"
exit 1
fi
- name: 🧹 Cleanup & Finalize
run: |
echo "🎉 All steps completed successfully."
ls -lh ./bin