2023-04-23 07:57:55 +00:00
|
|
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
|
|
|
|
|
|
# Version of Gecko to build with
|
2024-03-31 06:07:17 +00:00
|
|
|
GECKO_VERSION_MAC="115.9.1esr"
|
|
|
|
GECKO_VERSION_LINUX="115.9.1esr"
|
|
|
|
GECKO_VERSION_WIN="115.9.1esr"
|
2023-11-05 22:15:32 +00:00
|
|
|
RUST_VERSION=1.69.0
|
2023-04-23 07:57:55 +00:00
|
|
|
|
|
|
|
# URL prefix for custom builds of Firefox components
|
|
|
|
custom_components_url="https://download.zotero.org/dev/"
|
|
|
|
|
|
|
|
APP_NAME="Zotero"
|
|
|
|
APP_ID="zotero\@zotero.org"
|
|
|
|
|
|
|
|
# Whether to sign builds
|
|
|
|
SIGN=0
|
|
|
|
|
|
|
|
# OS X Developer ID certificate information
|
|
|
|
DEVELOPER_ID=F0F1FE48DB909B263AC51C8215374D87FDC12121
|
|
|
|
# Keychain and keychain password, if not building via the GUI
|
|
|
|
KEYCHAIN=""
|
|
|
|
KEYCHAIN_PASSWORD=""
|
|
|
|
NOTARIZATION_BUNDLE_ID=""
|
|
|
|
NOTARIZATION_USER=""
|
2023-06-19 10:38:34 +00:00
|
|
|
NOTARIZATION_TEAM_ID=""
|
2023-04-23 07:57:55 +00:00
|
|
|
NOTARIZATION_PASSWORD=""
|
|
|
|
|
|
|
|
# Paths for Windows installer build
|
2023-05-18 09:40:29 +00:00
|
|
|
NSIS_DIR='C:\Program Files (x86)\NSIS\'
|
2023-04-23 07:57:55 +00:00
|
|
|
|
2024-01-23 06:59:34 +00:00
|
|
|
SIGNTOOL_DELAY=5
|
2023-04-23 07:57:55 +00:00
|
|
|
|
|
|
|
# Directory for unpacked binaries
|
|
|
|
STAGE_DIR="$DIR/staging"
|
|
|
|
# Directory for packed binaries
|
|
|
|
DIST_DIR="$DIR/dist"
|
|
|
|
|
|
|
|
SOURCE_REPO_URL="https://github.com/zotero/zotero"
|
|
|
|
S3_BUCKET="zotero-download"
|
|
|
|
S3_CI_ZIP_PATH="ci/client"
|
|
|
|
S3_DIST_PATH="client"
|
|
|
|
|
|
|
|
DEPLOY_HOST="deploy.zotero"
|
|
|
|
DEPLOY_PATH="www/www-production/public/download/client/manifests"
|
|
|
|
DEPLOY_CMD="ssh $DEPLOY_HOST update-site-files"
|
|
|
|
|
|
|
|
BUILD_PLATFORMS=""
|
|
|
|
NUM_INCREMENTALS=6
|
|
|
|
|
|
|
|
if [ "`uname`" = "Darwin" ]; then
|
|
|
|
shopt -s expand_aliases
|
|
|
|
fi
|
|
|
|
|
2023-05-20 11:20:28 +00:00
|
|
|
if [ "`uname -o 2> /dev/null`" = "Cygwin" ]; then
|
|
|
|
export WIN_NATIVE=1
|
|
|
|
else
|
|
|
|
export WIN_NATIVE=0
|
|
|
|
fi
|
|
|
|
|
2023-04-23 07:57:55 +00:00
|
|
|
# Make utilities (mar/mbsdiff) available in the path
|
|
|
|
PATH="$DIR/xulrunner/bin:$PATH"
|
|
|
|
|
|
|
|
if [ -f "$DIR/config-custom.sh" ]; then
|
|
|
|
. "$DIR/config-custom.sh"
|
|
|
|
fi
|
|
|
|
|
|
|
|
unset DIR
|