CI: v23 - Simple deploy: pkill, cp, start
Some checks failed
BotServer CI / build (push) Has been cancelled
Some checks failed
BotServer CI / build (push) Has been cancelled
This commit is contained in:
parent
1c8cc6626d
commit
46e5d16892
1 changed files with 7 additions and 5 deletions
|
|
@ -1,4 +1,4 @@
|
||||||
# v22 - Fast deploy
|
# v23 - Simple deploy: stop, copy, start
|
||||||
name: BotServer CI
|
name: BotServer CI
|
||||||
|
|
||||||
on:
|
on:
|
||||||
|
|
@ -21,15 +21,17 @@ jobs:
|
||||||
git rebase --abort 2>/dev/null || true
|
git rebase --abort 2>/dev/null || true
|
||||||
git reset --hard HEAD && git clean -fd
|
git reset --hard HEAD && git clean -fd
|
||||||
git pull && git submodule update --init --recursive botlib botserver
|
git pull && git submodule update --init --recursive botlib botserver
|
||||||
rm -rf .github
|
|
||||||
|
|
||||||
- name: Build
|
- name: Build
|
||||||
run: |
|
run: |
|
||||||
cd /opt/gbo/work/botserver
|
cd /opt/gbo/work/botserver
|
||||||
cargo build -p botserver
|
cargo build -p botserver
|
||||||
ls -lh target/debug/botserver
|
|
||||||
|
|
||||||
- name: Deploy
|
- name: Deploy
|
||||||
run: |
|
run: |
|
||||||
B="/opt/gbo/work/botserver/target/debug/botserver"
|
sudo pkill -f botserver || true
|
||||||
[ -f "$B" ] && sudo incus file push "$B" system:/opt/gbo/bin/botserver --mode=0755 && sudo incus exec system -- systemctl restart botserver && echo "✅ Deployed" || echo "❌ Failed"
|
sleep 1
|
||||||
|
cp /opt/gbo/work/botserver/target/debug/botserver /opt/gbo/bin/botserver
|
||||||
|
cd /opt/gbo/bin && RUST_LOG=info nohup ./botserver --noconsole > /opt/gbo/logs/stdout.log 2>&1 &
|
||||||
|
sleep 2
|
||||||
|
pgrep -f botserver && echo "✅ Running" || echo "❌ Failed"
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue