forked from OpenCoq/opencog-central
-
Notifications
You must be signed in to change notification settings - Fork 4
Open
Labels
Description
🚨 Automated Build Failure Report
Failure Details:
- Timestamp: 2025-07-27T03:34:08Z
- Commit:
cfffbf00deb03fd44f6d1aa4400751f15b017eec - Branch/Ref: main
- Trigger: push
- Commit Message: Create oci.yml
Failed Jobs: atomspace-rocks, ure, cogserver
🔧 Remediation Steps
1. Immediate Investigation
- Check the workflow run for detailed error logs
- Review the commit changes that may have introduced the issue
- Check if the failure is related to dependency conflicts or missing packages
2. Common Build Issues & Fixes
Foundation Layer Issues (cogutil, atomspace)
# Check for missing dependencies
sudo apt-get update
sudo apt-get install -y build-essential cmake libboost-all-dev
# Rebuild with verbose output
cd build && make VERBOSE=1Integration Issues (ure, pln, miner)
# Verify AtomSpace installation
sudo ldconfig
pkg-config --cflags --libs atomspace
# Clean and rebuild dependencies
rm -rf build && mkdir build && cd build
cmake .. -DCMAKE_BUILD_TYPE=Release -DCMAKE_VERBOSE_MAKEFILE=ON3. Development Workflow
- Local Testing: Reproduce the build failure locally using the same environment
- Incremental Fix: Focus on the first failed job in the dependency chain
- Test Build: Run
cd [module] && mkdir build && cd build && cmake .. && makefor each failing module - Validation: Ensure all tests pass with
make test
📋 Status Tracking
- Issue investigated
- Root cause identified
- Fix implemented and tested locally
- PR created with fix
- Build verified to pass
Workflow Link: https://github.com/OpenCoq/opencog-org/actions/runs/16546720911
This issue was automatically created by the build failure detection system.
Reactions are currently unavailable