revert edits to cargo clean command in CI/CD

This commit is contained in:
GyulyVGC
2025-08-03 15:47:13 +02:00
parent 0bdca2d98a
commit 49776645bc

View File

@@ -81,15 +81,14 @@ jobs:
- name: Test (release mode)
if: matrix.os == 'macos' || matrix.os == 'ubuntu' || matrix.os == 'windows' && matrix.arch == 'amd64'
run: cargo test --release --verbose -- --nocapture &&
run: |
cargo test --release --verbose -- --nocapture &&
cargo clean
- name: Install Cross
if: matrix.os == 'ubuntu'
run: cargo install cross --git https://github.com/cross-rs/cross
- name: Clean
run: cargo clean
- name: Build binary (Linux)
if: matrix.os == 'ubuntu'
run: cross build --release --target ${{ matrix.target }}