mirror of
https://github.com/Chia-Network/chia-blockchain.git
synced 2026-08-24 10:05:29 -05:00
* Use #!/usr/bin/env bash * Update setup-poetry.sh * Use #!/usr/bin/env bash for shebang * fix up typo for leading space * For consistency fix up a few other scripts
126 lines
3.9 KiB
Bash
126 lines
3.9 KiB
Bash
#!/usr/bin/env bash
|
|
|
|
set -o errexit -o nounset
|
|
|
|
git status
|
|
git submodule
|
|
|
|
# If the env variable NOTARIZE and the username and password variables are
|
|
# set, this will attempt to Notarize the signed DMG.
|
|
|
|
if [ ! "$CHIA_INSTALLER_VERSION" ]; then
|
|
echo "WARNING: No environment variable CHIA_INSTALLER_VERSION set. Using 0.0.0."
|
|
CHIA_INSTALLER_VERSION="0.0.0"
|
|
fi
|
|
echo "Chia Installer Version is: $CHIA_INSTALLER_VERSION"
|
|
|
|
echo "Installing npm utilities"
|
|
cd npm_macos || exit 1
|
|
npm ci
|
|
NPM_PATH="$(pwd)/node_modules/.bin"
|
|
cd .. || exit 1
|
|
|
|
echo "Create dist/"
|
|
sudo rm -rf dist
|
|
mkdir dist
|
|
|
|
echo "Create executables with pyinstaller"
|
|
SPEC_FILE=$(python -c 'import sys; from pathlib import Path; path = Path(sys.argv[1]); print(path.absolute().as_posix())' "pyinstaller.spec")
|
|
pyinstaller --log-level=INFO "$SPEC_FILE"
|
|
LAST_EXIT_CODE=$?
|
|
if [ "$LAST_EXIT_CODE" -ne 0 ]; then
|
|
echo >&2 "pyinstaller failed!"
|
|
exit $LAST_EXIT_CODE
|
|
fi
|
|
|
|
# Creates a directory of licenses
|
|
echo "Building pip and NPM license directory"
|
|
pwd
|
|
bash ./build_license_directory.sh
|
|
|
|
# Remove rpaths on some libraries to homebrew directories that
|
|
# appears sometimes m-series chips (prefer bundled from @loader_path/..)
|
|
bash ./remove_brew_rpaths.sh
|
|
|
|
cp -r dist/daemon ../chia-blockchain-gui/packages/gui
|
|
# Change to the gui package
|
|
cd ../chia-blockchain-gui/packages/gui || exit 1
|
|
|
|
# sets the version for chia-blockchain in package.json
|
|
brew install jq
|
|
cp package.json package.json.orig
|
|
jq --arg VER "$CHIA_INSTALLER_VERSION" '.version=$VER' package.json >temp.json && mv temp.json package.json
|
|
|
|
echo "Building macOS Electron app"
|
|
OPT_ARCH="--x64"
|
|
if [ "$(arch)" = "arm64" ]; then
|
|
OPT_ARCH="--arm64"
|
|
fi
|
|
PRODUCT_NAME="Chia"
|
|
if [ "$NOTARIZE" == true ]; then
|
|
echo "Setting credentials for signing"
|
|
export CSC_LINK=$APPLE_DEV_ID_APP
|
|
export CSC_KEY_PASSWORD=$APPLE_DEV_ID_APP_PASS
|
|
export PUBLISH_FOR_PULL_REQUEST=true
|
|
export CSC_FOR_PULL_REQUEST=true
|
|
else
|
|
echo "Not on ci or no secrets so not signing"
|
|
export CSC_IDENTITY_AUTO_DISCOVERY=false
|
|
fi
|
|
echo "${NPM_PATH}/electron-builder" build --mac "${OPT_ARCH}" \
|
|
--config.productName="$PRODUCT_NAME" \
|
|
--config.mac.minimumSystemVersion="11" \
|
|
--config ../../../build_scripts/electron-builder.json
|
|
"${NPM_PATH}/electron-builder" build --mac "${OPT_ARCH}" \
|
|
--config.productName="$PRODUCT_NAME" \
|
|
--config.mac.minimumSystemVersion="11" \
|
|
--config ../../../build_scripts/electron-builder.json
|
|
LAST_EXIT_CODE=$?
|
|
ls -l dist/mac*/chia.app/Contents/Resources/app.asar
|
|
|
|
# reset the package.json to the original
|
|
mv package.json.orig package.json
|
|
|
|
if [ "$LAST_EXIT_CODE" -ne 0 ]; then
|
|
echo >&2 "electron-builder failed!"
|
|
exit $LAST_EXIT_CODE
|
|
fi
|
|
|
|
mv dist/* ../../../build_scripts/dist/
|
|
cd ../../../build_scripts || exit 1
|
|
|
|
mkdir final_installer
|
|
ORIGINAL_DMG_NAME="chia-${CHIA_INSTALLER_VERSION}.dmg"
|
|
if [ "$(arch)" = "arm64" ]; then
|
|
DMG_NAME=Chia-${CHIA_INSTALLER_VERSION}-arm64.dmg
|
|
else
|
|
# NOTE: when coded, this changes the case to Chia
|
|
DMG_NAME=Chia-${CHIA_INSTALLER_VERSION}.dmg
|
|
fi
|
|
mv dist/"$ORIGINAL_DMG_NAME" final_installer/"$DMG_NAME"
|
|
|
|
ls -lh final_installer
|
|
|
|
if [ "$NOTARIZE" == true ]; then
|
|
echo "Notarize $DMG_NAME on ci"
|
|
cd final_installer || exit 1
|
|
xcrun notarytool submit --wait --apple-id "$APPLE_NOTARIZE_USERNAME" --password "$APPLE_NOTARIZE_PASSWORD" --team-id "$APPLE_TEAM_ID" "$DMG_NAME"
|
|
xcrun stapler staple "$DMG_NAME"
|
|
echo "Notarization step complete"
|
|
else
|
|
echo "Not on ci or no secrets so skipping Notarize"
|
|
fi
|
|
|
|
# Notes on how to manually notarize
|
|
#
|
|
# Ask for username and password. password should be an app specific password.
|
|
# Generate app specific password https://support.apple.com/en-us/HT204397
|
|
# xcrun notarytool submit --wait --apple-id username --password password --team-id team-id Chia-0.1.X.dmg
|
|
# Wait until the command returns a success message
|
|
#
|
|
# Once that is successful, execute the following command":
|
|
# xcrun stapler staple Chia-0.1.X.dmg
|
|
#
|
|
# Validate DMG:
|
|
# xcrun stapler validate Chia-0.1.X.dmg
|