Some checks failed
Build and Test / build-editions (splatoon) (push) Failing after 7s
Build and Test / build-editions (minecraft-wiiu) (push) Failing after 8s
Build and Test / build-editions (sonic-transformed) (push) Failing after 8s
Build and Test / build-editions (DATABASE_SMM, puyopuyo) (push) Failing after 9s
Build and Test / build-editions (DATABASE_SMM, super-mario-maker) (push) Failing after 9s
Build and Test / build-editions (splatoon-testfire) (push) Failing after 9s
Build and Test / build-editions (terraria) (push) Failing after 10s
Build and Test / build-editions (mario-tennis) (push) Failing after 10s
Build and Test / build-editions (fast-racing-neo) (push) Failing after 11s
Build and Test / build-editions (wii-u-chat) (push) Failing after 11s
Build and Test / build-editions (DATABASE_SMM, wii-sports-club) (push) Failing after 12s
Build and Test / build-editions (DATABASE_FRIENDS, friends) (push) Failing after 12s
13 lines
No EOL
304 B
Shell
Executable file
13 lines
No EOL
304 B
Shell
Executable file
#!/usr/bin/env bash
|
|
|
|
set -euo pipefail
|
|
|
|
if [ -z ${EDITION+x} ]; then
|
|
EDITION=$1
|
|
fi
|
|
|
|
source ./buildscripts/common.sh
|
|
echo "Building $EDITION"
|
|
echo "FEATURES: $EDITION_FEATURES"
|
|
|
|
OPENSSL_VENDORED=1 cargo build --release --features "$EDITION_FEATURES,openssl/vendored" --target x86_64-unknown-linux-musl |