123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424 |
- #!/bin/bash
- set -e
- if [ -z $1 ] || [ -z $2 ] || [ -z $3 ]; then
- echo "Usage: $0 <version> <mono version> <platform>"
- echo " For example: $0 3.0.3-rc3 5.12.0.226 ubuntu_32"
- echo ""
- echo "Platforms: mono-glue, ubuntu_32, ubuntu_64, macos, uwp, windows, javascript, android"
- exit 1
- fi
- export OPTIONS="builtin_libpng=yes builtin_openssl=yes builtin_zlib=yes gdnative_wrapper=yes debug_symbols=no"
- export SSHOPTS="-i /home/hp/.ssh/id_rsa -oStrictHostKeyChecking=no "
- export GODOT_VERSION=$1
- export MONO_VERSION=$2
- function get-domain-ip {
- rx='([1-9]?[0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])'
- domain=$1
- mac=$(sudo virsh domiflist ${domain} | tail -n-2 | awk '{print $5}')
- ip=""
- while [[ ! "$ip" =~ ^$rx\.$rx\.$rx\.$rx$ ]]; do
- ip=$(sudo virsh net-dhcp-leases default-nat | grep $mac | awk '{print $5}' | cut -d/ -f1)
- done
- echo $ip
- }
- function boot-domain {
- domain=$1
- echo "${domain} "
- if sudo virsh start ${domain}; then
- sleep 30s
- fi
- ip=$(get-domain-ip ${domain})
- while ! tcping -t 1 ${ip} 22 &>/dev/null; do
- sleep 1
- done
- }
- function mono-glue {
- rm -rf godot-mono-glue
- git clone https://github.com/godotengine/godot.git godot-mono-glue
- cd godot-mono-glue
- git checkout -b 3.0 origin/3.0 || git checkout 3.0
- git branch --set-upstream-to=origin/3.0 3.0
- git reset --hard
- git pull
-
- TERM=xterm /usr/bin/scons platform=x11 bits=64 -j16 ${OPTIONS} target=release_debug tools=yes module_mono_enabled=yes mono_glue=no CXXFLAGS="-I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include/ -Wno-parentheses"
- bin/godot.x11.opt.tools.64.mono --generate-mono-glue modules/mono/glue
- cd ..
- rm -rf mono-glue
- mkdir mono-glue
- cp godot-mono-glue/modules/mono/glue/cs_compressed.gen.h godot-mono-glue/modules/mono/glue/mono_glue.gen.cpp mono-glue
- }
- function ubuntu_32 {
- mkdir -p godot-ubuntu-32
- boot-domain godot-ubuntu14.04-32
- scp $SSHOPTS build-godot-ubuntu-32.sh user@${ip}:~/build-godot.sh
- scp $SSHOPTS -r mono-glue user@${ip}:~/
- ssh $SSHOPTS user@${ip} bash build-godot.sh ${MONO_VERSION}
- scp $SSHOPTS user@${ip}:~/godot/bin/* godot-ubuntu-32
- ssh $SSHOPTS user@${ip} sudo shutdown -h now || /bin/true
- mkdir -p templates
- rm -f templates/linux_x11_32*
- cp godot-ubuntu-32/godot.x11.opt.debug.32 templates/linux_x11_32_debug
- cp godot-ubuntu-32/godot.x11.opt.32 templates/linux_x11_32_release
- mkdir -p release-${GODOT_VERSION}
- rm -f release-${GODOT_VERSION}/*linux*32*
- cp godot-ubuntu-32/godot.x11.opt.tools.32 Godot_v${GODOT_VERSION}_x11.32
- zip -q -9 Godot_v${GODOT_VERSION}_x11.32.zip Godot_v${GODOT_VERSION}_x11.32
- mv Godot_v${GODOT_VERSION}_x11.32.zip release-${GODOT_VERSION}
- rm Godot_v${GODOT_VERSION}_x11.32
- mkdir -p mono/release-${GODOT_VERSION}
- rm -f mono/release-${GODOT_VERSION}/*linux*32*
- mkdir -p Godot_v${GODOT_VERSION}_mono_x11_32
- cp godot-ubuntu-32/godot.x11.opt.tools.32.mono Godot_v${GODOT_VERSION}_mono_x11_32/Godot_v${GODOT_VERSION}_mono_x11.32
- cp godot-ubuntu-32/*.dll Godot_v${GODOT_VERSION}_mono_x11_32
- zip -r -q -9 Godot_v${GODOT_VERSION}_mono_x11_32.zip Godot_v${GODOT_VERSION}_mono_x11_32
- mv Godot_v${GODOT_VERSION}_mono_x11_32.zip mono/release-${GODOT_VERSION}
- rm -rf Godot_v${GODOT_VERSION}_mono_x11_32
- mkdir -p mono/templates
- rm -f mono/templates/*linux*32*
- cp godot-ubuntu-32/godot.x11.opt.debug.32.mono mono/templates/linux_x11_32_debug
- cp godot-ubuntu-32/godot.x11.opt.32.mono mono/templates/linux_x11_32_release
- }
- function ubuntu_64 {
- mkdir -p godot-ubuntu-64
- boot-domain godot-ubuntu14.04-64
- scp $SSHOPTS build-godot-ubuntu-64.sh user@${ip}:~/build-godot.sh
- scp $SSHOPTS -r mono-glue user@${ip}:~/
- ssh $SSHOPTS user@${ip} bash build-godot.sh ${MONO_VERSION}
- scp $SSHOPTS user@${ip}:~/godot/bin/* godot-ubuntu-64
- ssh $SSHOPTS user@${ip} sudo shutdown -h now || /bin/true
- mkdir -p templates
- rm -f templates/linux_x11_64*
- cp godot-ubuntu-64/godot.x11.opt.debug.64 templates/linux_x11_64_debug
- cp godot-ubuntu-64/godot.x11.opt.64 templates/linux_x11_64_release
- mkdir -p release-${GODOT_VERSION}
- rm -f release-${GODOT_VERSION}/*linux*64*
- cp godot-ubuntu-64/godot_server.server.opt.64 Godot_v${GODOT_VERSION}_linux_server.64
- zip -q -9 Godot_v${GODOT_VERSION}_linux_server.64.zip Godot_v${GODOT_VERSION}_linux_server.64
- mv Godot_v${GODOT_VERSION}_linux_server.64.zip release-${GODOT_VERSION}
- rm Godot_v${GODOT_VERSION}_linux_server.64
- cp godot-ubuntu-64/godot_server.server.opt.tools.64 Godot_v${GODOT_VERSION}_linux_headless.64
- zip -q -9 Godot_v${GODOT_VERSION}_linux_headless.64.zip Godot_v${GODOT_VERSION}_linux_headless.64
- mv Godot_v${GODOT_VERSION}_linux_headless.64.zip release-${GODOT_VERSION}
- rm Godot_v${GODOT_VERSION}_linux_headless.64
- cp godot-ubuntu-64/godot.x11.opt.tools.64 Godot_v${GODOT_VERSION}_x11.64
- zip -q -9 Godot_v${GODOT_VERSION}_x11.64.zip Godot_v${GODOT_VERSION}_x11.64
- mv Godot_v${GODOT_VERSION}_x11.64.zip release-${GODOT_VERSION}
- rm Godot_v${GODOT_VERSION}_x11.64
- mkdir -p mono/release-${GODOT_VERSION}
- rm -f mono/release-${GODOT_VERSION}/*linux*64*
- mkdir -p Godot_v${GODOT_VERSION}_mono_x11_64
- cp godot-ubuntu-64/godot.x11.opt.tools.64.mono Godot_v${GODOT_VERSION}_mono_x11_64/Godot_v${GODOT_VERSION}_mono_x11.64
- cp godot-ubuntu-64/*.dll Godot_v${GODOT_VERSION}_mono_x11_64
- zip -r -q -9 Godot_v${GODOT_VERSION}_mono_x11_64.zip Godot_v${GODOT_VERSION}_mono_x11_64
- mv Godot_v${GODOT_VERSION}_mono_x11_64.zip mono/release-${GODOT_VERSION}
- rm -rf Godot_v${GODOT_VERSION}_mono_x11_64
- mkdir -p mono/templates
- rm -f mono/templates/*linux*64*
- cp godot-ubuntu-64/godot.x11.opt.debug.64.mono mono/templates/linux_x11_64_debug
- cp godot-ubuntu-64/godot.x11.opt.64.mono mono/templates/linux_x11_64_release
- }
- function uwp {
- boot-domain godot-win10
- mkdir -p godot-uwp
- scp $SSHOPTS build-godot-uwp.bat user@${ip}:
- scp $SSHOPTS -r mono-glue user@${ip}:
- ssh $SSHOPTS user@${ip} build-godot-uwp.bat
- scp $SSHOPTS -r user@${ip}:binaries/* godot-uwp
- ssh $SSHOPTS user@${ip} "shutdown /s /t 0" || /bin/true
- mkdir -p templates
- rm -f templates/uwp*
- rm -rf angle*
- wget -c https://github.com/GodotBuilder/godot-builds/releases/download/_tools/angle.7z
- 7z x angle.7z
- rm -rf uwp_template_*
-
- for arch in ARM Win32 x64; do
- cp -r godot-mono-glue/misc/dist/uwp_template uwp_template_${arch}
- cp angle/winrt/10/src/Release_${arch}/libEGL.dll \
- angle/winrt/10/src/Release_${arch}/libGLESv2.dll \
- uwp_template_${arch}/
- cp -r uwp_template_${arch} uwp_template_${arch}_debug
- done
- # ARM
- cp godot-uwp/uwp_arm/godot.uwp.opt.32.arm.exe uwp_template_ARM/godot.uwp.exe
- cp godot-uwp/uwp_arm/godot.uwp.opt.debug.32.arm.exe uwp_template_ARM_debug/godot.uwp.exe
- cd uwp_template_ARM && zip -q -9 -r ../templates/uwp_arm_release.zip * && cd ..
- cd uwp_template_ARM_debug && zip -q -9 -r ../templates/uwp_arm_debug.zip * && cd ..
- # Win32
- cp godot-uwp/uwp_x86/godot.uwp.opt.32.x86.exe uwp_template_Win32/godot.uwp.exe
- cp godot-uwp/uwp_x86/godot.uwp.opt.debug.32.x86.exe uwp_template_Win32_debug/godot.uwp.exe
- cd uwp_template_Win32 && zip -q -9 -r ../templates/uwp_x86_release.zip * && cd ..
- cd uwp_template_Win32_debug && zip -q -9 -r ../templates/uwp_x86_debug.zip * && cd ..
- # x64
- cp godot-uwp/uwp_amd64/godot.uwp.opt.64.x64.exe uwp_template_x64/godot.uwp.exe
- cp godot-uwp/uwp_amd64/godot.uwp.opt.debug.64.x64.exe uwp_template_x64_debug/godot.uwp.exe
- cd uwp_template_x64 && zip -q -9 -r ../templates/uwp_x64_release.zip * && cd ..
- cd uwp_template_x64_debug && zip -q -9 -r ../templates/uwp_x64_debug.zip * && cd ..
- rm -rf uwp_template_*
- }
- function windows {
- mkdir -p godot-windows
- boot-domain godot-fedora28
- scp $SSHOPTS build-godot-windows.sh user@${ip}:~/build-godot.sh
- scp $SSHOPTS -r mono-glue user@${ip}:~/
- ssh $SSHOPTS user@${ip} bash build-godot.sh ${MONO_VERSION}
- scp $SSHOPTS user@${ip}:~/godot/bin/* godot-windows
- ssh $SSHOPTS user@${ip} sudo shutdown -h now || /bin/true
- mkdir -p release-${GODOT_VERSION}
- rm -f release-${GODOT_VERSION}/*win*zip
- cp godot-windows/godot.windows.opt.tools.64.exe Godot_v${GODOT_VERSION}_win64.exe
- strip Godot_v${GODOT_VERSION}_win64.exe
- zip -q -9 Godot_v${GODOT_VERSION}_win64.exe.zip Godot_v${GODOT_VERSION}_win64.exe
- mv Godot_v${GODOT_VERSION}_win64.exe.zip release-${GODOT_VERSION}
- rm Godot_v${GODOT_VERSION}_win64.exe
- cp godot-windows/godot.windows.opt.tools.32.exe Godot_v${GODOT_VERSION}_win32.exe
- strip Godot_v${GODOT_VERSION}_win32.exe
- zip -q -9 Godot_v${GODOT_VERSION}_win32.exe.zip Godot_v${GODOT_VERSION}_win32.exe
- mv Godot_v${GODOT_VERSION}_win32.exe.zip release-${GODOT_VERSION}
- rm Godot_v${GODOT_VERSION}_win32.exe
- mkdir -p templates
- rm -rf templates/*win*
- cp godot-windows/godot.windows.opt.64.exe templates/windows_64_release.exe
- cp godot-windows/godot.windows.opt.debug.64.exe templates/windows_64_debug.exe
- cp godot-windows/godot.windows.opt.32.exe templates/windows_32_release.exe
- cp godot-windows/godot.windows.opt.debug.32.exe templates/windows_32_debug.exe
- strip templates/windows*.exe
- mkdir -p mono/release-${GODOT_VERSION}
- rm -f mono/release-${GODOT_VERSION}/*win*
- mkdir -p mono/templates
- rm -f mono/templates/*win*
- # Win32
- mkdir -p Godot_v${GODOT_VERSION}_mono_win32
- cp godot-windows/godot.windows.opt.tools.32.mono.exe Godot_v${GODOT_VERSION}_mono_win32/Godot_v${GODOT_VERSION}_mono_win32.exe
- strip Godot_v${GODOT_VERSION}_mono_win32/Godot_v${GODOT_VERSION}_mono_win32.exe
- cp godot-windows/*.dll Godot_v${GODOT_VERSION}_mono_win32
- zip -r -q -9 Godot_v${GODOT_VERSION}_mono_win32.zip Godot_v${GODOT_VERSION}_mono_win32
- mv Godot_v${GODOT_VERSION}_mono_win32.zip mono/release-${GODOT_VERSION}
- rm -rf Godot_v${GODOT_VERSION}_mono_win32
- cp godot-windows/godot.windows.opt.debug.32.mono.exe mono/templates/windows_32_debug.exe
- cp godot-windows/godot.windows.opt.32.mono.exe mono/templates/windows_32_release.exe
- # x64
- mkdir -p Godot_v${GODOT_VERSION}_mono_win64
- cp godot-windows/godot.windows.opt.tools.64.mono.exe Godot_v${GODOT_VERSION}_mono_win64/Godot_v${GODOT_VERSION}_mono_win64.exe
- strip Godot_v${GODOT_VERSION}_mono_win64/Godot_v${GODOT_VERSION}_mono_win64.exe
- cp godot-windows/*.dll Godot_v${GODOT_VERSION}_mono_win64
- zip -r -q -9 Godot_v${GODOT_VERSION}_mono_win64.zip Godot_v${GODOT_VERSION}_mono_win64
- mv Godot_v${GODOT_VERSION}_mono_win64.zip mono/release-${GODOT_VERSION}
- rm -rf Godot_v${GODOT_VERSION}_mono_win64
- cp godot-windows/godot.windows.opt.debug.64.mono.exe mono/templates/windows_64_debug.exe
- cp godot-windows/godot.windows.opt.64.mono.exe mono/templates/windows_64_release.exe
- strip mono/templates/windows*.exe
- }
- function macos {
- echo "booting macosx"
- mkdir -p godot-macosx
- sudo bash /media/disk2/hp/macosx/OSX-KVM/godot.sh || /bin/true
- while ! tcping -t 1 192.168.100.137 22 &>/dev/null; do
- sleep 1
- done
-
- sleep 30s
-
- scp $SSHOPTS build-godot-macosx.sh hp@192.168.100.137:~/build-godot.sh
- scp $SSHOPTS -r mono-glue hp@192.168.100.137:~/
- ssh $SSHOPTS hp@192.168.100.137 bash build-godot.sh ${MONO_VERSION}
- scp $SSHOPTS hp@192.168.100.137:~/godot/bin/* godot-macosx
- ssh $SSHOPTS hp@192.168.100.137 sudo shutdown -h now || /bin/true
- mkdir -p templates
- rm -f templates/osx*
- rm -f templates/iphone*
- rm -rf osx_template
- mkdir -p osx_template
- cd osx_template
- cp -r ../godot-mono-glue/misc/dist/osx_template.app .
- mkdir osx_template.app/Contents/MacOS
- cp ../godot-macosx/godot.osx.opt.fat osx_template.app/Contents/MacOS/godot_osx_release.fat
- cp ../godot-macosx/godot.osx.opt.debug.fat osx_template.app/Contents/MacOS/godot_osx_debug.fat
- chmod +x osx_template.app/Contents/MacOS/godot_osx*
- zip -q -9 -r osx.zip osx_template.app
- cd ..
-
- mv osx_template/osx.zip templates
- rm -rf osx_template
- cp -r godot-mono-glue/misc/dist/ios_xcode ios_xcode
- cp godot-macosx/libgodot.iphone.opt.fat ios_xcode/libgodot.iphone.release.fat.a
- cp godot-macosx//libgodot.iphone.opt.debug.fat ios_xcode/libgodot.iphone.debug.fat.a
- chmod +x ios_xcode/libgodot.iphone.*
- cd ios_xcode
- zip -q -9 -r ../templates/iphone.zip *
- cd ..
- rm -rf ios_xcode
- mkdir -p release-${GODOT_VERSION}
- rm -f release-${GODOT_VERSION}/*osx*
- cp -r godot-mono-glue/misc/dist/osx_tools.app Godot.app
- mkdir -p Godot.app/Contents/MacOS
- cp godot-macosx/godot.osx.opt.tools.fat Godot.app/Contents/MacOS/Godot
- chmod +x Godot.app/Contents/MacOS/Godot
- zip -q -9 -r "release-${GODOT_VERSION}/Godot_v${GODOT_VERSION}_osx.fat.zip" Godot.app
- rm -rf Godot.app
- mkdir -p mono/templates
- rm -f mono/templates/osx*
- rm -rf osx_template
- mkdir -p osx_template
- cd osx_template
- cp -r ../godot-mono-glue/misc/dist/osx_template.app .
- mkdir osx_template.app/Contents/MacOS
- cp ../godot-macosx/godot.osx.opt.fat.mono osx_template.app/Contents/MacOS/godot_osx_release.fat
- cp ../godot-macosx/godot.osx.opt.debug.fat.mono osx_template.app/Contents/MacOS/godot_osx_debug.fat
- chmod +x osx_template.app/Contents/MacOS/godot_osx*
- zip -q -9 -r osx.zip osx_template.app
- cd ..
- mv osx_template/osx.zip mono/templates
- rm -rf osx_template
- mkdir -p mono/release-${GODOT_VERSION}
- rm -f mono/release-${GODOT_VERSION}/*osx*
- cp -r godot-mono-glue/misc/dist/osx_tools.app Godot_mono.app
- mkdir -p Godot_mono.app/Contents/MacOS
- cp godot-macosx/godot.osx.opt.tools.fat.mono Godot_mono.app/Contents/MacOS/Godot
- cp godot-macosx/*.dll Godot_mono.app/Contents/MacOS/
- chmod +x Godot_mono.app/Contents/MacOS/Godot
- zip -q -9 -r "mono/release-${GODOT_VERSION}/Godot_v${GODOT_VERSION}_mono_osx.fat.zip" Godot_mono.app
- rm -rf Godot_mono.app
- }
- function android {
- export ANDROID_HOME=/home/hp/Apps/android/sdk/
- export ANDROID_NDK_ROOT=/home/hp/Apps/android/android-ndk-r16b
- export SCONS="/usr/bin/scons -j8 verbose=no warnings=no progress=no"
- export OPTIONS="builtin_libpng=yes builtin_openssl=yes builtin_zlib=yes gdnative_wrapper=yes debug_symbols=no"
- rm -rf godot-android
- git clone https://github.com/godotengine/godot.git godot-android
- cd godot-android
- git checkout -b 3.0 origin/3.0 || git checkout 3.0
- git branch --set-upstream-to=origin/3.0 3.0
- git reset --hard
- git pull
- $SCONS platform=android target=release_debug tools=no ${OPTIONS} android_arch=armv7
- $SCONS platform=android target=release_debug tools=no ${OPTIONS} android_arch=arm64v8
- $SCONS platform=android target=release_debug tools=no ${OPTIONS} android_arch=x86
- $SCONS platform=android target=release tools=no ${OPTIONS} android_arch=armv7
- $SCONS platform=android target=release tools=no ${OPTIONS} android_arch=arm64v8
- $SCONS platform=android target=release tools=no ${OPTIONS} android_arch=x86
- pushd platform/android/java
- ./gradlew build
- popd
- cd ..
- mkdir -p templates
- rm -f templates/android*
- cp godot-android/bin/android_debug.apk templates
- cp godot-android/bin/android_release.apk templates
- }
- function javascript {
- source /home/hp//Apps/emsdk-portable/emsdk_env.sh
- export EMSCRIPTEN_ROOT="/home/hp/Apps/emsdk-portable/emscripten/1.38.4"
- export EM_CONFIG=/home/hp/.emscripten
- export SCONS="/usr/bin/scons -j8 verbose=no warnings=no progress=no"
- export OPTIONS="builtin_libpng=yes builtin_openssl=yes builtin_zlib=yes gdnative_wrapper=yes debug_symbols=no"
- rm -rf godot-javascript
- git clone https://github.com/godotengine/godot.git godot-javascript
- cd godot-javascript
- git checkout -b 3.0 origin/3.0 || git checkout 3.0
- git branch --set-upstream-to=origin/3.0 3.0
- git reset --hard
- git pull
- $SCONS platform=javascript target=release_debug tools=no ${OPTIONS}
- $SCONS platform=javascript target=release tools=no ${OPTIONS}
- cd ..
- mkdir -p templates
- rm -f templates/webassembly*
- cp godot-javascript/bin/godot.javascript.opt.zip templates/webassembly_release.zip
- cp godot-javascript/bin/godot.javascript.opt.debug.zip templates/webassembly_debug.zip
- }
- $3 2>&1 | tee build-godot-$3.log
|