All checks were successful
Build and Test / build-editions (fast-racing-neo) (push) Successful in 7m10s
Build and Test / build-editions (mario-tennis) (push) Successful in 7m13s
Build and Test / build-editions (wii-u-chat) (push) Successful in 7m32s
Build and Test / build-editions (splatoon) (push) Successful in 7m39s
Build and Test / build-editions (sonic-transformed) (push) Successful in 7m41s
Build and Test / build-editions (terraria) (push) Successful in 7m42s
Build and Test / build-editions (splatoon-testfire) (push) Successful in 7m44s
Build and Test / build-editions (minecraft-wiiu) (push) Successful in 7m45s
Build and Test / build-editions (DATABASE_SMM, puyopuyo) (push) Successful in 7m47s
Build and Test / build-editions (DATABASE_SMM, super-mario-maker) (push) Successful in 7m46s
Build and Test / build-editions (DATABASE_FRIENDS, friends) (push) Successful in 7m47s
Build and Test / build-editions (DATABASE_SMM, wii-sports-club) (push) Successful in 7m46s
it was a hard 3 minutes of thinking but i realized we run containers anyways so??? it was kinda useless
14 lines
273 B
Shell
Executable file
14 lines
273 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
|
|
|
|
cargo build --release --features "$EDITION_FEATURES"
|