2017-10-06 19:58:48 +00:00
|
|
|
#!/bin/bash -ex
|
|
|
|
|
|
|
|
. .travis/common/pre-upload.sh
|
|
|
|
|
|
|
|
REV_NAME="citra-osx-${GITDATE}-${GITREV}"
|
|
|
|
ARCHIVE_NAME="${REV_NAME}.tar.gz"
|
|
|
|
COMPRESSION_FLAGS="-czvf"
|
|
|
|
|
|
|
|
mkdir "$REV_NAME"
|
|
|
|
|
2020-05-04 14:35:20 +00:00
|
|
|
cp build/bin/Release/citra "$REV_NAME"
|
|
|
|
cp -r build/bin/Release/citra-qt.app "$REV_NAME"
|
|
|
|
cp build/bin/Release/citra-room "$REV_NAME"
|
2017-10-06 19:58:48 +00:00
|
|
|
|
2018-12-17 15:33:42 +00:00
|
|
|
# move libs into folder for deployment
|
2019-03-09 14:05:56 +00:00
|
|
|
macpack "${REV_NAME}/citra-qt.app/Contents/MacOS/citra-qt" -d "../Frameworks"
|
2018-12-17 15:33:42 +00:00
|
|
|
# move qt frameworks into app bundle for deployment
|
|
|
|
$(brew --prefix)/opt/qt5/bin/macdeployqt "${REV_NAME}/citra-qt.app" -executable="${REV_NAME}/citra-qt.app/Contents/MacOS/citra-qt"
|
2017-10-06 19:58:48 +00:00
|
|
|
|
2018-12-17 15:33:42 +00:00
|
|
|
# move libs into folder for deployment
|
2019-03-09 14:05:56 +00:00
|
|
|
macpack "${REV_NAME}/citra" -d "libs"
|
2018-12-28 10:43:54 +00:00
|
|
|
|
2017-10-06 19:58:48 +00:00
|
|
|
# Make the launching script executable
|
2018-12-17 15:33:42 +00:00
|
|
|
chmod +x ${REV_NAME}/citra-qt.app/Contents/MacOS/citra-qt
|
|
|
|
|
|
|
|
# Verify loader instructions
|
|
|
|
find "$REV_NAME" -exec otool -L {} \;
|
2017-10-06 19:58:48 +00:00
|
|
|
|
|
|
|
. .travis/common/post-upload.sh
|