rust-nex/test-edition.sh
2026-08-08 06:13:32 +02:00

14 lines
333 B
Shell
Executable file

#!/usr/bin/env bash
set -euo pipefail
if [ -z ${EDITION+x} ]; then
EDITION=$1
fi
# comma seperated list of features for the specified version
source ./buildscripts/common.sh
echo FEATURES:
echo $EDITION_FEATURES
OPENSSL_VENDORED=1 cargo test --features "$EDITION_FEATURES,openssl/vendored" --target x86_64-unknown-linux-musl