nheko/.ci/macos/deploy.sh

33 lines
797 B
Bash
Raw Normal View History

#!/usr/bin/env sh
2017-11-05 18:14:52 +01:00
set -eux
2017-11-05 18:14:52 +01:00
# unused
#TAG=$(git tag -l --points-at HEAD)
2017-11-05 19:07:14 +01:00
# Add Qt binaries to path
PATH=/usr/local/opt/qt/bin/:${PATH}
( cd build
# macdeployqt does not copy symlinks over.
# this specifically addresses icu4c issues but nothing else.
ICU_LIB="$(brew --prefix icu4c)/lib"
export ICU_LIB
mkdir -p nheko.app/Contents/Frameworks
find "${ICU_LIB}" -type l -name "*.dylib" -exec cp -a -n {} nheko.app/Contents/Frameworks/ \; || true
2019-10-06 02:28:25 +02:00
sudo macdeployqt nheko.app -dmg -always-overwrite -qmldir=../resources/qml/
user=$(id -nu)
sudo chown "${user}" nheko.dmg
mv nheko.dmg ..
)
2018-04-28 16:28:26 +02:00
dmgbuild -s ./.ci/macos/settings.json "Nheko" nheko.dmg
2018-06-17 15:53:14 +02:00
2019-08-05 00:47:21 +02:00
if [ -n "$VERSION" ]; then
mv nheko.dmg "nheko-${VERSION}.dmg"
2019-08-05 00:47:21 +02:00
mkdir artifacts
cp "nheko-${VERSION}.dmg" artifacts/
2018-06-17 15:53:14 +02:00
fi