fix(ci): split build commands to fix feature mismatch
All checks were successful
GBCI / build (push) Successful in 13m48s

This commit is contained in:
Rodrigo Rodriguez (Pragmatismo) 2026-01-26 12:04:03 -03:00
parent ff4e6c4fe8
commit 7e69ab26bb

View file

@ -80,7 +80,8 @@ jobs:
- name: Build debug
working-directory: workspace
run: |
cargo build -p botserver -p botui --features botui/embed-ui -j 8 2>&1 | tee /tmp/build.log
cargo build -p botserver -j 8 2>&1 | tee /tmp/build.log
cargo build -p botui --features embed-ui -j 8 2>&1 | tee -a /tmp/build.log
ls -lh target/debug/botserver
ls -lh target/debug/botui
sccache --show-stats || true