2018-12-27 18:50:45 +03:00
set -x #echo on
curr_path = ${ BASH_SOURCE %/* }
# check that all the required environment vars are set
: " ${ ZANO_QT_PATH : ?variable not set, see also macosx_build_config.command } "
: " ${ ZANO_BOOST_ROOT : ?variable not set, see also macosx_build_config.command } "
: " ${ ZANO_BOOST_LIBS_PATH : ?variable not set, see also macosx_build_config.command } "
: " ${ ZANO_BUILD_DIR : ?variable not set, see also macosx_build_config.command } "
: " ${ CMAKE_OSX_SYSROOT : ?CMAKE_OSX_SYSROOT should be set to macOS SDK path, e.g. : /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk } "
2019-05-29 17:45:21 +03:00
ARCHIVE_NAME_PREFIX = zano-macos-x64-
if [ -n " $build_prefix " ] ; then
ARCHIVE_NAME_PREFIX = ${ ARCHIVE_NAME_PREFIX } ${ build_prefix } -
2019-05-31 18:52:08 +03:00
build_prefix_label = " $build_prefix "
2019-05-29 17:45:21 +03:00
fi
2020-09-08 21:39:01 +03:00
if [ " $testnet " = = true ] ; then
2019-05-29 17:45:21 +03:00
testnet_def = "-D TESTNET=TRUE"
2019-05-31 18:52:08 +03:00
testnet_label = "testnet "
2019-05-29 17:45:21 +03:00
ARCHIVE_NAME_PREFIX = ${ ARCHIVE_NAME_PREFIX } testnet-
fi
2018-12-27 18:50:45 +03:00
rm -rf $ZANO_BUILD_DIR ; mkdir -p " $ZANO_BUILD_DIR /release " ; cd " $ZANO_BUILD_DIR /release "
2019-05-29 17:45:21 +03:00
cmake $testnet_def -D CMAKE_OSX_SYSROOT = $CMAKE_OSX_SYSROOT -D BUILD_GUI = TRUE -D CMAKE_PREFIX_PATH = " $ZANO_QT_PATH /clang_64 " -D CMAKE_BUILD_TYPE = Release -D BOOST_ROOT = " $ZANO_BOOST_ROOT " -D BOOST_LIBRARYDIR = " $ZANO_BOOST_LIBS_PATH " ../..
2018-12-27 18:50:45 +03:00
if [ $? -ne 0 ] ; then
echo "Failed to cmake"
exit 1
fi
make -j Zano
if [ $? -ne 0 ] ; then
echo "Failed to make Zano"
exit 1
fi
2019-12-25 06:22:18 +03:00
make -j connectivity_tool daemon simplewallet
2018-12-27 18:50:45 +03:00
if [ $? -ne 0 ] ; then
2019-12-25 06:22:18 +03:00
echo "Failed to make binaries!"
2018-12-27 18:50:45 +03:00
exit 1
fi
cd src/
if [ $? -ne 0 ] ; then
echo "Failed to cd src"
exit 1
fi
# copy all necessary libs into the bundle in order to workaround El Capitan's SIP restrictions
mkdir -p Zano.app/Contents/Frameworks/boost_libs
cp -R " $ZANO_BOOST_LIBS_PATH / " Zano.app/Contents/Frameworks/boost_libs/
if [ $? -ne 0 ] ; then
echo "Failed to cp workaround to MacOS"
exit 1
fi
# rename process name to big letter
mv Zano.app/Contents/MacOS/zano Zano.app/Contents/MacOS/Zano
if [ $? -ne 0 ] ; then
echo "Failed to rename process"
exit 1
fi
2019-12-25 06:22:18 +03:00
cp zanod simplewallet Zano.app/Contents/MacOS/
if [ $? -ne 0 ] ; then
echo "Failed to copy binaries to Zano.app folder"
exit 1
fi
2018-12-27 18:50:45 +03:00
# fix boost libs paths in main executable and libs to workaround El Capitan's SIP restrictions
source ../../../utils/macosx_fix_boost_libs_path.sh
fix_boost_libs_in_binary @executable_path/../Frameworks/boost_libs Zano.app/Contents/MacOS/Zano
2019-12-25 06:22:18 +03:00
fix_boost_libs_in_binary @executable_path/../Frameworks/boost_libs Zano.app/Contents/MacOS/simplewallet
fix_boost_libs_in_binary @executable_path/../Frameworks/boost_libs Zano.app/Contents/MacOS/zanod
2018-12-27 18:50:45 +03:00
fix_boost_libs_in_libs @executable_path/../Frameworks/boost_libs Zano.app/Contents/Frameworks/boost_libs
" $ZANO_QT_PATH /clang_64/bin/macdeployqt " Zano.app
if [ $? -ne 0 ] ; then
echo "Failed to macdeployqt Zano.app"
exit 1
fi
rsync -a ../../../src/gui/qt-daemon/html Zano.app/Contents/MacOS --exclude less --exclude package.json --exclude gulpfile.js
if [ $? -ne 0 ] ; then
echo "Failed to cp html to MacOS"
exit 1
fi
cp ../../../src/gui/qt-daemon/app.icns Zano.app/Contents/Resources
if [ $? -ne 0 ] ; then
echo "Failed to cp app.icns to resources"
exit 1
fi
codesign -s "Zano" --deep -vv -f Zano.app
if [ $? -ne 0 ] ; then
echo "Failed to sign application"
exit 1
fi
2019-05-29 17:45:21 +03:00
read version_str <<< $( DYLD_LIBRARY_PATH = $ZANO_BOOST_LIBS_PATH ./connectivity_tool --version | awk '/^Zano/ { print $2 }' )
2018-12-27 18:50:45 +03:00
version_str = ${ version_str }
echo $version_str
echo "############### Prepearing archive... ################"
mkdir package_folder
if [ $? -ne 0 ] ; then
echo "Failed to zip app"
exit 1
fi
mv Zano.app package_folder
if [ $? -ne 0 ] ; then
echo "Failed to top app package"
exit 1
fi
2019-05-29 17:45:21 +03:00
package_filename = ${ ARCHIVE_NAME_PREFIX } ${ version_str } .dmg
2018-12-27 18:50:45 +03:00
source ../../../utils/macosx_dmg_builder.sh
build_fancy_dmg package_folder $package_filename
if [ $? -ne 0 ] ; then
echo "Failed to create fancy dmg"
exit 1
fi
cd ../../..
echo "Build success"
echo "############### Uploading... ################"
2019-05-31 00:11:10 +03:00
package_filepath = $ZANO_BUILD_DIR /release/src/$package_filename
scp $package_filepath zano_build_server:/var/www/html/builds/
2018-12-27 18:50:45 +03:00
if [ $? -ne 0 ] ; then
echo "Failed to upload to remote server"
exit 1
fi
2019-05-31 00:11:10 +03:00
read checksum <<< $( shasum -a 256 $package_filepath | awk '/^/ { print $1 }' )
2018-12-27 18:50:45 +03:00
2019-05-30 22:47:25 +03:00
mail_msg = " New ${ build_prefix_label } ${ testnet_label } build for macOS-x64:<br>
2020-06-22 16:12:55 +03:00
https://build.zano.org/builds/$package_filename <br>
2019-05-30 22:47:25 +03:00
sha256: $checksum "
2018-12-27 18:50:45 +03:00
2019-05-30 22:47:25 +03:00
echo " $mail_msg "
2018-12-27 18:50:45 +03:00
2019-05-30 22:47:25 +03:00
echo " $mail_msg " | mail -s " Zano macOS-x64 ${ build_prefix_label } ${ testnet_label } build $version_str " ${ emails }