- Add comprehensive documentation in botbook/ with 12 chapters - Add botapp/ Tauri desktop application - Add botdevice/ IoT device support - Add botlib/ shared library crate - Add botmodels/ Python ML models service - Add botplugin/ browser extension - Add botserver/ reorganized server code - Add bottemplates/ bot templates - Add bottest/ integration tests - Add botui/ web UI server - Add CI/CD workflows in .forgejo/workflows/ - Add AGENTS.md and PROD.md documentation - Add dependency management scripts (DEPENDENCIES.sh/ps1) - Remove legacy src/ structure and migrations - Clean up temporary and backup files
29 lines
911 B
YAML
29 lines
911 B
YAML
name: BotServer CI
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
paths:
|
|
- 'botserver/**'
|
|
- 'botlib/**'
|
|
- 'Cargo.lock'
|
|
- '.forgejo/workflows/botserver.yaml'
|
|
jobs:
|
|
build:
|
|
runs-on: gbo
|
|
steps:
|
|
- name: Build
|
|
run: |
|
|
cd /opt/gbo/work/botserver
|
|
git reset --hard HEAD && git clean -fd
|
|
git pull
|
|
git submodule update --init --recursive botlib botserver
|
|
cargo build -p botserver
|
|
- name: Deploy
|
|
run: |
|
|
sudo incus exec system -- systemctl stop botserver || true
|
|
sudo incus exec system -- pkill -x botserver || true
|
|
sleep 1
|
|
sudo incus file push /opt/gbo/work/botserver/target/debug/botserver system:/opt/gbo/bin/botserver --mode=0755
|
|
sudo incus exec system -- systemctl start botserver
|
|
sleep 2
|
|
sudo incus exec system -- pgrep -x botserver && echo "✅ BotServer Deployed" || echo "❌ Failed"
|