mirror of
https://github.com/jcefmaven/jcefbuild.git
synced 2025-11-08 18:23:50 +08:00
Switch macos builds from altool to notarytool
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
|
||||
if [ $# -lt 2 ] || [ $# -eq 3 ]
|
||||
then
|
||||
echo "Usage: ./compile_macosx.sh <architecture> <buildType> [<gitrepo> <gitref>] [<certname> <teamname> <applekeyid> <applekeyissuer>]"
|
||||
echo "Usage: ./compile_macosx.sh <architecture> <buildType> [<gitrepo> <gitref>] [<certname> <teamname> <applekeyid> <applekeypath> <applekeyissuer>]"
|
||||
echo ""
|
||||
echo "architecture: the target architecture to build for. Architectures are either amd64 or arm64."
|
||||
echo "buildType: either Release or Debug"
|
||||
@@ -10,7 +10,8 @@ if [ $# -lt 2 ] || [ $# -eq 3 ]
|
||||
echo "gitref: the git commit id to pull"
|
||||
echo "certname: the apple signing certificate name. Something like \"Developer ID Application: xxx (yyy)\""
|
||||
echo "teamname: the apple team name. 10-digit id yyy from the cert name."
|
||||
echo "applekeyid: your apple api key id"
|
||||
echo "applekeyid: id of your apple api key"
|
||||
echo "applekeypath: path to your apple api key"
|
||||
echo "applekeyissuer: uuid of your apple api key issuer"
|
||||
exit 1
|
||||
fi
|
||||
@@ -78,7 +79,7 @@ cd binary_distrib/macosx64
|
||||
if [ $# -gt 4 ]
|
||||
then
|
||||
chmod +x $WORK_DIR/macosx_codesign.sh
|
||||
bash $WORK_DIR/macosx_codesign.sh $(pwd) "$5" $6 $7 $8
|
||||
bash $WORK_DIR/macosx_codesign.sh $(pwd) "$5" $6 $7 $8 $9
|
||||
fi
|
||||
|
||||
#Pack binary_distrib
|
||||
|
||||
Reference in New Issue
Block a user