2017-02-26 17:17:52 -08:00
|
|
|
hr() {
|
2017-02-26 17:49:32 -08:00
|
|
|
echo "───────────────────────────────────────────────────"
|
2017-02-26 17:17:52 -08:00
|
|
|
echo $1
|
2017-02-26 17:49:32 -08:00
|
|
|
echo "───────────────────────────────────────────────────"
|
2017-02-26 17:17:52 -08:00
|
|
|
}
|
|
|
|
|
2017-02-25 09:32:39 -08:00
|
|
|
# Exit if something fails
|
|
|
|
set -e
|
|
|
|
|
2017-02-05 09:46:49 -08:00
|
|
|
# Generate file name variables
|
2016-10-09 15:26:44 -07:00
|
|
|
export GIT_HASH=$(git rev-parse --short HEAD)
|
|
|
|
export FILE_DATE=$(date +%Y-%m-%d.%H:%M:%S)
|
2017-02-27 17:30:23 -08:00
|
|
|
export FILENAME=$FILE_DATE-$GIT_HASH-$TRAVIS_BRANCH-osx.pkg
|
2017-02-05 09:46:49 -08:00
|
|
|
|
2016-10-11 18:47:22 -07:00
|
|
|
cd ./build
|
2017-02-05 09:46:49 -08:00
|
|
|
|
|
|
|
# Move the CEF plugin out before running build_app so that it doesn't get packaged twice
|
2017-02-26 17:17:52 -08:00
|
|
|
hr "Moving CEF out to preserve linking"
|
2017-01-19 08:15:41 -08:00
|
|
|
mv ./rundir/RelWithDebInfo/obs-plugins/CEF.app ./
|
|
|
|
mv ./rundir/RelWithDebInfo/obs-plugins/obs-browser.so ./
|
2017-02-05 09:46:49 -08:00
|
|
|
|
|
|
|
# Package everything into a nice .app
|
2017-02-26 17:17:52 -08:00
|
|
|
hr "Packaging .app"
|
2017-02-27 15:31:15 -08:00
|
|
|
STABLE=false
|
2017-02-27 12:50:16 -08:00
|
|
|
if [ -n "${TRAVIS_TAG}" ]; then
|
2017-02-27 15:31:15 -08:00
|
|
|
STABLE=true
|
2017-02-27 12:50:16 -08:00
|
|
|
fi
|
|
|
|
|
2017-02-27 15:31:15 -08:00
|
|
|
sudo python ../CI/install/osx/build_app.py --public-key ../CI/install/osx/OBSPublicDSAKey.pem --sparkle-framework ../../sparkle/Sparkle.framework --base-url "https://obsproject.com/osx_update" --stable=$STABLE
|
2017-02-05 09:46:49 -08:00
|
|
|
|
|
|
|
# Move the CEF plugin back to where it belongs
|
2017-02-26 17:17:52 -08:00
|
|
|
hr "Moving CEF back"
|
2017-01-19 08:15:41 -08:00
|
|
|
mv ./CEF.app ./rundir/RelWithDebInfo/obs-plugins/
|
|
|
|
mv ./obs-browser.so ./rundir/RelWithDebInfo/obs-plugins/
|
2017-01-23 19:59:08 -08:00
|
|
|
|
2017-02-05 09:46:49 -08:00
|
|
|
# Package app
|
2017-02-26 17:17:52 -08:00
|
|
|
hr "Generating .pkg"
|
2017-01-15 09:17:13 -08:00
|
|
|
packagesbuild ../CI/install/osx/CMakeLists.pkgproj
|
2017-01-12 18:52:30 -08:00
|
|
|
|
2017-02-05 09:46:49 -08:00
|
|
|
# Signing stuff
|
2017-02-26 17:17:52 -08:00
|
|
|
hr "Decrypting Cert"
|
2017-02-26 14:16:04 -08:00
|
|
|
openssl aes-256-cbc -K $encrypted_dd3c7f5e9db9_key -iv $encrypted_dd3c7f5e9db9_iv -in ../CI/osxcert/Certificates.p12.enc -out Certificates.p12 -d
|
2017-02-26 17:17:52 -08:00
|
|
|
hr "Creating Keychain"
|
2017-02-05 09:46:49 -08:00
|
|
|
security create-keychain -p mysecretpassword build.keychain
|
|
|
|
security default-keychain -s build.keychain
|
|
|
|
security unlock-keychain -p mysecretpassword build.keychain
|
2017-02-26 16:21:20 -08:00
|
|
|
security set-keychain-settings -t 3600 -u build.keychain
|
2017-12-02 01:09:48 -08:00
|
|
|
security set-key-partition-list -S apple-tool:,apple: -s -k mysecretpassword build.keychain
|
|
|
|
security list-keychains -s build.keychain
|
2017-02-26 17:17:52 -08:00
|
|
|
hr "Importing certs into keychain"
|
2017-02-26 17:49:32 -08:00
|
|
|
security import ./Certificates.p12 -k build.keychain -T /usr/bin/productsign -P ""
|
2017-02-26 17:17:52 -08:00
|
|
|
hr "Signing Package"
|
2017-12-01 10:20:06 -08:00
|
|
|
productsign --sign 2MMRE5MTB8 ./OBS.pkg ./$FILENAME
|
2017-02-05 09:46:49 -08:00
|
|
|
|
|
|
|
# Move to the folder that travis uses to upload artifacts from
|
2017-02-26 17:17:52 -08:00
|
|
|
hr "Moving package to nightly folder for distribution"
|
2017-02-05 09:46:49 -08:00
|
|
|
mkdir ../nightly
|
2017-01-09 18:50:39 -08:00
|
|
|
sudo mv ./$FILENAME ../nightly
|