mirror of
https://codeberg.org/likwid/likwid.git
synced 2026-02-09 21:13:09 +00:00
ci: limit cargo parallelism
This commit is contained in:
parent
ed728979b6
commit
ac3c11be8d
1 changed files with 4 additions and 4 deletions
|
|
@ -6,13 +6,13 @@ steps:
|
|||
RUST_BACKTRACE: 1
|
||||
commands:
|
||||
- rustup component add rustfmt clippy
|
||||
- cargo install sqlx-cli --no-default-features --features postgres,tls-rustls
|
||||
- cargo install -j 2 sqlx-cli --no-default-features --features postgres,tls-rustls
|
||||
- cd backend
|
||||
- sqlx migrate run
|
||||
- cargo fmt --all -- --check
|
||||
- cargo clippy --all-targets --all-features -- -D warnings
|
||||
- cargo test --all
|
||||
- cargo build --release
|
||||
- cargo clippy -j 2 --all-targets --all-features -- -D warnings
|
||||
- cargo test -j 2 --all
|
||||
- cargo build -j 2 --release
|
||||
|
||||
frontend:
|
||||
image: node:20-bookworm
|
||||
|
|
|
|||
Loading…
Reference in a new issue