mirror of
https://github.com/Relintai/broken_seals.git
synced 2024-12-21 13:16:49 +01:00
Removed the podman build script, as the engine now has it.
This commit is contained in:
parent
d40af8d8fb
commit
bd2e3ad472
@ -1,126 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
set -e
|
|
||||||
|
|
||||||
podman=`which podman || true`
|
|
||||||
|
|
||||||
if [ -z $podman ]; then
|
|
||||||
echo "podman needs to be in PATH for this script to work."
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
project_root=$(pwd)/
|
|
||||||
img_version=bs
|
|
||||||
|
|
||||||
mkdir -p logs
|
|
||||||
|
|
||||||
#sudo podman run -i -t -v $(pwd)/files:/root/files pandemonium-osx:bs /bin/bash
|
|
||||||
#sudo podman run -i -t -v $(pwd)/:/root/project -w /root/project pandemonium-osx:bs /bin/bash
|
|
||||||
#sudo podman run -v $(pwd)/:/root/project -w /root/project pandemonium-osx:bs scons bex_strip arch=x86_64 -j4 osxcross_sdk=darwin20.4
|
|
||||||
#sudo podman run -i -t -v $(pwd)/:/root/project -w /root/project/tools/osx pandemonium-osx:bs bash -c ./lipo.sh
|
|
||||||
|
|
||||||
rm -f pandemonium_engine/modules/modules_enabled.gen.h
|
|
||||||
$podman run -v ${project_root}:/root/project -w /root/project pandemonium-windows:${img_version} scons bew_strip -j4 . 2>&1 | tee logs/bew.log
|
|
||||||
rm -f pandemonium_engine/modules/modules_enabled.gen.h
|
|
||||||
#$podman run -v ${project_root}:/root/project -w /root/project pandemonium-windows:${img_version} scons bewd_strip -j4 . 2>&1 | tee logs/bewd.log
|
|
||||||
rm -f pandemonium_engine/modules/modules_enabled.gen.h
|
|
||||||
$podman run -v ${project_root}:/root/project -w /root/project pandemonium-windows:${img_version} scons bw_strip -j4 . 2>&1 | tee logs/bw.log
|
|
||||||
rm -f pandemonium_engine/modules/modules_enabled.gen.h
|
|
||||||
$podman run -v ${project_root}:/root/project -w /root/project pandemonium-windows:${img_version} scons bwr_strip -j4 . 2>&1 | tee logs/bwr.log
|
|
||||||
rm -f pandemonium_engine/modules/modules_enabled.gen.h
|
|
||||||
|
|
||||||
|
|
||||||
$podman run -v ${project_root}:/root/project -w /root/project pandemonium-linux:${img_version} scons bel_strip -j4 . 2>&1 | tee logs/bel.log
|
|
||||||
rm -f pandemonium_engine/modules/modules_enabled.gen.h
|
|
||||||
#$podman run -v ${project_root}:/root/project -w /root/project pandemonium-linux:${img_version} scons beld_strip -j4 . 2>&1 | tee logs/beld.log
|
|
||||||
rm -f pandemonium_engine/modules/modules_enabled.gen.h
|
|
||||||
$podman run -v ${project_root}:/root/project -w /root/project pandemonium-linux:${img_version} scons bl_strip -j4 . 2>&1 | tee logs/bl.log
|
|
||||||
rm -f pandemonium_engine/modules/modules_enabled.gen.h
|
|
||||||
$podman run -v ${project_root}:/root/project -w /root/project pandemonium-linux:${img_version} scons blr_strip -j4 . 2>&1 | tee logs/blr.log
|
|
||||||
rm -f pandemonium_engine/modules/modules_enabled.gen.h
|
|
||||||
|
|
||||||
|
|
||||||
$podman run -v ${project_root}:/root/project -w /root/project pandemonium-javascript:${img_version} bash -c 'source /root/emsdk_2.0.25/emsdk_env.sh;scons bj_strip -j4' . 2>&1 | tee logs/bj.log
|
|
||||||
rm -f pandemonium_engine/modules/modules_enabled.gen.h
|
|
||||||
$podman run -v ${project_root}:/root/project -w /root/project pandemonium-javascript:${img_version} bash -c 'source /root/emsdk_2.0.25/emsdk_env.sh;scons bjr_strip -j4' . 2>&1 | tee logs/bjr.log
|
|
||||||
rm -f pandemonium_engine/modules/modules_enabled.gen.h
|
|
||||||
$podman run -v ${project_root}:/root/project -w /root/project pandemonium-javascript:${img_version} bash -c 'source /root/emsdk_2.0.25/emsdk_env.sh;scons bej_strip_threads -j4' . 2>&1 | tee logs/bej.log
|
|
||||||
rm -f pandemonium_engine/modules/modules_enabled.gen.h
|
|
||||||
|
|
||||||
$podman run -v ${project_root}:/root/project -w /root/project pandemonium-android:${img_version} scons ba_strip -j4 . 2>&1 | tee logs/ba.log
|
|
||||||
rm -f pandemonium_engine/modules/modules_enabled.gen.h
|
|
||||||
$podman run -v ${project_root}:/root/project -w /root/project pandemonium-android:${img_version} scons bar_strip -j4 . 2>&1 | tee logs/bar.log
|
|
||||||
rm -f pandemonium_engine/modules/modules_enabled.gen.h
|
|
||||||
|
|
||||||
#osx
|
|
||||||
$podman run -v ${project_root}:/root/project -w /root/project pandemonium-osx:${img_version} scons bex_strip arch=x86_64 -j4 osxcross_sdk=darwin20.4 . 2>&1 | tee logs/bex_x86_64.log
|
|
||||||
rm -f pandemonium_engine/modules/modules_enabled.gen.h
|
|
||||||
$podman run -v ${project_root}:/root/project -w /root/project pandemonium-osx:${img_version} scons bex_strip arch=arm64 -j4 osxcross_sdk=darwin20.4 . 2>&1 | tee logs/bex_arm64.log
|
|
||||||
rm -f pandemonium_engine/modules/modules_enabled.gen.h
|
|
||||||
|
|
||||||
$podman run -v ${project_root}:/root/project -w /root/project pandemonium-osx:${img_version} scons bx_strip arch=x86_64 -j4 osxcross_sdk=darwin20.4 . 2>&1 | tee logs/bx_x86_64.log
|
|
||||||
rm -f pandemonium_engine/modules/modules_enabled.gen.h
|
|
||||||
$podman run -v ${project_root}:/root/project -w /root/project pandemonium-osx:${img_version} scons bx_strip arch=arm64 -j4 osxcross_sdk=darwin20.4 . 2>&1 | tee logs/bx_arm64.log
|
|
||||||
rm -f pandemonium_engine/modules/modules_enabled.gen.h
|
|
||||||
|
|
||||||
$podman run -v ${project_root}:/root/project -w /root/project pandemonium-osx:${img_version} scons bxr_strip arch=x86_64 -j4 osxcross_sdk=darwin20.4 . 2>&1 | tee logs/bxr_x86_64.log
|
|
||||||
rm -f pandemonium_engine/modules/modules_enabled.gen.h
|
|
||||||
$podman run -v ${project_root}:/root/project -w /root/project pandemonium-osx:${img_version} scons bxr_strip arch=arm64 -j4 osxcross_sdk=darwin20.4 . 2>&1 | tee logs/bxr_arm64.log
|
|
||||||
rm -f pandemonium_engine/modules/modules_enabled.gen.h
|
|
||||||
|
|
||||||
#lipo
|
|
||||||
$podman run -v ${project_root}:/root/project -w /root/project/tools/osx pandemonium-osx:${img_version} bash -c ./lipo.sh
|
|
||||||
|
|
||||||
#ios
|
|
||||||
#$podman run -v ${project_root}:/root/project -w /root/project pandemonium-ios:${img_version} scons bir_strip -j4 . 2>&1 | tee logs/bir.log
|
|
||||||
#rm -f pandemonium_engine/modules/modules_enabled.gen.h
|
|
||||||
|
|
||||||
# $podman run -v ${project_root}:/root/project -i -w /root/project -t pandemonium-windows:${img_version} scons bew -j4
|
|
||||||
rm -f pandemonium_engine/modules/modules_enabled.gen.h
|
|
||||||
|
|
||||||
|
|
||||||
# Check files
|
|
||||||
|
|
||||||
cd ./pandemonium_engine/bin/
|
|
||||||
|
|
||||||
files=(
|
|
||||||
# Windows
|
|
||||||
"pandemonium.windows.opt.64.exe"
|
|
||||||
"pandemonium.windows.opt.debug.64.exe"
|
|
||||||
"pandemonium.windows.opt.tools.64.exe"
|
|
||||||
# Linux
|
|
||||||
"pandemonium.x11.opt.64"
|
|
||||||
"pandemonium.x11.opt.debug.64"
|
|
||||||
"pandemonium.x11.opt.tools.64"
|
|
||||||
# JS
|
|
||||||
"pandemonium.javascript.opt.tools.threads.zip"
|
|
||||||
"pandemonium.javascript.opt.zip"
|
|
||||||
# Android
|
|
||||||
"android_debug.apk"
|
|
||||||
"android_release.apk"
|
|
||||||
# OSX
|
|
||||||
"pandemonium.osx.opt.arm64"
|
|
||||||
"pandemonium.osx.opt.debug.arm64"
|
|
||||||
"pandemonium.osx.opt.debug.universal"
|
|
||||||
"pandemonium.osx.opt.debug.x86_64"
|
|
||||||
"pandemonium.osx.opt.tools.arm64"
|
|
||||||
"pandemonium.osx.opt.tools.universal"
|
|
||||||
"pandemonium.osx.opt.tools.x86_64"
|
|
||||||
"pandemonium.osx.opt.universal"
|
|
||||||
"pandemonium.osx.opt.x86_64"
|
|
||||||
)
|
|
||||||
|
|
||||||
error=0
|
|
||||||
|
|
||||||
for f in ${files[*]}
|
|
||||||
do
|
|
||||||
if [ ! -e $f ]; then
|
|
||||||
error=1
|
|
||||||
echo "$f is not present!"
|
|
||||||
fi
|
|
||||||
done
|
|
||||||
|
|
||||||
if [ $error -eq 0 ]; then
|
|
||||||
echo "All files are present!"
|
|
||||||
fi
|
|
||||||
|
|
||||||
cd ../..
|
|
Loading…
Reference in New Issue
Block a user