Build local crates without reinstalling external dependencies that were already installed
Some checks failed
Podman Rootless Demo / test-backend (push) Failing after 39s

This commit is contained in:
continuist 2025-09-19 19:13:53 -04:00
parent 73e4abb75d
commit 024e7e6f5d

View file

@ -112,7 +112,8 @@ jobs:
mkdir -p /workspace mkdir -p /workspace
tar -x -C /workspace tar -x -C /workspace
cd /workspace/backend cd /workspace/backend
cargo chef cook --release --recipe-path /app/recipe.json # Build local crates using pre-built external dependencies
cargo build --release --frozen
cargo test --lib -- --test-threads=1 cargo test --lib -- --test-threads=1
' '