* fix(macos): workaround App Store Connect dSYM validation bug for App.framework * trigger ci * test: mock device and package plugins and increase timeout - Increase sync loop timeout in thread workspace binding test to avoid flakiness - Mock device_info and package_info plugins for gateway runtime tests - Update pubspec.yaml version * test: fix missing plugin in runtime_controllers_settings_account_test * build: make sync-version.sh auto-increment build number --------- Co-authored-by: Haitao Pan <manbuzhe2009@qq.com>
30 lines
900 B
Bash
Executable File
30 lines
900 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
if [ -n "$1" ]; then
|
|
TARGET_VERSION="$1"
|
|
else
|
|
# Extract current version from pubspec.yaml
|
|
CURRENT_VERSION=$(grep "^version: " pubspec.yaml | awk '{print $2}')
|
|
|
|
if [[ "$CURRENT_VERSION" == *"+"* ]]; then
|
|
BASE_VERSION=$(echo "$CURRENT_VERSION" | cut -d'+' -f1)
|
|
BUILD_NUM=$(echo "$CURRENT_VERSION" | cut -d'+' -f2)
|
|
NEXT_BUILD_NUM=$((BUILD_NUM + 1))
|
|
TARGET_VERSION="${BASE_VERSION}+${NEXT_BUILD_NUM}"
|
|
else
|
|
TARGET_VERSION="${CURRENT_VERSION}+1"
|
|
fi
|
|
fi
|
|
DATE=$(date +%Y-%m-%d)
|
|
COMMIT=$(git rev-parse --short HEAD)
|
|
|
|
# Update version in pubspec.yaml
|
|
sed -i.bak -e "s/^version: .*/version: ${TARGET_VERSION}/" \
|
|
-e "s/^build-date: .*/build-date: ${DATE}/" \
|
|
-e "s/^build-id: .*/build-id: ${COMMIT}/" pubspec.yaml
|
|
|
|
rm -f pubspec.yaml.bak
|
|
|
|
echo "Updated pubspec.yaml to version=${TARGET_VERSION}, build-date=${DATE}, build-id=${COMMIT}"
|