-
Notifications
You must be signed in to change notification settings - Fork 464
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Mac refresh the mac build to deploy app and dmg #1297
Open
Iragne
wants to merge
6
commits into
ArduPilot:master
Choose a base branch
from
Iragne:mac-dmg
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
1a9a97d
Create a DMG for deployment
Iragne ff63d88
Update Readme and script
Iragne 1c2ad0a
Add header AP
Iragne bd65443
Merge branch 'refs/heads/mac-build' into mac-dmg
Iragne 64bf876
Update Matt signing working
Iragne ac8a5ef
Adding the right param x86_64 arm64
Iragne File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"title": "APM Planner 2.0", | ||
"icon": "../../files/APMIcons/icon.icns", | ||
"contents": [ | ||
{ "x": 448, "y": 344, "type": "link", "path": "/Applications" }, | ||
{ "x": 192, "y": 344, "type": "file", "path": "../../release/apmplanner2.app" } | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
#!/bin/sh | ||
echo "cccccccccccccccccccccccccccccccccccccccccccccccccc | ||
cccccccccccccccccccccccccccccccccccccccccccccccccc | ||
cccccccccccccccccccccccccccccccccccccccccccccccccc | ||
cccccccccccccccccccccccccccloolccccccccccccccccccc | ||
cccccccccccccccccccccclollccldxdolcccccccccccccccc | ||
ccccccccccccccccccccccodkkO0OkO00kdolccccccccccccc | ||
ccccccccccccccccccccccccllox0XWWWWNX0kdlcccccccccc | ||
cccccccccccccccccccccccccccccoxOKWMMMWNKkdlccccccc | ||
ccccccccccclllllccccccclllllllllldkKNWMMMWX0xolccc | ||
ccccccccccxKXXX0dcccccdKXXXXXXXX0kolokKNWMMMWXxccc | ||
cccccccclkNMMMMNxccccl0WMMWX0KNMMW0lcclOWMMMNOlccc | ||
cccccccoOWMNNWMWkccccxNMMMXdcoKMMWOlccdKMMWXxlcccc | ||
ccccccdKWMXxOWMWOlccoKMMMMNOOKWMN0ocldKWMWKdcccccc | ||
cccclxXWMWNKNWMM0lcckNMMNXXKKK0kdllld0WMNOoccccccc | ||
ccclONMWXOOOKWMMKocoKMMWOolllccccldx0NMXklcccccccc | ||
cccdO00OocccoO00kocdO00koccccccodxdONWKdcccccccccc | ||
cccccccccccccccccccccccccccccldxdoxKN0occccccccccc | ||
cccccccccccccccccccccccccccldddlco0Xklcccccccccccc | ||
ccccccccccccccccccccccccloodolcclOKxcccccccccccccc | ||
cccccccccccccccccccccccllllcccclxOoccccccccccccccc | ||
cccccccccccccccccccccccccccccccodlcccccccccccccccc | ||
cccccccccccccccccccccccccccccccllccccccccccccccccc | ||
cccccccccccccccccccccccccccccccccccccccccccccccccc | ||
cccccccccccccccccccccccccccccccccccccccccccccccccc | ||
cccccccccccccccccccccccccccccccccccccccccccccccccc | ||
" | ||
if [ -f "release/apmplanner2.dmg" ] ; then | ||
rm -rf "release/apmplanner2.dmg" | ||
fi | ||
|
||
rm -rf release/apmplanner2.app | ||
make -j8 | ||
echo 'macdeployqt "release/apmplanner2.app"' | ||
macdeployqt "release/apmplanner2.app" | ||
|
||
echo "rm -rf release/apmplanner2.app/Contents/Frameworks/SDL2.framework" | ||
rm -rf release/apmplanner2.app/Contents/Frameworks/SDL2.framework | ||
echo "cp -R libs/lib/Frameworks/SDL2.framework release/apmplanner2.app/Contents/Frameworks" | ||
cp -R libs/lib/Frameworks/SDL2.framework release/apmplanner2.app/Contents/Frameworks | ||
|
||
SIGN="$1" | ||
|
||
ROOT=`pwd` | ||
cd release/ | ||
|
||
echo "cd apmplanner2.app/Contents/MacOS" | ||
cd apmplanner2.app/Contents/MacOS | ||
echo "mv qml ../Resources" | ||
mv qml ../Resources | ||
echo "mv sik_uploader ../Resources " | ||
mv sik_uploader ../Resources | ||
echo "ln -s ../Resources/sik_uploader sik_uploader" | ||
ln -s ../Resources/sik_uploader sik_uploader | ||
echo "ln -s ../Resources/qml qml" | ||
ln -s ../Resources/qml qml | ||
|
||
cd .. | ||
cd .. | ||
cd .. | ||
|
||
|
||
echo "Sign sub Framework" | ||
find apmplanner2.app -name "*.framework" -exec codesign --timestamp --options runtime -f -s "$SIGN" {} \; | ||
echo "Sign sub dylib" | ||
find apmplanner2.app -name "*.dylib" -exec codesign --timestamp --options runtime -f -s "$SIGN" {} \; | ||
echo "Sign apmplanner2.ap" | ||
codesign --timestamp --options runtime -f -s "$SIGN" apmplanner2.app | ||
|
||
cd $ROOT | ||
appdmg deploy/assets/config.json release/apmplanner2.dmg |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I am not sure but I think its worth a test. Please remove the 2 CONFIG lines and use
QMAKE_APPLE_DEVICE_ARCHS = x86_64 arm64
instead and useQMAKE_MACOSX_DEPLOYMENT_TARGET = 10.14
I think mojave is old enough.Perhaps this allows building a Universal binary
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes i was on it but look like i should to that
CONFIG -= x86
CONFIG -= x86_64
CONFIG += x86 arm64
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let me find an associated mac, I will also try to create different build and we can all test
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Increasing the
MACOSX_DEPLOYMENT_TARGET
doesn't automatically enables Universal binarythat is a separate option
more than that, when building an arm64 or a universal binary - the niminum supported/deployement target is maxed to at least 10.14 automatically and w/o a warning, but only the the arm64 part of the binrary