12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295 |
- #!/bin/bash
- ##################################################################################
- # Custom build tool for Realm Objective-C binding.
- #
- # (C) Copyright 2011-2022 by realm.io.
- ##################################################################################
- # Warning: pipefail is not a POSIX compatible option, but on macOS it works just fine.
- # macOS uses a POSIX complain version of bash as /bin/sh, but apparently it does
- # not strip away this feature. Also, this will fail if somebody forces the script
- # to be run with zsh.
- set -o pipefail
- set -e
- readonly source_root="$(dirname "$0")"
- : "${REALM_CORE_VERSION:=$(sed -n 's/^REALM_CORE_VERSION=\(.*\)$/\1/p' "${source_root}/dependencies.list")}" # set to "current" to always use the current build
- # You can override the xcmode used
- : "${XCMODE:=xcodebuild}" # must be one of: xcodebuild (default), xcpretty, xctool
- # Provide a fallback value for TMPDIR, relevant for Xcode Bots
- : "${TMPDIR:=$(getconf DARWIN_USER_TEMP_DIR)}"
- PATH=/usr/libexec:$PATH
- if [ -n "${JENKINS_HOME}" ]; then
- XCPRETTY_PARAMS=(--no-utf --report junit --output build/reports/junit.xml)
- CODESIGN_PARAMS=(CODE_SIGN_IDENTITY='' CODE_SIGNING_REQUIRED=NO CODE_SIGNING_ALLOWED=NO)
- fi
- usage() {
- cat <<EOF
- Usage: sh $0 command [argument]
- command:
- clean: clean up/remove all generated files
- download-core: downloads core library (binary version)
- build: builds all iOS and macOS frameworks
- ios-static: builds fat iOS static framework
- ios-dynamic: builds iOS dynamic frameworks
- ios-swift: builds RealmSwift frameworks for iOS
- watchos: builds watchOS framwork
- watchos-swift: builds RealmSwift framework for watchOS
- tvos: builds tvOS framework
- tvos-swift: builds RealmSwift framework for tvOS
- osx: builds macOS framework
- osx-swift: builds RealmSwift framework for macOS
- xcframework [plats]: builds xcframeworks for Realm and RealmSwift for given platforms
- analyze-osx: analyzes macOS framework
- test: tests all iOS and macOS frameworks
- test-all: tests all iOS and macOS frameworks in both Debug and Release configurations
- test-ios-static: tests static iOS framework on 32-bit and 64-bit simulators
- test-ios-dynamic: tests dynamic iOS framework on 32-bit and 64-bit simulators
- test-ios-swift: tests RealmSwift iOS framework on 32-bit and 64-bit simulators
- test-ios-devices: tests ObjC & Swift iOS frameworks on all attached iOS devices
- test-ios-devices-objc: tests ObjC iOS framework on all attached iOS devices
- test-ios-devices-swift: tests Swift iOS framework on all attached iOS devices
- test-tvos: tests tvOS framework
- test-tvos-swift: tests RealmSwift tvOS framework
- test-tvos-devices: tests ObjC & Swift tvOS frameworks on all attached tvOS devices
- test-osx: tests macOS framework
- test-osx-swift: tests RealmSwift macOS framework
- test-catalyst: tests Mac Catalyst framework
- test-catalyst-swift: tests RealmSwift Mac Catalyst framework
- test-swiftpm: tests ObjC and Swift macOS frameworks via SwiftPM
- test-swiftui-ios: tests SwiftUI framework UI tests
- test-swiftui-server-osx: tests Server Sync in SwiftUI
- verify: verifies docs, osx, osx-swift, ios-static, ios-dynamic, ios-swift, ios-device, swiftui-ios in both Debug and Release configurations, swiftlint
- verify-osx-object-server: downloads the Realm Object Server and runs the Objective-C and Swift integration tests
- docs: builds docs in docs/output
- examples: builds all examples
- examples-ios: builds all static iOS examples
- examples-ios-swift: builds all Swift iOS examples
- examples-osx: builds all macOS examples
- get-version: get the current version
- set-version version: set the version
- cocoapods-setup: download realm-core and create a stub RLMPlatform.h file to enable building via CocoaPods
- argument:
- version: version in the x.y.z format
- environment variables:
- XCMODE: xcodebuild (default), xcpretty or xctool
- CONFIGURATION: Debug or Release (default)
- REALM_CORE_VERSION: version in x.y.z format or "current" to use local build
- REALM_EXTRA_BUILD_ARGUMENTS: additional arguments to pass to the build tool
- REALM_XCODE_VERSION: the version number of Xcode to use (e.g.: 13.3.1)
- REALM_XCODE_OLDEST_VERSION: the version number of oldest available Xcode to use (e.g.: 12.4)
- REALM_XCODE_LATEST_VERSION: the version number of latest available Xcode to use (e.g.: 13.3.1)
- EOF
- }
- ######################################
- # Xcode Helpers
- ######################################
- xcode_version_major() {
- echo "${REALM_XCODE_VERSION%%.*}"
- }
- xcode() {
- mkdir -p build/DerivedData
- CMD="xcodebuild -IDECustomDerivedDataLocation=build/DerivedData"
- echo "Building with command: $CMD $*"
- xcodebuild -IDECustomDerivedDataLocation=build/DerivedData "$@"
- }
- xc() {
- # Logs xcodebuild output in realtime
- : "${NSUnbufferedIO:=YES}"
- args=("SWIFT_VERSION=$REALM_SWIFT_VERSION" $REALM_EXTRA_BUILD_ARGUMENTS)
- if [[ "$XCMODE" == "xcodebuild" ]]; then
- xcode "$@" "${args[@]}"
- elif [[ "$XCMODE" == "xcpretty" ]]; then
- mkdir -p build
- xcode "$@" "${args[@]}" | tee build/build.log | xcpretty -c "${XCPRETTY_PARAMS[@]}" || {
- echo "The raw xcodebuild output is available in build/build.log"
- exit 1
- }
- elif [[ "$XCMODE" == "xctool" ]]; then
- xctool "$@" "${args[@]}"
- fi
- }
- xctest() {
- local scheme="$1"
- xc -scheme "$scheme" "${@:2}" build-for-testing
- xc -scheme "$scheme" "${@:2}" test-without-building
- }
- build_combined() {
- local scheme="$1"
- local module_name="$2"
- local os="$3"
- local simulator="$4"
- local scope_suffix="$5"
- local version_suffix="$6"
- local config="$CONFIGURATION"
- local os_name=""
- if [[ "$os" == "iphoneos" ]]; then
- os_name="ios"
- elif [[ "$os" == "watchos" ]]; then
- os_name="$os"
- elif [[ "$os" == "appletvos" ]]; then
- os_name="tvos"
- fi
- # Derive build paths
- local build_products_path="build/DerivedData/Realm/Build/Products"
- local product_name="$module_name.framework"
- local os_path="$build_products_path/$config-$os$scope_suffix/$product_name"
- local simulator_path="$build_products_path/$config-$simulator$scope_suffix/$product_name"
- local out_path="build/$os_name$scope_suffix$version_suffix"
- local xcframework_path="$out_path/$module_name.xcframework"
- # Build for each platform
- xc -scheme "$scheme" -configuration "$config" -sdk "$os" build
- xc -scheme "$scheme" -configuration "$config" -sdk "$simulator" build ONLY_ACTIVE_ARCH=NO
- # Create the xcframework
- rm -rf "$xcframework_path"
- xcodebuild -create-xcframework -allow-internal-distribution -output "$xcframework_path" \
- -framework "$os_path" -framework "$simulator_path"
- }
- copy_realm_framework() {
- local platform="$1"
- rm -rf "build/$platform/swift-$REALM_XCODE_VERSION/Realm.xcframework"
- cp -R "build/$platform/Realm.xcframework" "build/$platform/swift-$REALM_XCODE_VERSION"
- }
- clean_retrieve() {
- mkdir -p "$2"
- rm -rf "$2/$3"
- cp -R "$1" "$2"
- }
- move_to_clean_dir() {
- rm -rf "$2"
- mkdir -p "$2"
- mv "$1" "$2"
- }
- test_ios_static() {
- xctest 'Realm iOS static' -configuration "$CONFIGURATION" -sdk iphonesimulator -destination "$1"
- }
- plist_get() {
- /usr/libexec/PlistBuddy -c "Print :$2" "$1" 2> /dev/null
- }
- ######################################
- # Device Test Helper
- ######################################
- test_devices() {
- local serial_numbers=()
- local awk_script="
- /^ +Vendor ID: / { is_apple = 0; }
- /^ +Vendor ID: 0x05[aA][cC] / { is_apple = 1; }
- /^ +Serial Number: / {
- if (is_apple) {
- match(\$0, /^ +Serial Number: /);
- print substr(\$0, RLENGTH + 1);
- }
- }
- "
- local serial_numbers_text=$(/usr/sbin/system_profiler SPUSBDataType | /usr/bin/awk "$awk_script")
- while read -r number; do
- if [[ "$number" != "" ]]; then
- serial_numbers+=("$number")
- fi
- done <<< "$serial_numbers_text"
- if [[ ${#serial_numbers[@]} == 0 ]]; then
- echo "At least one iOS/tvOS device must be connected to this computer to run device tests"
- if [ -z "${JENKINS_HOME}" ]; then
- # Don't fail if running locally and there's no device
- exit 0
- fi
- exit 1
- fi
- local sdk="$1"
- local scheme="$2"
- local configuration="$3"
- local failed=0
- for device in "${serial_numbers[@]}"; do
- xc -scheme "$scheme" -configuration "$configuration" -destination "id=$device" -sdk "$sdk" test || failed=1
- done
- return $failed
- }
- ######################################
- # Docs
- ######################################
- build_docs() {
- local language="$1"
- local version=$(sh build.sh get-version)
- local xcodebuild_arguments="--objc,Realm/Realm.h,--,-x,objective-c,-isysroot,$(xcrun --show-sdk-path),-I,$(pwd)"
- local module="Realm"
- local objc="--objc"
- if [[ "$language" == "swift" ]]; then
- xcodebuild_arguments="-scheme,RealmSwift"
- module="RealmSwift"
- objc=""
- fi
- touch Realm/RLMPlatform.h # jazzy will fail if it can't find all public header files
- jazzy \
- "${objc}" \
- --clean \
- --author Realm \
- --author_url https://docs.mongodb.com/realm-sdks \
- --github_url https://github.com/realm/realm-swift \
- --github-file-prefix "https://github.com/realm/realm-swift/tree/v${version}" \
- --module-version "${version}" \
- --xcodebuild-arguments "${xcodebuild_arguments}" \
- --module "${module}" \
- --root-url "https://docs.mongodb.com/realm-sdks/${language}/${version}/" \
- --output "docs/${language}_output" \
- --head "$(cat docs/custom_head.html)" \
- --exclude 'RealmSwift/Impl/*'
- rm Realm/RLMPlatform.h
- }
- ######################################
- # Input Validation
- ######################################
- if [ "$#" -eq 0 ] || [ "$#" -gt 3 ]; then
- usage
- exit 1
- fi
- ######################################
- # Variables
- ######################################
- COMMAND="$1"
- # Use Debug config if command ends with -debug, otherwise default to Release
- case "$COMMAND" in
- *-debug)
- COMMAND="${COMMAND%-debug}"
- CONFIGURATION="Debug"
- ;;
- esac
- export CONFIGURATION=${CONFIGURATION:-Release}
- # Pre-choose Xcode and Swift versions for those operations that do not set them
- REALM_XCODE_VERSION=${xcode_version:-$REALM_XCODE_VERSION}
- REALM_SWIFT_VERSION=${swift_version:-$REALM_SWIFT_VERSION}
- source "${source_root}/scripts/swift-version.sh"
- set_xcode_and_swift_versions
- ######################################
- # Commands
- ######################################
- case "$COMMAND" in
- ######################################
- # Clean
- ######################################
- "clean")
- find . -type d -name build -exec rm -r "{}" +
- exit 0
- ;;
- ######################################
- # Dependencies
- ######################################
- "download-core")
- sh scripts/download-core.sh
- exit 0
- ;;
- "setup-baas")
- ruby Realm/ObjectServerTests/setup_baas.rb
- exit 0
- ;;
- "prelaunch-simulator")
- if [ -z "$REALM_SKIP_PRELAUNCH" ]; then
- sh "${source_root}/scripts/reset-simulators.sh" "$1"
- fi
- ;;
- ######################################
- # Building
- ######################################
- "build")
- sh build.sh ios-static
- sh build.sh ios-dynamic
- sh build.sh ios-swift
- sh build.sh watchos
- sh build.sh watchos-swift
- sh build.sh tvos
- sh build.sh tvos-swift
- sh build.sh osx
- sh build.sh osx-swift
- exit 0
- ;;
- "ios-static")
- build_combined 'Realm iOS static' Realm iphoneos iphonesimulator "-static"
- exit 0
- ;;
- "ios-dynamic")
- build_combined Realm Realm iphoneos iphonesimulator
- exit 0
- ;;
- "ios-swift")
- sh build.sh ios-dynamic
- build_combined RealmSwift RealmSwift iphoneos iphonesimulator '' "/swift-$REALM_XCODE_VERSION"
- copy_realm_framework ios
- exit 0
- ;;
- "watchos")
- build_combined Realm Realm watchos watchsimulator
- exit 0
- ;;
- "watchos-swift")
- sh build.sh watchos
- build_combined RealmSwift RealmSwift watchos watchsimulator '' "/swift-$REALM_XCODE_VERSION"
- copy_realm_framework watchos
- exit 0
- ;;
- "tvos")
- build_combined Realm Realm appletvos appletvsimulator
- exit 0
- ;;
- "tvos-swift")
- sh build.sh tvos
- build_combined RealmSwift RealmSwift appletvos appletvsimulator '' "/swift-$REALM_XCODE_VERSION"
- copy_realm_framework tvos
- exit 0
- ;;
- "osx")
- xc -scheme Realm -configuration "$CONFIGURATION"
- clean_retrieve "build/DerivedData/Realm/Build/Products/$CONFIGURATION/Realm.framework" "build/osx" "Realm.framework"
- exit 0
- ;;
- "osx-swift")
- sh build.sh osx
- xc -scheme RealmSwift -configuration "$CONFIGURATION" build
- destination="build/osx/swift-$REALM_XCODE_VERSION"
- clean_retrieve "build/DerivedData/Realm/Build/Products/$CONFIGURATION/RealmSwift.framework" "$destination" "RealmSwift.framework"
- clean_retrieve "build/osx/Realm.framework" "$destination" "Realm.framework"
- exit 0
- ;;
- "swiftui")
- xc -scheme SwiftUITestHost -configuration $CONFIGURATION -sdk iphonesimulator build
- ;;
- "catalyst")
- export REALM_SDKROOT=iphoneos
- xc -scheme Realm -configuration "$CONFIGURATION" -destination variant='Mac Catalyst'
- clean_retrieve "build/DerivedData/Realm/Build/Products/$CONFIGURATION-maccatalyst/Realm.framework" "build/catalyst" "Realm.framework"
- ;;
- "catalyst-swift")
- sh build.sh catalyst
- export REALM_SDKROOT=iphoneos
- xc -scheme 'RealmSwift' -configuration "$CONFIGURATION" -destination variant='Mac Catalyst' build
- destination="build/catalyst/swift-$REALM_XCODE_VERSION"
- clean_retrieve "build/DerivedData/Realm/Build/Products/$CONFIGURATION-maccatalyst/RealmSwift.framework" "$destination" "RealmSwift.framework"
- clean_retrieve "build/catalyst/Realm.framework" "$destination" "Realm.framework"
- ;;
- "xcframework")
- # Build all of the requested frameworks
- shift
- PLATFORMS="${*:-osx ios watchos tvos catalyst}"
- for platform in $PLATFORMS; do
- sh build.sh "$platform-swift"
- done
- # Assemble them into xcframeworks
- rm -rf build/*.xcframework
- find build/DerivedData/Realm/Build/Products -name 'Realm.framework' \
- | grep -v '\-static' \
- | sed 's/.*/-framework &/' \
- | xargs xcodebuild -create-xcframework -allow-internal-distribution -output build/Realm.xcframework
- find build/DerivedData/Realm/Build/Products -name 'RealmSwift.framework' \
- | sed 's/.*/-framework &/' \
- | xargs xcodebuild -create-xcframework -allow-internal-distribution -output build/RealmSwift.xcframework
- # Because we have a module named Realm and a type named Realm we need to manually resolve the naming
- # collisions that are happening. These collisions create a red herring which tells the user the xcframework
- # was compiled with an older Swift version and is not compatible with the current compiler.
- find build/RealmSwift.xcframework -name "*.swiftinterface" -exec sed -i '' 's/Realm\.//g' {} \; \
- -exec sed -i '' 's/import Private/import Realm.Private/g' {} \; \
- -exec sed -i '' 's/RealmSwift.Configuration/RealmSwift.Realm.Configuration/g' {} \; \
- -exec sed -i '' 's/extension Configuration/extension Realm.Configuration/g' {} \; \
- -exec sed -i '' 's/RealmSwift.Error[[:>:]]/RealmSwift.Realm.Error/g' {} \; \
- -exec sed -i '' 's/extension Error/extension Realm.Error/g' {} \; \
- -exec sed -i '' 's/RealmSwift.AsyncOpenTask/RealmSwift.Realm.AsyncOpenTask/g' {} \; \
- -exec sed -i '' 's/RealmSwift.UpdatePolicy/RealmSwift.Realm.UpdatePolicy/g' {} \; \
- -exec sed -i '' 's/RealmSwift.Notification[[:>:]]/RealmSwift.Realm.Notification/g' {} \; \
- -exec sed -i '' 's/RealmSwift.OpenBehavior/RealmSwift.Realm.OpenBehavior/g' {} \; \
- -exec sed -i '' 's/τ_1_0/V/g' {} \; # Generics will use τ_1_0 which needs to be changed to the correct type name.
- exit 0
- ;;
- "verify-xcframework-evolution-mode")
- export REALM_EXTRA_BUILD_ARGUMENTS="$REALM_EXTRA_BUILD_ARGUMENTS REALM_BUILD_LIBRARY_FOR_DISTRIBUTION=YES"
- # set the Xcode version to the oldest
- export REALM_XCODE_VERSION=$REALM_XCODE_OLDEST_VERSION
- unset REALM_SWIFT_VERSION
- sh build.sh xcframework osx
- # copy the xcframework to the testing target
- rm -rf examples/installation/xcframework-evolution
- mkdir examples/installation/xcframework-evolution
- cp -cr build/*.xcframework examples/installation/xcframework-evolution
- export REALM_XCODE_VERSION=$REALM_XCODE_LATEST_VERSION
- unset REALM_SWIFT_VERSION
- cd examples/installation
- sh build.sh "test-osx-swift-xcframework"
- exit 0
- ;;
- ######################################
- # Analysis
- ######################################
- "analyze-osx")
- xc -scheme Realm -configuration "$CONFIGURATION" analyze
- exit 0
- ;;
- ######################################
- # Testing
- ######################################
- "test")
- set +e # Run both sets of tests even if the first fails
- failed=0
- sh build.sh test-ios-static || failed=1
- sh build.sh test-ios-dynamic || failed=1
- sh build.sh test-ios-swift || failed=1
- sh build.sh test-ios-devices || failed=1
- sh build.sh test-tvos-devices || failed=1
- sh build.sh test-osx || failed=1
- sh build.sh test-osx-swift || failed=1
- sh build.sh test-catalyst || failed=1
- sh build.sh test-catalyst-swift || failed=1
- exit $failed
- ;;
- "test-all")
- set +e
- failed=0
- sh build.sh test || failed=1
- sh build.sh test-debug || failed=1
- exit $failed
- ;;
- "test-ios-static")
- test_ios_static "name=iPhone 8"
- exit 0
- ;;
- "test-ios-dynamic")
- xctest Realm -configuration "$CONFIGURATION" -sdk iphonesimulator -destination 'name=iPhone 8'
- exit 0
- ;;
- "test-ios-swift")
- xctest RealmSwift -configuration "$CONFIGURATION" -sdk iphonesimulator -destination 'name=iPhone 8'
- exit 0
- ;;
- "test-ios-devices")
- failed=0
- trap "failed=1" ERR
- sh build.sh test-ios-devices-objc
- sh build.sh test-ios-devices-swift
- exit $failed
- ;;
- "test-ios-devices-objc")
- test_devices iphoneos "Realm" "$CONFIGURATION"
- exit $?
- ;;
- "test-ios-devices-swift")
- test_devices iphoneos "RealmSwift" "$CONFIGURATION"
- exit $?
- ;;
- "test-tvos")
- destination="Apple TV"
- xctest Realm -configuration "$CONFIGURATION" -sdk appletvsimulator -destination "name=$destination"
- exit $?
- ;;
- "test-tvos-swift")
- destination="Apple TV"
- xctest RealmSwift -configuration "$CONFIGURATION" -sdk appletvsimulator -destination "name=$destination"
- exit $?
- ;;
- "test-tvos-devices")
- test_devices appletvos TestHost "$CONFIGURATION"
- ;;
- "test-osx")
- COVERAGE_PARAMS=()
- if [[ "$CONFIGURATION" == "Debug" ]]; then
- COVERAGE_PARAMS=(GCC_GENERATE_TEST_COVERAGE_FILES=YES GCC_INSTRUMENT_PROGRAM_FLOW_ARCS=YES)
- fi
- xctest Realm -configuration "$CONFIGURATION" "${COVERAGE_PARAMS[@]}" -destination "platform=macOS,arch=$(uname -m)"
- exit 0
- ;;
- "test-osx-swift")
- xctest RealmSwift -configuration $CONFIGURATION -destination "platform=macOS,arch=$(uname -m)"
- exit 0
- ;;
- "test-osx-object-server")
- xctest 'Object Server Tests' -configuration "$CONFIGURATION" -sdk macosx -destination "platform=macOS,arch=$(uname -m)"
- exit 0
- ;;
- test-swiftpm-ios)
- cd examples/installation
- sh build.sh test-ios-swift-spm
- exit 0
- ;;
- test-swiftpm*)
- SANITIZER=$(echo "$COMMAND" | cut -d - -f 3)
- # FIXME: throwing an exception from a property getter corrupts Swift's
- # runtime exclusivity checking state. Unfortunately, this is something
- # we do a lot in tests.
- SWIFT_TEST_FLAGS=(-Xcc -g0 -Xswiftc -enforce-exclusivity=none)
- if [ -n "$SANITIZER" ]; then
- SWIFT_TEST_FLAGS+=(--sanitize "$SANITIZER")
- export ASAN_OPTIONS='check_initialization_order=true:detect_stack_use_after_return=true'
- fi
- xcrun swift package resolve
- xcrun swift test --configuration "$(echo "$CONFIGURATION" | tr "[:upper:]" "[:lower:]")" "${SWIFT_TEST_FLAGS[@]}"
- exit 0
- ;;
- "test-swiftui-ios")
- xctest 'SwiftUITestHost' -configuration "$CONFIGURATION" -sdk iphonesimulator -destination 'name=iPhone 8'
- exit 0
- ;;
- "test-catalyst")
- export REALM_SDKROOT=iphoneos
- xctest Realm -configuration "$CONFIGURATION" -destination 'platform=macOS,variant=Mac Catalyst' CODE_SIGN_IDENTITY=''
- exit 0
- ;;
- "test-catalyst-swift")
- export REALM_SDKROOT=iphoneos
- xctest RealmSwift -configuration "$CONFIGURATION" -destination 'platform=macOS,variant=Mac Catalyst' CODE_SIGN_IDENTITY=''
- exit 0
- ;;
- "test-swiftui-server-osx")
- xctest 'SwiftUISyncTestHost' -configuration "$CONFIGURATION" -sdk macosx -destination 'platform=macOS'
- exit 0
- ;;
- ######################################
- # Full verification
- ######################################
- "verify")
- sh build.sh verify-cocoapods
- sh build.sh verify-docs
- sh build.sh verify-osx
- sh build.sh verify-osx-debug
- sh build.sh verify-osx-swift
- sh build.sh verify-osx-swift-debug
- sh build.sh verify-ios-static
- sh build.sh verify-ios-static-debug
- sh build.sh verify-ios-dynamic
- sh build.sh verify-ios-dynamic-debug
- sh build.sh verify-ios-swift
- sh build.sh verify-ios-swift-debug
- sh build.sh verify-ios-device-objc
- sh build.sh verify-ios-device-swift
- sh build.sh verify-watchos
- sh build.sh verify-tvos
- sh build.sh verify-tvos-debug
- sh build.sh verify-tvos-device
- sh build.sh verify-swiftlint
- sh build.sh verify-swiftpm
- sh build.sh verify-osx-object-server
- sh build.sh verify-catalyst
- sh build.sh verify-catalyst-swift
- sh build.sh verify-swiftui-ios
- sh build.sh verify-swiftui-server-osx
- ;;
- "verify-cocoapods")
- if [[ -d .git ]]; then
- # Verify the current branch, unless one was already specified in the sha environment variable.
- if [[ -z $sha ]]; then
- export sha=$(git rev-parse --abbrev-ref HEAD)
- fi
- if [[ $(git log -1 '@{push}..') != "" ]] || ! git diff-index --quiet HEAD; then
- echo "WARNING: verify-cocoapods will test the latest revision of $sha found on GitHub."
- echo " Any unpushed local changes will not be tested."
- echo ""
- sleep 1
- fi
- fi
- sh build.sh verify-cocoapods-ios
- sh build.sh verify-cocoapods-ios-dynamic
- sh build.sh verify-cocoapods-osx
- sh build.sh verify-cocoapods-watchos
- # https://github.com/CocoaPods/CocoaPods/issues/7708
- export EXPANDED_CODE_SIGN_IDENTITY=''
- cd examples/installation
- sh build.sh test-ios-objc-cocoapods
- sh build.sh test-ios-objc-cocoapods-dynamic
- sh build.sh test-ios-swift-cocoapods
- sh build.sh test-osx-objc-cocoapods
- sh build.sh test-osx-swift-cocoapods
- sh build.sh test-catalyst-objc-cocoapods
- sh build.sh test-catalyst-objc-cocoapods-dynamic
- sh build.sh test-catalyst-swift-cocoapods
- sh build.sh test-watchos-objc-cocoapods
- sh build.sh test-watchos-swift-cocoapods
- ;;
- verify-cocoapods-ios-dynamic)
- PLATFORM=$(echo "$COMMAND" | cut -d - -f 3)
- # https://github.com/CocoaPods/CocoaPods/issues/7708
- export EXPANDED_CODE_SIGN_IDENTITY=''
- cd examples/installation
- sh build.sh test-ios-objc-cocoapods-dynamic
- ;;
- verify-cocoapods-*)
- PLATFORM=$(echo "$COMMAND" | cut -d - -f 3)
- # https://github.com/CocoaPods/CocoaPods/issues/7708
- export EXPANDED_CODE_SIGN_IDENTITY=''
- cd examples/installation
- sh build.sh "test-$PLATFORM-swift-cocoapods"
- ;;
- "verify-osx-encryption")
- REALM_ENCRYPT_ALL=YES sh build.sh test-osx
- exit 0
- ;;
- "verify-osx")
- REALM_EXTRA_BUILD_ARGUMENTS="$REALM_EXTRA_BUILD_ARGUMENTS -workspace examples/osx/objc/RealmExamples.xcworkspace" \
- sh build.sh test-osx
- sh build.sh examples-osx
- (
- cd examples/osx/objc/build/DerivedData/RealmExamples/Build/Products/$CONFIGURATION
- DYLD_FRAMEWORK_PATH=. ./JSONImport >/dev/null
- )
- exit 0
- ;;
- "verify-osx-swift")
- sh build.sh test-osx-swift
- exit 0
- ;;
- "verify-swiftui-ios")
- sh build.sh test-swiftui-ios
- exit 0
- ;;
- "verify-swiftui-server-osx")
- sh build.sh test-swiftui-server-osx
- exit 0
- ;;
- "verify-osx-swift-evolution")
- export REALM_EXTRA_BUILD_ARGUMENTS="$REALM_EXTRA_BUILD_ARGUMENTS REALM_BUILD_LIBRARY_FOR_DISTRIBUTION=YES"
- sh build.sh test-osx-swift
- exit 0
- ;;
- "verify-ios-static")
- REALM_EXTRA_BUILD_ARGUMENTS="$REALM_EXTRA_BUILD_ARGUMENTS -workspace examples/ios/objc/RealmExamples.xcworkspace" \
- sh build.sh test-ios-static
- sh build.sh examples-ios
- ;;
- "verify-ios-dynamic")
- sh build.sh test-ios-dynamic
- ;;
- "verify-ios-swift")
- REALM_EXTRA_BUILD_ARGUMENTS="$REALM_EXTRA_BUILD_ARGUMENTS -workspace examples/ios/swift/RealmExamples.xcworkspace" \
- sh build.sh test-ios-swift
- sh build.sh examples-ios-swift
- ;;
- "verify-ios-swift-evolution")
- export REALM_EXTRA_BUILD_ARGUMENTS="$REALM_EXTRA_BUILD_ARGUMENTS REALM_BUILD_LIBRARY_FOR_DISTRIBUTION=YES"
- sh build.sh test-ios-swift
- exit 0
- ;;
- "verify-ios-device-objc")
- sh build.sh test-ios-devices-objc
- exit 0
- ;;
- "verify-ios-device-swift")
- sh build.sh test-ios-devices-swift
- exit 0
- ;;
- "verify-docs")
- sh build.sh docs
- for lang in swift objc; do
- undocumented="docs/${lang}_output/undocumented.json"
- if ruby -rjson -e "j = JSON.parse(File.read('docs/${lang}_output/undocumented.json')); exit j['warnings'].length != 0"; then
- echo "Undocumented Realm $lang declarations:"
- cat "$undocumented"
- exit 1
- fi
- done
- exit 0
- ;;
- "verify-watchos")
- sh build.sh watchos-swift
- exit 0
- ;;
- "verify-tvos")
- REALM_EXTRA_BUILD_ARGUMENTS="$REALM_EXTRA_BUILD_ARGUMENTS -workspace examples/tvos/objc/RealmExamples.xcworkspace" \
- sh build.sh test-tvos
- sh build.sh examples-tvos
- exit 0
- ;;
- "verify-tvos-swift")
- REALM_EXTRA_BUILD_ARGUMENTS="$REALM_EXTRA_BUILD_ARGUMENTS -workspace examples/tvos/swift/RealmExamples.xcworkspace" \
- sh build.sh test-tvos-swift
- sh build.sh examples-tvos-swift
- exit 0
- ;;
- "verify-tvos-swift-evolution")
- export REALM_EXTRA_BUILD_ARGUMENTS="$REALM_EXTRA_BUILD_ARGUMENTS REALM_BUILD_LIBRARY_FOR_DISTRIBUTION=YES"
- sh build.sh test-tvos-swift
- exit 0
- ;;
- "verify-tvos-device")
- sh build.sh test-tvos-devices
- exit 0
- ;;
- "verify-swiftlint")
- swiftlint lint --strict
- exit 0
- ;;
- verify-swiftpm*)
- sh build.sh "test-$(echo "$COMMAND" | cut -d - -f 2-)"
- exit 0
- ;;
- "verify-osx-object-server")
- sh build.sh test-osx-object-server
- exit 0
- ;;
- "verify-catalyst")
- sh build.sh test-catalyst
- exit 0
- ;;
- "verify-catalyst-swift")
- sh build.sh test-catalyst-swift
- exit 0
- ;;
- "verify-xcframework")
- sh build.sh xcframework
- exit 0
- ;;
- ######################################
- # Docs
- ######################################
- "docs")
- build_docs objc
- build_docs swift
- exit 0
- ;;
- ######################################
- # Examples
- ######################################
- "examples")
- sh build.sh clean
- sh build.sh prelaunch-simulator
- export REALM_SKIP_PRELAUNCH=1
- sh build.sh examples-ios
- sh build.sh examples-ios-swift
- sh build.sh examples-osx
- sh build.sh examples-tvos
- sh build.sh examples-tvos-swift
- exit 0
- ;;
- "examples-ios")
- workspace="examples/ios/objc/RealmExamples.xcworkspace"
- pod install --project-directory="$workspace/.." --no-repo-update
- examples="Simple TableView Migration Backlink GroupedTableView RACTableView Encryption Draw"
- versions="0 1 2 3 4 5"
- for example in $examples; do
- if [ "$example" = "Migration" ]; then
- # The migration example needs to be built for each schema version to ensure each compiles.
- for version in $versions; do
- xc -workspace "$workspace" -scheme "$example" -configuration "$CONFIGURATION" -sdk iphonesimulator build ARCHS=x86_64 "${CODESIGN_PARAMS[@]}" GCC_PREPROCESSOR_DEFINITIONS="\$(GCC_PREPROCESSOR_DEFINITIONS) SCHEMA_VERSION_$version"
- done
- else
- xc -workspace "$workspace" -scheme "$example" -configuration "$CONFIGURATION" -sdk iphonesimulator build ARCHS=x86_64 "${CODESIGN_PARAMS[@]}"
- fi
- done
- if [ -n "${JENKINS_HOME}" ]; then
- xc -workspace "$workspace" -scheme Extension -configuration "$CONFIGURATION" -sdk iphonesimulator build ARCHS=x86_64 "${CODESIGN_PARAMS[@]}"
- fi
- exit 0
- ;;
- "examples-ios-swift")
- workspace="examples/ios/swift/RealmExamples.xcworkspace"
- if [[ ! -d "$workspace" ]]; then
- workspace="${workspace/swift/swift-$REALM_XCODE_VERSION}"
- fi
- examples="Simple TableView Migration Backlink GroupedTableView Encryption AppClip AppClipParent"
- versions="0 1 2 3 4 5"
- for example in $examples; do
- if [ "$example" = "Migration" ]; then
- # The migration example needs to be built for each schema version to ensure each compiles.
- for version in $versions; do
- xc -workspace "$workspace" -scheme "$example" -configuration "$CONFIGURATION" -sdk iphonesimulator build ARCHS=x86_64 "${CODESIGN_PARAMS[@]}" OTHER_SWIFT_FLAGS="\$(OTHER_SWIFT_FLAGS) -DSCHEMA_VERSION_$version"
- done
- else
- xc -workspace "$workspace" -scheme "$example" -configuration "$CONFIGURATION" -sdk iphonesimulator build ARCHS=x86_64 "${CODESIGN_PARAMS[@]}"
- fi
- done
- exit 0
- ;;
- "examples-osx")
- xc -workspace examples/osx/objc/RealmExamples.xcworkspace \
- -scheme JSONImport -configuration "${CONFIGURATION}" \
- -destination "platform=macOS,arch=$(uname -m)" \
- build "${CODESIGN_PARAMS[@]}"
- ;;
- "examples-tvos")
- workspace="examples/tvos/objc/RealmExamples.xcworkspace"
- examples="DownloadCache PreloadedData"
- for example in $examples; do
- xc -workspace "$workspace" -scheme "$example" -configuration "$CONFIGURATION" -sdk appletvsimulator build ARCHS=x86_64 "${CODESIGN_PARAMS[@]}"
- done
- exit 0
- ;;
- "examples-tvos-swift")
- workspace="examples/tvos/swift/RealmExamples.xcworkspace"
- if [[ ! -d "$workspace" ]]; then
- workspace="${workspace/swift/swift-$REALM_XCODE_VERSION}"
- fi
- examples="DownloadCache PreloadedData"
- for example in $examples; do
- xc -workspace "$workspace" -scheme "$example" -configuration "$CONFIGURATION" -sdk appletvsimulator build ARCHS=x86_64 "${CODESIGN_PARAMS[@]}"
- done
- exit 0
- ;;
- ######################################
- # Versioning
- ######################################
- "get-version")
- plist_get 'Realm/Realm-Info.plist' 'CFBundleShortVersionString'
- exit 0
- ;;
- "set-version")
- realm_version="$2"
- version_files="Realm/Realm-Info.plist"
- if [ -z "$realm_version" ]; then
- echo "You must specify a version."
- exit 1
- fi
- # The bundle version can contain only three groups of digits separated by periods,
- # so strip off any -beta.x tag from the end of the version string.
- bundle_version=$(echo "$realm_version" | cut -d - -f 1)
- for version_file in $version_files; do
- PlistBuddy -c "Set :CFBundleVersion $bundle_version" "$version_file"
- PlistBuddy -c "Set :CFBundleShortVersionString $realm_version" "$version_file"
- done
- sed -i '' "s/^VERSION=.*/VERSION=$realm_version/" dependencies.list
- sed -i '' "s/^let coreVersionStr =.*/let coreVersionStr = \"$REALM_CORE_VERSION\"/" Package.swift
- sed -i '' "s/^let cocoaVersionStr =.*/let cocoaVersionStr = \"$realm_version\"/" Package.swift
- sed -i '' "s/x.y.z Release notes (yyyy-MM-dd)/$realm_version Release notes ($(date '+%Y-%m-%d'))/" CHANGELOG.md
- exit 0
- ;;
- ######################################
- # Continuous Integration
- ######################################
- "ci-pr")
- mkdir -p build/reports
- export REALM_DISABLE_ANALYTICS=1
- export REALM_DISABLE_UPDATE_CHECKER=1
- # FIXME: Re-enable once CI can properly unlock the keychain
- export REALM_DISABLE_METADATA_ENCRYPTION=1
- # Make sure there aren't any lingering server processes from previous jobs
- pkill -9 mongo stitch || true
- # strip off the ios|tvos version specifier, e.g. the last part of: `ios-device-objc-ios8`
- if [[ "$target" =~ ^((ios|tvos)-device(-(objc|swift))?)(-(ios|tvos)[[:digit:]]+)?$ ]]; then
- export target=${BASH_REMATCH[1]}
- fi
- if [ "$target" = "docs" ]; then
- sh build.sh verify-docs
- elif [ "$target" = "swiftlint" ]; then
- sh build.sh verify-swiftlint
- else
- export sha=$GITHUB_PR_SOURCE_BRANCH
- export REALM_EXTRA_BUILD_ARGUMENTS='GCC_GENERATE_DEBUGGING_SYMBOLS=NO -allowProvisioningUpdates'
- if [[ "$target" = *ios* ]] || [[ "$target" = *tvos* ]] || [[ "$target" = *watchos* ]]; then
- sh build.sh prelaunch-simulator "$target"
- fi
- export REALM_SKIP_PRELAUNCH=1
- if [[ "$target" = *"server"* ]] || [[ "$target" = "swiftpm"* ]]; then
- mkdir .baas
- mv build/stitch .baas
- source "$(brew --prefix nvm)/nvm.sh" --no-use
- nvm install 16.5.0
- sh build.sh setup-baas
- fi
- # Reset CoreSimulator.log
- mkdir -p ~/Library/Logs/CoreSimulator
- echo > ~/Library/Logs/CoreSimulator/CoreSimulator.log
- failed=0
- sh build.sh "verify-$target" 2>&1 | tee build/build.log | xcpretty -r junit -o build/reports/junit.xml || failed=1
- if [ "$failed" = "1" ] && grep -E 'DTXProxyChannel|DTXChannel|out of date and needs to be rebuilt|operation never finished bootstrapping|thread is already initializing this class' build/build.log ; then
- echo "Known Xcode error detected. Running job again."
- if grep -E 'out of date and needs to be rebuilt' build/build.log; then
- rm -rf build/DerivedData
- fi
- failed=0
- sh build.sh "verify-$target" | tee build/build.log | xcpretty -r junit -o build/reports/junit.xml || failed=1
- elif [ "$failed" = "1" ] && tail ~/Library/Logs/CoreSimulator/CoreSimulator.log | grep -E "Operation not supported|Failed to lookup com.apple.coreservices.lsuseractivity.simulatorsupport"; then
- echo "Known Xcode error detected. Running job again."
- failed=0
- sh build.sh "verify-$target" | tee build/build.log | xcpretty -r junit -o build/reports/junit.xml || failed=1
- fi
- if [ "$failed" = "1" ]; then
- set +e
- printf "%s" "\n\n***\nbuild/build.log\n***\n\n" && cat build/build.log
- printf "%s" "\n\n***\nCoreSimulator.log\n***\n\n" && cat ~/Library/Logs/CoreSimulator/CoreSimulator.log
- exit 1
- fi
- fi
- if [ "$target" = "osx" ] && [ "$configuration" = "Debug" ]; then
- gcovr -r . -f ".*Realm.*" -e ".*Tests.*" -e ".*core.*" --xml > build/reports/coverage-report.xml
- WS=$(pwd | sed "s/\//\\\\\//g")
- sed -i ".bak" "s/<source>\./<source>${WS}/" build/reports/coverage-report.xml
- fi
- ;;
- ######################################
- # Release packaging
- ######################################
- "package-examples")
- ./scripts/package_examples.rb
- zip --symlinks -r realm-examples.zip examples -x "examples/installation/*"
- ;;
- "package-test-examples-objc")
- if ! VERSION=$(echo realm-objc-*.zip | grep -E -o '\d*\.\d*\.\d*-[a-z]*(\.\d*)?'); then
- VERSION=$(echo realm-objc-*.zip | grep -E -o '\d*\.\d*\.\d*')
- fi
- OBJC="realm-objc-${VERSION}"
- unzip "${OBJC}.zip"
- cp "$0" "${OBJC}"
- cp -r "${source_root}/scripts" "${OBJC}"
- cd "${OBJC}"
- sh build.sh examples-ios
- sh build.sh examples-tvos
- sh build.sh examples-osx
- cd ..
- rm -rf "${OBJC}"
- ;;
- "package-test-examples-swift")
- if ! VERSION=$(echo realm-swift-*.zip | grep -E -o '\d*\.\d*\.\d*-[a-z]*(\.\d*)?'); then
- VERSION=$(echo realm-swift-*.zip | grep -E -o '\d*\.\d*\.\d*')
- fi
- SWIFT="realm-swift-${VERSION}"
- unzip "${SWIFT}.zip"
- cp "$0" "${SWIFT}"
- cp -r "${source_root}/scripts" "${SWIFT}"
- cd "${SWIFT}"
- sh build.sh examples-ios-swift
- sh build.sh examples-tvos-swift
- cd ..
- rm -rf "${SWIFT}"
- ;;
- "package-ios-static")
- sh build.sh prelaunch-simulator
- sh build.sh ios-static
- cd build/ios-static
- zip --symlinks -r realm-framework-ios-static.zip Realm.xcframework
- ;;
- "package")
- PLATFORM="$2"
- REALM_SWIFT_VERSION=
- set_xcode_and_swift_versions
- sh build.sh "$PLATFORM-swift"
- cd "build/$PLATFORM"
- zip --symlinks -r "realm-framework-$PLATFORM-$REALM_XCODE_VERSION.zip" "swift-$REALM_XCODE_VERSION"
- ;;
- "package-release")
- LANG="$2"
- tempdir="$(mktemp -d "$TMPDIR"/realm-release-package-"${LANG}".XXXX)"
- extract_dir="$(mktemp -d "$TMPDIR"/realm-release-package-"${LANG}".XXXX)"
- version="$(sh build.sh get-version)"
- package_dir="${tempdir}/realm-${LANG}-${version}"
- mkdir -p "${package_dir}"
- if [[ "${LANG}" == "objc" ]]; then
- mkdir -p "${extract_dir}"
- unzip "${WORKSPACE}/realm-framework-ios-static.zip" -d "${package_dir}/ios-static"
- for platform in osx ios watchos tvos catalyst; do
- unzip "${WORKSPACE}/realm-framework-${platform}-${REALM_XCODE_VERSION}.zip" -d "${extract_dir}/${platform}"
- done
- # Add the arm64 slice to the watchOS library
- # The arm64 arch was added in Xcode 14, but we need the other
- # slices to be built with Xcode 13 so that they have bitcode.
- unzip "${WORKSPACE}/realm-framework-watchos-14.1.zip" -d "${extract_dir}/watchos"
- lipo "${extract_dir}/watchos/swift-14.1/Realm.xcframework/watchos-arm64_arm64_32_armv7k/Realm.framework/Realm" -thin arm64 -output watchos-arm64-slice
- lipo "${extract_dir}/watchos/swift-${REALM_XCODE_VERSION}/Realm.xcframework/watchos-arm64_32_armv7k/Realm.framework/Realm" watchos-arm64-slice -create -output watchos-fat
- mv watchos-fat "${extract_dir}/watchos/swift-${REALM_XCODE_VERSION}/Realm.xcframework/watchos-arm64_32_armv7k/Realm.framework/Realm"
- rm -r "${extract_dir}/watchos/swift-14.1"
- find "${extract_dir}" -name 'Realm.framework' \
- | sed 's/.*/-framework &/' \
- | xargs xcodebuild -create-xcframework -allow-internal-distribution -output "${package_dir}/Realm.xcframework"
- cp "${WORKSPACE}/Realm/Swift/RLMSupport.swift" "${package_dir}"
- rm -r "${extract_dir}"
- else
- xcode_versions=$(find . -name 'realm-framework-*-1*' | sed 's@./realm-framework-[a-z]*-\(.*\).zip@\1@' | sort -u)
- for xcode_version in $xcode_versions; do
- mkdir -p "${extract_dir}"
- for platform in osx ios watchos tvos catalyst; do
- unzip "realm-framework-$platform-$xcode_version.zip" -d "${extract_dir}/${platform}"
- done
- find "${extract_dir}" -name 'Realm.framework' \
- | sed 's/.*/-framework &/' \
- | xargs xcodebuild -create-xcframework -allow-internal-distribution -output "${package_dir}/${xcode_version}/Realm.xcframework"
- find "${extract_dir}" -name 'RealmSwift.framework' \
- | sed 's/.*/-framework &/' \
- | xargs xcodebuild -create-xcframework -allow-internal-distribution -output "${package_dir}/${xcode_version}/RealmSwift.xcframework"
- rm -r "${extract_dir}"
- done
- fi
- (
- cd "${WORKSPACE}"
- cp -R plugin LICENSE "${package_dir}"
- )
- (
- cd "${package_dir}"
- unzip "${WORKSPACE}/realm-examples.zip"
- cd examples
- if [[ "${LANG}" == "objc" ]]; then
- rm -rf ios/swift-* tvos/swift-*
- else
- rm -rf ios/objc osx tvos/objc
- fi
- )
- cat > "${package_dir}"/docs.webloc <<EOF
- <?xml version="1.0" encoding="UTF-8"?>
- <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
- <plist version="1.0">
- <dict>
- <key>URL</key>
- <string>https://www.mongodb.com/docs/realm-sdks/${LANG}/${version}</string>
- </dict>
- </plist>
- EOF
- (
- cd "${tempdir}"
- zip --symlinks -r "realm-${LANG}-${version}.zip" "realm-${LANG}-${version}"
- mv "realm-${LANG}-${version}.zip" "${WORKSPACE}"
- )
- ;;
- "test-package-release")
- # Generate a release package locally for testing purposes
- # Real releases should always be done via Jenkins
- if [ -z "${WORKSPACE}" ]; then
- echo 'WORKSPACE must be set to a directory to assemble the release in'
- exit 1
- fi
- if [ -d "${WORKSPACE}" ]; then
- echo 'WORKSPACE directory should not already exist'
- exit 1
- fi
- REALM_SOURCE="$(pwd)"
- mkdir -p "$WORKSPACE"
- WORKSPACE="$(cd "$WORKSPACE" && pwd)"
- export WORKSPACE
- cd "$WORKSPACE"
- git clone --recursive "$REALM_SOURCE" realm-swift
- cd realm-swift
- echo 'Packaging iOS'
- sh build.sh package-ios-static
- cp build/ios-static/realm-framework-ios-static.zip .
- sh build.sh package ios
- cp "build/ios/realm-framework-ios-$REALM_XCODE_VERSION.zip" .
- echo 'Packaging macOS'
- sh build.sh package osx
- cp "build/osx/realm-framework-osx-$REALM_XCODE_VERSION.zip" .
- echo 'Packaging watchOS'
- sh build.sh package watchos
- cp "build/watchos/realm-framework-watchos-$REALM_XCODE_VERSION.zip" .
- echo 'Packaging tvOS'
- sh build.sh package tvos
- cp "build/tvos/realm-framework-tvos-$REALM_XCODE_VERSION.zip" .
- echo 'Packaging Catalyst'
- sh build.sh package catalyst
- cp "build/catalyst/realm-framework-catalyst-$REALM_XCODE_VERSION.zip" .
- echo 'Packaging examples'
- sh build.sh package-examples
- echo 'Building final release packages'
- export WORKSPACE="${WORKSPACE}/realm-swift"
- sh build.sh package-release objc
- sh build.sh package-release swift
- echo 'Testing packaged examples'
- sh build.sh package-test-examples-objc
- sh build.sh package-test-examples-swift
- ;;
- "github-release")
- if [ -z "${GITHUB_ACCESS_TOKEN}" ]; then
- echo 'GITHUB_ACCESS_TOKEN must be set to create GitHub releases'
- exit 1
- fi
- ./scripts/github_release.rb
- ;;
- "add-empty-changelog")
- empty_section=$(cat <<EOS
- x.y.z Release notes (yyyy-MM-dd)
- =============================================================
- ### Enhancements
- * None.
- ### Fixed
- * <How to hit and notice issue? what was the impact?> ([#????](https://github.com/realm/realm-swift/issues/????), since v?.?.?)
- * None.
- <!-- ### Breaking Changes - ONLY INCLUDE FOR NEW MAJOR version -->
- ### Compatibility
- * Realm Studio: 13.0.2 or later.
- * APIs are backwards compatible with all previous releases in the 10.x.y series.
- * Carthage release for Swift is built with Xcode 14.3.
- * CocoaPods: 1.10 or later.
- * Xcode: 13.4-14.3.
- ### Internal
- * Upgraded realm-core from ? to ?
- EOS)
- changelog=$(cat CHANGELOG.md)
- echo "$empty_section" > CHANGELOG.md
- echo >> CHANGELOG.md
- echo "$changelog" >> CHANGELOG.md
- ;;
- *)
- echo "Unknown command '$COMMAND'"
- usage
- exit 1
- ;;
- esac
|