Revert "CI(check-codestyle-rust): try to use -j$(nproc)"

This reverts commit c41f9870a5.
This commit is contained in:
Alexander Bayandin
2024-09-05 11:30:21 +01:00
parent c41f9870a5
commit 79fa640058

View File

@@ -170,12 +170,12 @@ jobs:
echo "CLIPPY_COMMON_ARGS=${CLIPPY_COMMON_ARGS}" >> $GITHUB_ENV
- name: Run cargo clippy (debug)
run: mold -run cargo hack --feature-powerset clippy -j$(nproc) $CLIPPY_COMMON_ARGS
run: mold -run cargo hack --feature-powerset clippy $CLIPPY_COMMON_ARGS
# instead of running the full release build, running debug build again,
# but with disabled `debug-assertions` to excersice release code paths
- name: Run cargo clippy (debug, with debug-assertions=false)
run: mold -run cargo hack --feature-powerset clippy -j$(nproc) $CLIPPY_COMMON_ARGS -C debug-assertions=off
run: mold -run cargo hack --feature-powerset clippy $CLIPPY_COMMON_ARGS -C debug-assertions=off
- name: Check documentation generation
run: cargo doc --workspace --no-deps --document-private-items