mirror of
https://github.com/zotero/zotero.git
synced 2026-08-28 05:25:31 +00:00
Split build_and_deploy into build_for_deploy (builds, uploads to S3, rsyncs manifests) and a deploy script in client-downloads (updates updates JSON, updates incrementals, runs deploy command). Release scripts support -b flag for build-only (deploy later manually). Beta/dev/test scripts build and deploy automatically via SSH. Move incrementals files from S3 to deploy server. Update DEPLOY_PATH to root of client-downloads so manifests and deploy script paths are derived from it.
29 lines
814 B
Bash
Executable file
29 lines
814 B
Bash
Executable file
#!/bin/bash
|
|
set -euo pipefail
|
|
|
|
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
APP_ROOT_DIR="$(dirname "$SCRIPT_DIR")"
|
|
ROOT_DIR="$(dirname "$(dirname "$SCRIPT_DIR")")"
|
|
. "$APP_ROOT_DIR/config.sh"
|
|
|
|
CHANNEL="dev"
|
|
BRANCH="main"
|
|
export SAFARI_APPEX="$ROOT_DIR/../safari-app-extension-builds/dev/ZoteroSafariExtension.appex"
|
|
|
|
cd "$SCRIPT_DIR"
|
|
./check_requirements
|
|
|
|
hash=`./get_repo_branch_hash $BRANCH`
|
|
source_dir=`./get_commit_files $hash`
|
|
build_dir=`mktemp -d`
|
|
|
|
function cleanup {
|
|
rm -rf "$source_dir"
|
|
rm -rf "$build_dir"
|
|
}
|
|
trap cleanup EXIT
|
|
|
|
./prepare_build -s "$source_dir" -o "$build_dir" -c $CHANNEL -m $hash
|
|
VERSION="`cat \"$build_dir/version\"`"
|
|
./build_for_deploy -d "$build_dir" -p $BUILD_PLATFORMS -c $CHANNEL -i 1
|
|
ssh $DEPLOY_HOST "$DEPLOY_PATH/deploy" $CHANNEL "$VERSION" $BUILD_PLATFORMS
|