File: check_release.sh

package info (click to toggle)
rust-tz-rs 0.6.14-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 376 kB
  • sloc: sh: 12; makefile: 4
file content (17 lines) | stat: -rwxr-xr-x 712 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/sh

cargo +1.45 test --no-default-features
cargo +1.45 test --no-default-features --features=alloc
cargo +1.45 test --no-default-features --features=std

cargo +1.55 test --no-default-features --features=const
cargo +1.55 test --no-default-features --features=const,alloc
cargo +1.55 test --no-default-features --features=const,std

cargo +stable test --no-default-features --features=const
cargo +stable test --no-default-features --features=const,alloc
cargo +stable test --no-default-features --features=const,std

cargo +nightly test --no-default-features --features=const
cargo +nightly test --no-default-features --features=const,alloc
cargo +nightly test --no-default-features --features=const,std