ci: Remove stal DO_ALLOC_TESTS variable

We never enable the `DO_ALLOC_TESTS` variable, and hence never test the
"alloc" feature in `hashes`.

Remove the `DO_ALLOC_TESTS` variable and add "alloc" to the `FEATURES`
array.
This commit is contained in:
Tobin C. Harding 2023-05-25 18:16:26 +10:00
parent b5aa482532
commit aa7b3a7d0c
No known key found for this signature in database
GPG Key ID: 40BF9E4C269D6607
1 changed files with 1 additions and 5 deletions

View File

@ -2,11 +2,7 @@
set -ex
FEATURES="serde serde-std std core2"
if [ "$DO_ALLOC_TESTS" = true ]; then
FEATURES="$FEATURES alloc"
fi
FEATURES="serde serde-std std core2 alloc"
cargo --version
rustc --version