fix more warnings and add script to check all editions
This commit is contained in:
parent
a88f1898a5
commit
7f27ad0a3c
14 changed files with 38 additions and 91 deletions
12
check-edition.sh
Executable file
12
check-edition.sh
Executable file
|
|
@ -0,0 +1,12 @@
|
|||
#!/usr/bin/env bash
|
||||
if [ -z ${EDITION+x} ]; then
|
||||
EDITION=$1
|
||||
fi
|
||||
|
||||
# comma seperated list of features for the specified version
|
||||
source ./buildscripts/common.sh
|
||||
echo CHECKING $EDITION
|
||||
echo FEATURES:
|
||||
echo $EDITION_FEATURES
|
||||
|
||||
cargo check --features "$EDITION_FEATURES"
|
||||
Loading…
Add table
Add a link
Reference in a new issue