22 lines
592 B
Bash
Executable File
22 lines
592 B
Bash
Executable File
#! /bin/bash
|
|
|
|
set -e
|
|
|
|
echo "Building for x64 Linux"
|
|
docker build -t ldjam_48_x86_64_unknown_linux_gnu_build_env ./bundle/linux
|
|
cross build --target x86_64-unknown-linux-gnu --release
|
|
|
|
echo "Creating bundle output"
|
|
rm -rf ./bundle/linux/release
|
|
rm -rf ./bundle/linux/release-x86_64-unknown-linux-gnu.zip
|
|
mkdir -p ./bundle/linux/release
|
|
|
|
echo "Copying binary"
|
|
cp ./target/x86_64-unknown-linux-gnu/release/ldgame ./bundle/linux/release
|
|
|
|
echo "Copying assets"
|
|
cp -r ./assets ./bundle/linux/release
|
|
|
|
echo "Packing assets"
|
|
cd ./bundle/linux/release
|
|
zip -r ../release-x86_64-unknown-linux-gnu.zip ./ |