rust-nex/check-edition.sh
Maple be6aabb4eb
All checks were successful
Build and Test / splatoon (push) Successful in 4m0s
Build and Test / friends (push) Successful in 4m13s
add pipefails propperly
2026-04-26 14:39:05 +02:00

15 lines
284 B
Bash
Executable file

#!/usr/bin/env bash
set -e pipefail
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"