rust-nex/test-edition.sh
Maple Nebel 0ec7328396
All checks were successful
Build and Test / mario-tennis (push) Successful in 2m2s
Build and Test / minecraft-wiiu (push) Successful in 2m29s
Build and Test / fast-racing-neo (push) Successful in 2m48s
Build and Test / wii-u-chat (push) Successful in 3m17s
Build and Test / friends (push) Successful in 3m44s
Build and Test / super-mario-maker (push) Successful in 4m57s
Build and Test / puyopuyo (push) Successful in 5m12s
Build and Test / splatoon-testfire (push) Successful in 5m53s
Build and Test / wii-sports-club (push) Successful in 6m14s
Build and Test / sonic-transformed (push) Successful in 6m40s
Build and Test / splatoon (push) Successful in 7m16s
more ip resolution services
2026-05-29 09:00:10 +02:00

20 lines
568 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
echo ENV SETTINGS:
env
if [[ ! -v RNEX_STATIC ]]; then
cargo test --features "$EDITION_FEATURES" --no-run --verbose
else
OPENSSL_LIB_DIR=/usr/lib OPENSSL_INCLUDE_DIR=/usr/include/openssl OPENSSL_STATIC=1 RUSTFLAGS="-C relocation-model=static -C linker=ld.lld" cargo test --features "$EDITION_FEATURES" --target x86_64-unknown-linux-musl
fi