nheko/.ci/macos/deploy.sh

35 lines
821 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@5/bin/:${PATH}
2017-11-05 19:07:14 +01:00
( 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
2020-12-08 22:32:04 +01:00
macdeployqt nheko.app -dmg -always-overwrite -qmldir=../resources/qml/
user=$(id -nu)
2020-12-08 22:32:04 +01:00
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
2020-12-08 22:32:04 +01:00
VERSION=${CI_COMMIT_SHORT_SHA}
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