forked from spacebar/rust-nex
listen guys, its 6am, ive been working at this all night, have some mercy, ok?
14 lines
316 B
Shell
Executable file
14 lines
316 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" --target x86_64-unknown-linux-musl
|