All checks were successful
Build and Test / fast-racing-neo (push) Successful in 16m31s
Build and Test / splatoon (push) Successful in 17m7s
Build and Test / puyopuyo (push) Successful in 17m7s
Build and Test / mario-tennis (push) Successful in 17m17s
Build and Test / minecraft-wiiu (push) Successful in 17m20s
Build and Test / wii-u-chat (push) Successful in 17m20s
Build and Test / splatoon-testfire (push) Successful in 17m23s
Build and Test / wii-sports-club (push) Successful in 17m25s
Build and Test / super-mario-maker (push) Successful in 21m26s
Build and Test / sonic-transformed (push) Successful in 28m35s
Build and Test / friends (push) Successful in 29m31s
16 lines
322 B
Shell
Executable file
16 lines
322 B
Shell
Executable file
#!/usr/bin/env bash
|
|
|
|
|
|
set -euo pipefail
|
|
|
|
if [ -z ${EDITION+x} ]; then
|
|
export EDITION=$1
|
|
fi
|
|
|
|
# comma seperated list of features for the specified version
|
|
source ./buildscripts/common.sh
|
|
echo CHECKING $EDITION
|
|
echo FEATURES:
|
|
echo $EDITION_FEATURES
|
|
|
|
RUSTFLAGS="--deny warnings" cargo check --features "$EDITION_FEATURES"
|