ci: dont rust test in build

This commit is contained in:
nyyu 2025-05-31 19:59:33 +02:00
parent 68708f1991
commit e8bf813882
2 changed files with 0 additions and 2 deletions

View file

@ -5,7 +5,6 @@ steps:
commands: commands:
- apk add --no-cache musl-dev - apk add --no-cache musl-dev
- rustup component add clippy - rustup component add clippy
- cargo test
- cargo clippy - cargo clippy
- cargo build --release - cargo build --release
- strip target/release/cggitem_sets - strip target/release/cggitem_sets

View file

@ -8,7 +8,6 @@ steps:
- echo -e '[target.x86_64-pc-windows-gnu]\nlinker = "x86_64-w64-mingw32-gcc"\nar = "x86_64-w64-mingw32-gcc-ar"' > ~/.cargo/config - echo -e '[target.x86_64-pc-windows-gnu]\nlinker = "x86_64-w64-mingw32-gcc"\nar = "x86_64-w64-mingw32-gcc-ar"' > ~/.cargo/config
- rustup target add x86_64-pc-windows-gnu - rustup target add x86_64-pc-windows-gnu
- rustup component add clippy - rustup component add clippy
- cargo test
- cargo clippy --target x86_64-pc-windows-gnu - cargo clippy --target x86_64-pc-windows-gnu
- cargo build --release --target x86_64-pc-windows-gnu - cargo build --release --target x86_64-pc-windows-gnu
- strip target/x86_64-pc-windows-gnu/release/cggitem_sets.exe - strip target/x86_64-pc-windows-gnu/release/cggitem_sets.exe