build.sh 46 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295
  1. #!/bin/bash
  2. ##################################################################################
  3. # Custom build tool for Realm Objective-C binding.
  4. #
  5. # (C) Copyright 2011-2022 by realm.io.
  6. ##################################################################################
  7. # Warning: pipefail is not a POSIX compatible option, but on macOS it works just fine.
  8. # macOS uses a POSIX complain version of bash as /bin/sh, but apparently it does
  9. # not strip away this feature. Also, this will fail if somebody forces the script
  10. # to be run with zsh.
  11. set -o pipefail
  12. set -e
  13. readonly source_root="$(dirname "$0")"
  14. : "${REALM_CORE_VERSION:=$(sed -n 's/^REALM_CORE_VERSION=\(.*\)$/\1/p' "${source_root}/dependencies.list")}" # set to "current" to always use the current build
  15. # You can override the xcmode used
  16. : "${XCMODE:=xcodebuild}" # must be one of: xcodebuild (default), xcpretty, xctool
  17. # Provide a fallback value for TMPDIR, relevant for Xcode Bots
  18. : "${TMPDIR:=$(getconf DARWIN_USER_TEMP_DIR)}"
  19. PATH=/usr/libexec:$PATH
  20. if [ -n "${JENKINS_HOME}" ]; then
  21. XCPRETTY_PARAMS=(--no-utf --report junit --output build/reports/junit.xml)
  22. CODESIGN_PARAMS=(CODE_SIGN_IDENTITY='' CODE_SIGNING_REQUIRED=NO CODE_SIGNING_ALLOWED=NO)
  23. fi
  24. usage() {
  25. cat <<EOF
  26. Usage: sh $0 command [argument]
  27. command:
  28. clean: clean up/remove all generated files
  29. download-core: downloads core library (binary version)
  30. build: builds all iOS and macOS frameworks
  31. ios-static: builds fat iOS static framework
  32. ios-dynamic: builds iOS dynamic frameworks
  33. ios-swift: builds RealmSwift frameworks for iOS
  34. watchos: builds watchOS framwork
  35. watchos-swift: builds RealmSwift framework for watchOS
  36. tvos: builds tvOS framework
  37. tvos-swift: builds RealmSwift framework for tvOS
  38. osx: builds macOS framework
  39. osx-swift: builds RealmSwift framework for macOS
  40. xcframework [plats]: builds xcframeworks for Realm and RealmSwift for given platforms
  41. analyze-osx: analyzes macOS framework
  42. test: tests all iOS and macOS frameworks
  43. test-all: tests all iOS and macOS frameworks in both Debug and Release configurations
  44. test-ios-static: tests static iOS framework on 32-bit and 64-bit simulators
  45. test-ios-dynamic: tests dynamic iOS framework on 32-bit and 64-bit simulators
  46. test-ios-swift: tests RealmSwift iOS framework on 32-bit and 64-bit simulators
  47. test-ios-devices: tests ObjC & Swift iOS frameworks on all attached iOS devices
  48. test-ios-devices-objc: tests ObjC iOS framework on all attached iOS devices
  49. test-ios-devices-swift: tests Swift iOS framework on all attached iOS devices
  50. test-tvos: tests tvOS framework
  51. test-tvos-swift: tests RealmSwift tvOS framework
  52. test-tvos-devices: tests ObjC & Swift tvOS frameworks on all attached tvOS devices
  53. test-osx: tests macOS framework
  54. test-osx-swift: tests RealmSwift macOS framework
  55. test-catalyst: tests Mac Catalyst framework
  56. test-catalyst-swift: tests RealmSwift Mac Catalyst framework
  57. test-swiftpm: tests ObjC and Swift macOS frameworks via SwiftPM
  58. test-swiftui-ios: tests SwiftUI framework UI tests
  59. test-swiftui-server-osx: tests Server Sync in SwiftUI
  60. verify: verifies docs, osx, osx-swift, ios-static, ios-dynamic, ios-swift, ios-device, swiftui-ios in both Debug and Release configurations, swiftlint
  61. verify-osx-object-server: downloads the Realm Object Server and runs the Objective-C and Swift integration tests
  62. docs: builds docs in docs/output
  63. examples: builds all examples
  64. examples-ios: builds all static iOS examples
  65. examples-ios-swift: builds all Swift iOS examples
  66. examples-osx: builds all macOS examples
  67. get-version: get the current version
  68. set-version version: set the version
  69. cocoapods-setup: download realm-core and create a stub RLMPlatform.h file to enable building via CocoaPods
  70. argument:
  71. version: version in the x.y.z format
  72. environment variables:
  73. XCMODE: xcodebuild (default), xcpretty or xctool
  74. CONFIGURATION: Debug or Release (default)
  75. REALM_CORE_VERSION: version in x.y.z format or "current" to use local build
  76. REALM_EXTRA_BUILD_ARGUMENTS: additional arguments to pass to the build tool
  77. REALM_XCODE_VERSION: the version number of Xcode to use (e.g.: 13.3.1)
  78. REALM_XCODE_OLDEST_VERSION: the version number of oldest available Xcode to use (e.g.: 12.4)
  79. REALM_XCODE_LATEST_VERSION: the version number of latest available Xcode to use (e.g.: 13.3.1)
  80. EOF
  81. }
  82. ######################################
  83. # Xcode Helpers
  84. ######################################
  85. xcode_version_major() {
  86. echo "${REALM_XCODE_VERSION%%.*}"
  87. }
  88. xcode() {
  89. mkdir -p build/DerivedData
  90. CMD="xcodebuild -IDECustomDerivedDataLocation=build/DerivedData"
  91. echo "Building with command: $CMD $*"
  92. xcodebuild -IDECustomDerivedDataLocation=build/DerivedData "$@"
  93. }
  94. xc() {
  95. # Logs xcodebuild output in realtime
  96. : "${NSUnbufferedIO:=YES}"
  97. args=("SWIFT_VERSION=$REALM_SWIFT_VERSION" $REALM_EXTRA_BUILD_ARGUMENTS)
  98. if [[ "$XCMODE" == "xcodebuild" ]]; then
  99. xcode "$@" "${args[@]}"
  100. elif [[ "$XCMODE" == "xcpretty" ]]; then
  101. mkdir -p build
  102. xcode "$@" "${args[@]}" | tee build/build.log | xcpretty -c "${XCPRETTY_PARAMS[@]}" || {
  103. echo "The raw xcodebuild output is available in build/build.log"
  104. exit 1
  105. }
  106. elif [[ "$XCMODE" == "xctool" ]]; then
  107. xctool "$@" "${args[@]}"
  108. fi
  109. }
  110. xctest() {
  111. local scheme="$1"
  112. xc -scheme "$scheme" "${@:2}" build-for-testing
  113. xc -scheme "$scheme" "${@:2}" test-without-building
  114. }
  115. build_combined() {
  116. local scheme="$1"
  117. local module_name="$2"
  118. local os="$3"
  119. local simulator="$4"
  120. local scope_suffix="$5"
  121. local version_suffix="$6"
  122. local config="$CONFIGURATION"
  123. local os_name=""
  124. if [[ "$os" == "iphoneos" ]]; then
  125. os_name="ios"
  126. elif [[ "$os" == "watchos" ]]; then
  127. os_name="$os"
  128. elif [[ "$os" == "appletvos" ]]; then
  129. os_name="tvos"
  130. fi
  131. # Derive build paths
  132. local build_products_path="build/DerivedData/Realm/Build/Products"
  133. local product_name="$module_name.framework"
  134. local os_path="$build_products_path/$config-$os$scope_suffix/$product_name"
  135. local simulator_path="$build_products_path/$config-$simulator$scope_suffix/$product_name"
  136. local out_path="build/$os_name$scope_suffix$version_suffix"
  137. local xcframework_path="$out_path/$module_name.xcframework"
  138. # Build for each platform
  139. xc -scheme "$scheme" -configuration "$config" -sdk "$os" build
  140. xc -scheme "$scheme" -configuration "$config" -sdk "$simulator" build ONLY_ACTIVE_ARCH=NO
  141. # Create the xcframework
  142. rm -rf "$xcframework_path"
  143. xcodebuild -create-xcframework -allow-internal-distribution -output "$xcframework_path" \
  144. -framework "$os_path" -framework "$simulator_path"
  145. }
  146. copy_realm_framework() {
  147. local platform="$1"
  148. rm -rf "build/$platform/swift-$REALM_XCODE_VERSION/Realm.xcframework"
  149. cp -R "build/$platform/Realm.xcframework" "build/$platform/swift-$REALM_XCODE_VERSION"
  150. }
  151. clean_retrieve() {
  152. mkdir -p "$2"
  153. rm -rf "$2/$3"
  154. cp -R "$1" "$2"
  155. }
  156. move_to_clean_dir() {
  157. rm -rf "$2"
  158. mkdir -p "$2"
  159. mv "$1" "$2"
  160. }
  161. test_ios_static() {
  162. xctest 'Realm iOS static' -configuration "$CONFIGURATION" -sdk iphonesimulator -destination "$1"
  163. }
  164. plist_get() {
  165. /usr/libexec/PlistBuddy -c "Print :$2" "$1" 2> /dev/null
  166. }
  167. ######################################
  168. # Device Test Helper
  169. ######################################
  170. test_devices() {
  171. local serial_numbers=()
  172. local awk_script="
  173. /^ +Vendor ID: / { is_apple = 0; }
  174. /^ +Vendor ID: 0x05[aA][cC] / { is_apple = 1; }
  175. /^ +Serial Number: / {
  176. if (is_apple) {
  177. match(\$0, /^ +Serial Number: /);
  178. print substr(\$0, RLENGTH + 1);
  179. }
  180. }
  181. "
  182. local serial_numbers_text=$(/usr/sbin/system_profiler SPUSBDataType | /usr/bin/awk "$awk_script")
  183. while read -r number; do
  184. if [[ "$number" != "" ]]; then
  185. serial_numbers+=("$number")
  186. fi
  187. done <<< "$serial_numbers_text"
  188. if [[ ${#serial_numbers[@]} == 0 ]]; then
  189. echo "At least one iOS/tvOS device must be connected to this computer to run device tests"
  190. if [ -z "${JENKINS_HOME}" ]; then
  191. # Don't fail if running locally and there's no device
  192. exit 0
  193. fi
  194. exit 1
  195. fi
  196. local sdk="$1"
  197. local scheme="$2"
  198. local configuration="$3"
  199. local failed=0
  200. for device in "${serial_numbers[@]}"; do
  201. xc -scheme "$scheme" -configuration "$configuration" -destination "id=$device" -sdk "$sdk" test || failed=1
  202. done
  203. return $failed
  204. }
  205. ######################################
  206. # Docs
  207. ######################################
  208. build_docs() {
  209. local language="$1"
  210. local version=$(sh build.sh get-version)
  211. local xcodebuild_arguments="--objc,Realm/Realm.h,--,-x,objective-c,-isysroot,$(xcrun --show-sdk-path),-I,$(pwd)"
  212. local module="Realm"
  213. local objc="--objc"
  214. if [[ "$language" == "swift" ]]; then
  215. xcodebuild_arguments="-scheme,RealmSwift"
  216. module="RealmSwift"
  217. objc=""
  218. fi
  219. touch Realm/RLMPlatform.h # jazzy will fail if it can't find all public header files
  220. jazzy \
  221. "${objc}" \
  222. --clean \
  223. --author Realm \
  224. --author_url https://docs.mongodb.com/realm-sdks \
  225. --github_url https://github.com/realm/realm-swift \
  226. --github-file-prefix "https://github.com/realm/realm-swift/tree/v${version}" \
  227. --module-version "${version}" \
  228. --xcodebuild-arguments "${xcodebuild_arguments}" \
  229. --module "${module}" \
  230. --root-url "https://docs.mongodb.com/realm-sdks/${language}/${version}/" \
  231. --output "docs/${language}_output" \
  232. --head "$(cat docs/custom_head.html)" \
  233. --exclude 'RealmSwift/Impl/*'
  234. rm Realm/RLMPlatform.h
  235. }
  236. ######################################
  237. # Input Validation
  238. ######################################
  239. if [ "$#" -eq 0 ] || [ "$#" -gt 3 ]; then
  240. usage
  241. exit 1
  242. fi
  243. ######################################
  244. # Variables
  245. ######################################
  246. COMMAND="$1"
  247. # Use Debug config if command ends with -debug, otherwise default to Release
  248. case "$COMMAND" in
  249. *-debug)
  250. COMMAND="${COMMAND%-debug}"
  251. CONFIGURATION="Debug"
  252. ;;
  253. esac
  254. export CONFIGURATION=${CONFIGURATION:-Release}
  255. # Pre-choose Xcode and Swift versions for those operations that do not set them
  256. REALM_XCODE_VERSION=${xcode_version:-$REALM_XCODE_VERSION}
  257. REALM_SWIFT_VERSION=${swift_version:-$REALM_SWIFT_VERSION}
  258. source "${source_root}/scripts/swift-version.sh"
  259. set_xcode_and_swift_versions
  260. ######################################
  261. # Commands
  262. ######################################
  263. case "$COMMAND" in
  264. ######################################
  265. # Clean
  266. ######################################
  267. "clean")
  268. find . -type d -name build -exec rm -r "{}" +
  269. exit 0
  270. ;;
  271. ######################################
  272. # Dependencies
  273. ######################################
  274. "download-core")
  275. sh scripts/download-core.sh
  276. exit 0
  277. ;;
  278. "setup-baas")
  279. ruby Realm/ObjectServerTests/setup_baas.rb
  280. exit 0
  281. ;;
  282. "prelaunch-simulator")
  283. if [ -z "$REALM_SKIP_PRELAUNCH" ]; then
  284. sh "${source_root}/scripts/reset-simulators.sh" "$1"
  285. fi
  286. ;;
  287. ######################################
  288. # Building
  289. ######################################
  290. "build")
  291. sh build.sh ios-static
  292. sh build.sh ios-dynamic
  293. sh build.sh ios-swift
  294. sh build.sh watchos
  295. sh build.sh watchos-swift
  296. sh build.sh tvos
  297. sh build.sh tvos-swift
  298. sh build.sh osx
  299. sh build.sh osx-swift
  300. exit 0
  301. ;;
  302. "ios-static")
  303. build_combined 'Realm iOS static' Realm iphoneos iphonesimulator "-static"
  304. exit 0
  305. ;;
  306. "ios-dynamic")
  307. build_combined Realm Realm iphoneos iphonesimulator
  308. exit 0
  309. ;;
  310. "ios-swift")
  311. sh build.sh ios-dynamic
  312. build_combined RealmSwift RealmSwift iphoneos iphonesimulator '' "/swift-$REALM_XCODE_VERSION"
  313. copy_realm_framework ios
  314. exit 0
  315. ;;
  316. "watchos")
  317. build_combined Realm Realm watchos watchsimulator
  318. exit 0
  319. ;;
  320. "watchos-swift")
  321. sh build.sh watchos
  322. build_combined RealmSwift RealmSwift watchos watchsimulator '' "/swift-$REALM_XCODE_VERSION"
  323. copy_realm_framework watchos
  324. exit 0
  325. ;;
  326. "tvos")
  327. build_combined Realm Realm appletvos appletvsimulator
  328. exit 0
  329. ;;
  330. "tvos-swift")
  331. sh build.sh tvos
  332. build_combined RealmSwift RealmSwift appletvos appletvsimulator '' "/swift-$REALM_XCODE_VERSION"
  333. copy_realm_framework tvos
  334. exit 0
  335. ;;
  336. "osx")
  337. xc -scheme Realm -configuration "$CONFIGURATION"
  338. clean_retrieve "build/DerivedData/Realm/Build/Products/$CONFIGURATION/Realm.framework" "build/osx" "Realm.framework"
  339. exit 0
  340. ;;
  341. "osx-swift")
  342. sh build.sh osx
  343. xc -scheme RealmSwift -configuration "$CONFIGURATION" build
  344. destination="build/osx/swift-$REALM_XCODE_VERSION"
  345. clean_retrieve "build/DerivedData/Realm/Build/Products/$CONFIGURATION/RealmSwift.framework" "$destination" "RealmSwift.framework"
  346. clean_retrieve "build/osx/Realm.framework" "$destination" "Realm.framework"
  347. exit 0
  348. ;;
  349. "swiftui")
  350. xc -scheme SwiftUITestHost -configuration $CONFIGURATION -sdk iphonesimulator build
  351. ;;
  352. "catalyst")
  353. export REALM_SDKROOT=iphoneos
  354. xc -scheme Realm -configuration "$CONFIGURATION" -destination variant='Mac Catalyst'
  355. clean_retrieve "build/DerivedData/Realm/Build/Products/$CONFIGURATION-maccatalyst/Realm.framework" "build/catalyst" "Realm.framework"
  356. ;;
  357. "catalyst-swift")
  358. sh build.sh catalyst
  359. export REALM_SDKROOT=iphoneos
  360. xc -scheme 'RealmSwift' -configuration "$CONFIGURATION" -destination variant='Mac Catalyst' build
  361. destination="build/catalyst/swift-$REALM_XCODE_VERSION"
  362. clean_retrieve "build/DerivedData/Realm/Build/Products/$CONFIGURATION-maccatalyst/RealmSwift.framework" "$destination" "RealmSwift.framework"
  363. clean_retrieve "build/catalyst/Realm.framework" "$destination" "Realm.framework"
  364. ;;
  365. "xcframework")
  366. # Build all of the requested frameworks
  367. shift
  368. PLATFORMS="${*:-osx ios watchos tvos catalyst}"
  369. for platform in $PLATFORMS; do
  370. sh build.sh "$platform-swift"
  371. done
  372. # Assemble them into xcframeworks
  373. rm -rf build/*.xcframework
  374. find build/DerivedData/Realm/Build/Products -name 'Realm.framework' \
  375. | grep -v '\-static' \
  376. | sed 's/.*/-framework &/' \
  377. | xargs xcodebuild -create-xcframework -allow-internal-distribution -output build/Realm.xcframework
  378. find build/DerivedData/Realm/Build/Products -name 'RealmSwift.framework' \
  379. | sed 's/.*/-framework &/' \
  380. | xargs xcodebuild -create-xcframework -allow-internal-distribution -output build/RealmSwift.xcframework
  381. # Because we have a module named Realm and a type named Realm we need to manually resolve the naming
  382. # collisions that are happening. These collisions create a red herring which tells the user the xcframework
  383. # was compiled with an older Swift version and is not compatible with the current compiler.
  384. find build/RealmSwift.xcframework -name "*.swiftinterface" -exec sed -i '' 's/Realm\.//g' {} \; \
  385. -exec sed -i '' 's/import Private/import Realm.Private/g' {} \; \
  386. -exec sed -i '' 's/RealmSwift.Configuration/RealmSwift.Realm.Configuration/g' {} \; \
  387. -exec sed -i '' 's/extension Configuration/extension Realm.Configuration/g' {} \; \
  388. -exec sed -i '' 's/RealmSwift.Error[[:>:]]/RealmSwift.Realm.Error/g' {} \; \
  389. -exec sed -i '' 's/extension Error/extension Realm.Error/g' {} \; \
  390. -exec sed -i '' 's/RealmSwift.AsyncOpenTask/RealmSwift.Realm.AsyncOpenTask/g' {} \; \
  391. -exec sed -i '' 's/RealmSwift.UpdatePolicy/RealmSwift.Realm.UpdatePolicy/g' {} \; \
  392. -exec sed -i '' 's/RealmSwift.Notification[[:>:]]/RealmSwift.Realm.Notification/g' {} \; \
  393. -exec sed -i '' 's/RealmSwift.OpenBehavior/RealmSwift.Realm.OpenBehavior/g' {} \; \
  394. -exec sed -i '' 's/τ_1_0/V/g' {} \; # Generics will use τ_1_0 which needs to be changed to the correct type name.
  395. exit 0
  396. ;;
  397. "verify-xcframework-evolution-mode")
  398. export REALM_EXTRA_BUILD_ARGUMENTS="$REALM_EXTRA_BUILD_ARGUMENTS REALM_BUILD_LIBRARY_FOR_DISTRIBUTION=YES"
  399. # set the Xcode version to the oldest
  400. export REALM_XCODE_VERSION=$REALM_XCODE_OLDEST_VERSION
  401. unset REALM_SWIFT_VERSION
  402. sh build.sh xcframework osx
  403. # copy the xcframework to the testing target
  404. rm -rf examples/installation/xcframework-evolution
  405. mkdir examples/installation/xcframework-evolution
  406. cp -cr build/*.xcframework examples/installation/xcframework-evolution
  407. export REALM_XCODE_VERSION=$REALM_XCODE_LATEST_VERSION
  408. unset REALM_SWIFT_VERSION
  409. cd examples/installation
  410. sh build.sh "test-osx-swift-xcframework"
  411. exit 0
  412. ;;
  413. ######################################
  414. # Analysis
  415. ######################################
  416. "analyze-osx")
  417. xc -scheme Realm -configuration "$CONFIGURATION" analyze
  418. exit 0
  419. ;;
  420. ######################################
  421. # Testing
  422. ######################################
  423. "test")
  424. set +e # Run both sets of tests even if the first fails
  425. failed=0
  426. sh build.sh test-ios-static || failed=1
  427. sh build.sh test-ios-dynamic || failed=1
  428. sh build.sh test-ios-swift || failed=1
  429. sh build.sh test-ios-devices || failed=1
  430. sh build.sh test-tvos-devices || failed=1
  431. sh build.sh test-osx || failed=1
  432. sh build.sh test-osx-swift || failed=1
  433. sh build.sh test-catalyst || failed=1
  434. sh build.sh test-catalyst-swift || failed=1
  435. exit $failed
  436. ;;
  437. "test-all")
  438. set +e
  439. failed=0
  440. sh build.sh test || failed=1
  441. sh build.sh test-debug || failed=1
  442. exit $failed
  443. ;;
  444. "test-ios-static")
  445. test_ios_static "name=iPhone 8"
  446. exit 0
  447. ;;
  448. "test-ios-dynamic")
  449. xctest Realm -configuration "$CONFIGURATION" -sdk iphonesimulator -destination 'name=iPhone 8'
  450. exit 0
  451. ;;
  452. "test-ios-swift")
  453. xctest RealmSwift -configuration "$CONFIGURATION" -sdk iphonesimulator -destination 'name=iPhone 8'
  454. exit 0
  455. ;;
  456. "test-ios-devices")
  457. failed=0
  458. trap "failed=1" ERR
  459. sh build.sh test-ios-devices-objc
  460. sh build.sh test-ios-devices-swift
  461. exit $failed
  462. ;;
  463. "test-ios-devices-objc")
  464. test_devices iphoneos "Realm" "$CONFIGURATION"
  465. exit $?
  466. ;;
  467. "test-ios-devices-swift")
  468. test_devices iphoneos "RealmSwift" "$CONFIGURATION"
  469. exit $?
  470. ;;
  471. "test-tvos")
  472. destination="Apple TV"
  473. xctest Realm -configuration "$CONFIGURATION" -sdk appletvsimulator -destination "name=$destination"
  474. exit $?
  475. ;;
  476. "test-tvos-swift")
  477. destination="Apple TV"
  478. xctest RealmSwift -configuration "$CONFIGURATION" -sdk appletvsimulator -destination "name=$destination"
  479. exit $?
  480. ;;
  481. "test-tvos-devices")
  482. test_devices appletvos TestHost "$CONFIGURATION"
  483. ;;
  484. "test-osx")
  485. COVERAGE_PARAMS=()
  486. if [[ "$CONFIGURATION" == "Debug" ]]; then
  487. COVERAGE_PARAMS=(GCC_GENERATE_TEST_COVERAGE_FILES=YES GCC_INSTRUMENT_PROGRAM_FLOW_ARCS=YES)
  488. fi
  489. xctest Realm -configuration "$CONFIGURATION" "${COVERAGE_PARAMS[@]}" -destination "platform=macOS,arch=$(uname -m)"
  490. exit 0
  491. ;;
  492. "test-osx-swift")
  493. xctest RealmSwift -configuration $CONFIGURATION -destination "platform=macOS,arch=$(uname -m)"
  494. exit 0
  495. ;;
  496. "test-osx-object-server")
  497. xctest 'Object Server Tests' -configuration "$CONFIGURATION" -sdk macosx -destination "platform=macOS,arch=$(uname -m)"
  498. exit 0
  499. ;;
  500. test-swiftpm-ios)
  501. cd examples/installation
  502. sh build.sh test-ios-swift-spm
  503. exit 0
  504. ;;
  505. test-swiftpm*)
  506. SANITIZER=$(echo "$COMMAND" | cut -d - -f 3)
  507. # FIXME: throwing an exception from a property getter corrupts Swift's
  508. # runtime exclusivity checking state. Unfortunately, this is something
  509. # we do a lot in tests.
  510. SWIFT_TEST_FLAGS=(-Xcc -g0 -Xswiftc -enforce-exclusivity=none)
  511. if [ -n "$SANITIZER" ]; then
  512. SWIFT_TEST_FLAGS+=(--sanitize "$SANITIZER")
  513. export ASAN_OPTIONS='check_initialization_order=true:detect_stack_use_after_return=true'
  514. fi
  515. xcrun swift package resolve
  516. xcrun swift test --configuration "$(echo "$CONFIGURATION" | tr "[:upper:]" "[:lower:]")" "${SWIFT_TEST_FLAGS[@]}"
  517. exit 0
  518. ;;
  519. "test-swiftui-ios")
  520. xctest 'SwiftUITestHost' -configuration "$CONFIGURATION" -sdk iphonesimulator -destination 'name=iPhone 8'
  521. exit 0
  522. ;;
  523. "test-catalyst")
  524. export REALM_SDKROOT=iphoneos
  525. xctest Realm -configuration "$CONFIGURATION" -destination 'platform=macOS,variant=Mac Catalyst' CODE_SIGN_IDENTITY=''
  526. exit 0
  527. ;;
  528. "test-catalyst-swift")
  529. export REALM_SDKROOT=iphoneos
  530. xctest RealmSwift -configuration "$CONFIGURATION" -destination 'platform=macOS,variant=Mac Catalyst' CODE_SIGN_IDENTITY=''
  531. exit 0
  532. ;;
  533. "test-swiftui-server-osx")
  534. xctest 'SwiftUISyncTestHost' -configuration "$CONFIGURATION" -sdk macosx -destination 'platform=macOS'
  535. exit 0
  536. ;;
  537. ######################################
  538. # Full verification
  539. ######################################
  540. "verify")
  541. sh build.sh verify-cocoapods
  542. sh build.sh verify-docs
  543. sh build.sh verify-osx
  544. sh build.sh verify-osx-debug
  545. sh build.sh verify-osx-swift
  546. sh build.sh verify-osx-swift-debug
  547. sh build.sh verify-ios-static
  548. sh build.sh verify-ios-static-debug
  549. sh build.sh verify-ios-dynamic
  550. sh build.sh verify-ios-dynamic-debug
  551. sh build.sh verify-ios-swift
  552. sh build.sh verify-ios-swift-debug
  553. sh build.sh verify-ios-device-objc
  554. sh build.sh verify-ios-device-swift
  555. sh build.sh verify-watchos
  556. sh build.sh verify-tvos
  557. sh build.sh verify-tvos-debug
  558. sh build.sh verify-tvos-device
  559. sh build.sh verify-swiftlint
  560. sh build.sh verify-swiftpm
  561. sh build.sh verify-osx-object-server
  562. sh build.sh verify-catalyst
  563. sh build.sh verify-catalyst-swift
  564. sh build.sh verify-swiftui-ios
  565. sh build.sh verify-swiftui-server-osx
  566. ;;
  567. "verify-cocoapods")
  568. if [[ -d .git ]]; then
  569. # Verify the current branch, unless one was already specified in the sha environment variable.
  570. if [[ -z $sha ]]; then
  571. export sha=$(git rev-parse --abbrev-ref HEAD)
  572. fi
  573. if [[ $(git log -1 '@{push}..') != "" ]] || ! git diff-index --quiet HEAD; then
  574. echo "WARNING: verify-cocoapods will test the latest revision of $sha found on GitHub."
  575. echo " Any unpushed local changes will not be tested."
  576. echo ""
  577. sleep 1
  578. fi
  579. fi
  580. sh build.sh verify-cocoapods-ios
  581. sh build.sh verify-cocoapods-ios-dynamic
  582. sh build.sh verify-cocoapods-osx
  583. sh build.sh verify-cocoapods-watchos
  584. # https://github.com/CocoaPods/CocoaPods/issues/7708
  585. export EXPANDED_CODE_SIGN_IDENTITY=''
  586. cd examples/installation
  587. sh build.sh test-ios-objc-cocoapods
  588. sh build.sh test-ios-objc-cocoapods-dynamic
  589. sh build.sh test-ios-swift-cocoapods
  590. sh build.sh test-osx-objc-cocoapods
  591. sh build.sh test-osx-swift-cocoapods
  592. sh build.sh test-catalyst-objc-cocoapods
  593. sh build.sh test-catalyst-objc-cocoapods-dynamic
  594. sh build.sh test-catalyst-swift-cocoapods
  595. sh build.sh test-watchos-objc-cocoapods
  596. sh build.sh test-watchos-swift-cocoapods
  597. ;;
  598. verify-cocoapods-ios-dynamic)
  599. PLATFORM=$(echo "$COMMAND" | cut -d - -f 3)
  600. # https://github.com/CocoaPods/CocoaPods/issues/7708
  601. export EXPANDED_CODE_SIGN_IDENTITY=''
  602. cd examples/installation
  603. sh build.sh test-ios-objc-cocoapods-dynamic
  604. ;;
  605. verify-cocoapods-*)
  606. PLATFORM=$(echo "$COMMAND" | cut -d - -f 3)
  607. # https://github.com/CocoaPods/CocoaPods/issues/7708
  608. export EXPANDED_CODE_SIGN_IDENTITY=''
  609. cd examples/installation
  610. sh build.sh "test-$PLATFORM-swift-cocoapods"
  611. ;;
  612. "verify-osx-encryption")
  613. REALM_ENCRYPT_ALL=YES sh build.sh test-osx
  614. exit 0
  615. ;;
  616. "verify-osx")
  617. REALM_EXTRA_BUILD_ARGUMENTS="$REALM_EXTRA_BUILD_ARGUMENTS -workspace examples/osx/objc/RealmExamples.xcworkspace" \
  618. sh build.sh test-osx
  619. sh build.sh examples-osx
  620. (
  621. cd examples/osx/objc/build/DerivedData/RealmExamples/Build/Products/$CONFIGURATION
  622. DYLD_FRAMEWORK_PATH=. ./JSONImport >/dev/null
  623. )
  624. exit 0
  625. ;;
  626. "verify-osx-swift")
  627. sh build.sh test-osx-swift
  628. exit 0
  629. ;;
  630. "verify-swiftui-ios")
  631. sh build.sh test-swiftui-ios
  632. exit 0
  633. ;;
  634. "verify-swiftui-server-osx")
  635. sh build.sh test-swiftui-server-osx
  636. exit 0
  637. ;;
  638. "verify-osx-swift-evolution")
  639. export REALM_EXTRA_BUILD_ARGUMENTS="$REALM_EXTRA_BUILD_ARGUMENTS REALM_BUILD_LIBRARY_FOR_DISTRIBUTION=YES"
  640. sh build.sh test-osx-swift
  641. exit 0
  642. ;;
  643. "verify-ios-static")
  644. REALM_EXTRA_BUILD_ARGUMENTS="$REALM_EXTRA_BUILD_ARGUMENTS -workspace examples/ios/objc/RealmExamples.xcworkspace" \
  645. sh build.sh test-ios-static
  646. sh build.sh examples-ios
  647. ;;
  648. "verify-ios-dynamic")
  649. sh build.sh test-ios-dynamic
  650. ;;
  651. "verify-ios-swift")
  652. REALM_EXTRA_BUILD_ARGUMENTS="$REALM_EXTRA_BUILD_ARGUMENTS -workspace examples/ios/swift/RealmExamples.xcworkspace" \
  653. sh build.sh test-ios-swift
  654. sh build.sh examples-ios-swift
  655. ;;
  656. "verify-ios-swift-evolution")
  657. export REALM_EXTRA_BUILD_ARGUMENTS="$REALM_EXTRA_BUILD_ARGUMENTS REALM_BUILD_LIBRARY_FOR_DISTRIBUTION=YES"
  658. sh build.sh test-ios-swift
  659. exit 0
  660. ;;
  661. "verify-ios-device-objc")
  662. sh build.sh test-ios-devices-objc
  663. exit 0
  664. ;;
  665. "verify-ios-device-swift")
  666. sh build.sh test-ios-devices-swift
  667. exit 0
  668. ;;
  669. "verify-docs")
  670. sh build.sh docs
  671. for lang in swift objc; do
  672. undocumented="docs/${lang}_output/undocumented.json"
  673. if ruby -rjson -e "j = JSON.parse(File.read('docs/${lang}_output/undocumented.json')); exit j['warnings'].length != 0"; then
  674. echo "Undocumented Realm $lang declarations:"
  675. cat "$undocumented"
  676. exit 1
  677. fi
  678. done
  679. exit 0
  680. ;;
  681. "verify-watchos")
  682. sh build.sh watchos-swift
  683. exit 0
  684. ;;
  685. "verify-tvos")
  686. REALM_EXTRA_BUILD_ARGUMENTS="$REALM_EXTRA_BUILD_ARGUMENTS -workspace examples/tvos/objc/RealmExamples.xcworkspace" \
  687. sh build.sh test-tvos
  688. sh build.sh examples-tvos
  689. exit 0
  690. ;;
  691. "verify-tvos-swift")
  692. REALM_EXTRA_BUILD_ARGUMENTS="$REALM_EXTRA_BUILD_ARGUMENTS -workspace examples/tvos/swift/RealmExamples.xcworkspace" \
  693. sh build.sh test-tvos-swift
  694. sh build.sh examples-tvos-swift
  695. exit 0
  696. ;;
  697. "verify-tvos-swift-evolution")
  698. export REALM_EXTRA_BUILD_ARGUMENTS="$REALM_EXTRA_BUILD_ARGUMENTS REALM_BUILD_LIBRARY_FOR_DISTRIBUTION=YES"
  699. sh build.sh test-tvos-swift
  700. exit 0
  701. ;;
  702. "verify-tvos-device")
  703. sh build.sh test-tvos-devices
  704. exit 0
  705. ;;
  706. "verify-swiftlint")
  707. swiftlint lint --strict
  708. exit 0
  709. ;;
  710. verify-swiftpm*)
  711. sh build.sh "test-$(echo "$COMMAND" | cut -d - -f 2-)"
  712. exit 0
  713. ;;
  714. "verify-osx-object-server")
  715. sh build.sh test-osx-object-server
  716. exit 0
  717. ;;
  718. "verify-catalyst")
  719. sh build.sh test-catalyst
  720. exit 0
  721. ;;
  722. "verify-catalyst-swift")
  723. sh build.sh test-catalyst-swift
  724. exit 0
  725. ;;
  726. "verify-xcframework")
  727. sh build.sh xcframework
  728. exit 0
  729. ;;
  730. ######################################
  731. # Docs
  732. ######################################
  733. "docs")
  734. build_docs objc
  735. build_docs swift
  736. exit 0
  737. ;;
  738. ######################################
  739. # Examples
  740. ######################################
  741. "examples")
  742. sh build.sh clean
  743. sh build.sh prelaunch-simulator
  744. export REALM_SKIP_PRELAUNCH=1
  745. sh build.sh examples-ios
  746. sh build.sh examples-ios-swift
  747. sh build.sh examples-osx
  748. sh build.sh examples-tvos
  749. sh build.sh examples-tvos-swift
  750. exit 0
  751. ;;
  752. "examples-ios")
  753. workspace="examples/ios/objc/RealmExamples.xcworkspace"
  754. pod install --project-directory="$workspace/.." --no-repo-update
  755. examples="Simple TableView Migration Backlink GroupedTableView RACTableView Encryption Draw"
  756. versions="0 1 2 3 4 5"
  757. for example in $examples; do
  758. if [ "$example" = "Migration" ]; then
  759. # The migration example needs to be built for each schema version to ensure each compiles.
  760. for version in $versions; do
  761. xc -workspace "$workspace" -scheme "$example" -configuration "$CONFIGURATION" -sdk iphonesimulator build ARCHS=x86_64 "${CODESIGN_PARAMS[@]}" GCC_PREPROCESSOR_DEFINITIONS="\$(GCC_PREPROCESSOR_DEFINITIONS) SCHEMA_VERSION_$version"
  762. done
  763. else
  764. xc -workspace "$workspace" -scheme "$example" -configuration "$CONFIGURATION" -sdk iphonesimulator build ARCHS=x86_64 "${CODESIGN_PARAMS[@]}"
  765. fi
  766. done
  767. if [ -n "${JENKINS_HOME}" ]; then
  768. xc -workspace "$workspace" -scheme Extension -configuration "$CONFIGURATION" -sdk iphonesimulator build ARCHS=x86_64 "${CODESIGN_PARAMS[@]}"
  769. fi
  770. exit 0
  771. ;;
  772. "examples-ios-swift")
  773. workspace="examples/ios/swift/RealmExamples.xcworkspace"
  774. if [[ ! -d "$workspace" ]]; then
  775. workspace="${workspace/swift/swift-$REALM_XCODE_VERSION}"
  776. fi
  777. examples="Simple TableView Migration Backlink GroupedTableView Encryption AppClip AppClipParent"
  778. versions="0 1 2 3 4 5"
  779. for example in $examples; do
  780. if [ "$example" = "Migration" ]; then
  781. # The migration example needs to be built for each schema version to ensure each compiles.
  782. for version in $versions; do
  783. xc -workspace "$workspace" -scheme "$example" -configuration "$CONFIGURATION" -sdk iphonesimulator build ARCHS=x86_64 "${CODESIGN_PARAMS[@]}" OTHER_SWIFT_FLAGS="\$(OTHER_SWIFT_FLAGS) -DSCHEMA_VERSION_$version"
  784. done
  785. else
  786. xc -workspace "$workspace" -scheme "$example" -configuration "$CONFIGURATION" -sdk iphonesimulator build ARCHS=x86_64 "${CODESIGN_PARAMS[@]}"
  787. fi
  788. done
  789. exit 0
  790. ;;
  791. "examples-osx")
  792. xc -workspace examples/osx/objc/RealmExamples.xcworkspace \
  793. -scheme JSONImport -configuration "${CONFIGURATION}" \
  794. -destination "platform=macOS,arch=$(uname -m)" \
  795. build "${CODESIGN_PARAMS[@]}"
  796. ;;
  797. "examples-tvos")
  798. workspace="examples/tvos/objc/RealmExamples.xcworkspace"
  799. examples="DownloadCache PreloadedData"
  800. for example in $examples; do
  801. xc -workspace "$workspace" -scheme "$example" -configuration "$CONFIGURATION" -sdk appletvsimulator build ARCHS=x86_64 "${CODESIGN_PARAMS[@]}"
  802. done
  803. exit 0
  804. ;;
  805. "examples-tvos-swift")
  806. workspace="examples/tvos/swift/RealmExamples.xcworkspace"
  807. if [[ ! -d "$workspace" ]]; then
  808. workspace="${workspace/swift/swift-$REALM_XCODE_VERSION}"
  809. fi
  810. examples="DownloadCache PreloadedData"
  811. for example in $examples; do
  812. xc -workspace "$workspace" -scheme "$example" -configuration "$CONFIGURATION" -sdk appletvsimulator build ARCHS=x86_64 "${CODESIGN_PARAMS[@]}"
  813. done
  814. exit 0
  815. ;;
  816. ######################################
  817. # Versioning
  818. ######################################
  819. "get-version")
  820. plist_get 'Realm/Realm-Info.plist' 'CFBundleShortVersionString'
  821. exit 0
  822. ;;
  823. "set-version")
  824. realm_version="$2"
  825. version_files="Realm/Realm-Info.plist"
  826. if [ -z "$realm_version" ]; then
  827. echo "You must specify a version."
  828. exit 1
  829. fi
  830. # The bundle version can contain only three groups of digits separated by periods,
  831. # so strip off any -beta.x tag from the end of the version string.
  832. bundle_version=$(echo "$realm_version" | cut -d - -f 1)
  833. for version_file in $version_files; do
  834. PlistBuddy -c "Set :CFBundleVersion $bundle_version" "$version_file"
  835. PlistBuddy -c "Set :CFBundleShortVersionString $realm_version" "$version_file"
  836. done
  837. sed -i '' "s/^VERSION=.*/VERSION=$realm_version/" dependencies.list
  838. sed -i '' "s/^let coreVersionStr =.*/let coreVersionStr = \"$REALM_CORE_VERSION\"/" Package.swift
  839. sed -i '' "s/^let cocoaVersionStr =.*/let cocoaVersionStr = \"$realm_version\"/" Package.swift
  840. sed -i '' "s/x.y.z Release notes (yyyy-MM-dd)/$realm_version Release notes ($(date '+%Y-%m-%d'))/" CHANGELOG.md
  841. exit 0
  842. ;;
  843. ######################################
  844. # Continuous Integration
  845. ######################################
  846. "ci-pr")
  847. mkdir -p build/reports
  848. export REALM_DISABLE_ANALYTICS=1
  849. export REALM_DISABLE_UPDATE_CHECKER=1
  850. # FIXME: Re-enable once CI can properly unlock the keychain
  851. export REALM_DISABLE_METADATA_ENCRYPTION=1
  852. # Make sure there aren't any lingering server processes from previous jobs
  853. pkill -9 mongo stitch || true
  854. # strip off the ios|tvos version specifier, e.g. the last part of: `ios-device-objc-ios8`
  855. if [[ "$target" =~ ^((ios|tvos)-device(-(objc|swift))?)(-(ios|tvos)[[:digit:]]+)?$ ]]; then
  856. export target=${BASH_REMATCH[1]}
  857. fi
  858. if [ "$target" = "docs" ]; then
  859. sh build.sh verify-docs
  860. elif [ "$target" = "swiftlint" ]; then
  861. sh build.sh verify-swiftlint
  862. else
  863. export sha=$GITHUB_PR_SOURCE_BRANCH
  864. export REALM_EXTRA_BUILD_ARGUMENTS='GCC_GENERATE_DEBUGGING_SYMBOLS=NO -allowProvisioningUpdates'
  865. if [[ "$target" = *ios* ]] || [[ "$target" = *tvos* ]] || [[ "$target" = *watchos* ]]; then
  866. sh build.sh prelaunch-simulator "$target"
  867. fi
  868. export REALM_SKIP_PRELAUNCH=1
  869. if [[ "$target" = *"server"* ]] || [[ "$target" = "swiftpm"* ]]; then
  870. mkdir .baas
  871. mv build/stitch .baas
  872. source "$(brew --prefix nvm)/nvm.sh" --no-use
  873. nvm install 16.5.0
  874. sh build.sh setup-baas
  875. fi
  876. # Reset CoreSimulator.log
  877. mkdir -p ~/Library/Logs/CoreSimulator
  878. echo > ~/Library/Logs/CoreSimulator/CoreSimulator.log
  879. failed=0
  880. sh build.sh "verify-$target" 2>&1 | tee build/build.log | xcpretty -r junit -o build/reports/junit.xml || failed=1
  881. 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
  882. echo "Known Xcode error detected. Running job again."
  883. if grep -E 'out of date and needs to be rebuilt' build/build.log; then
  884. rm -rf build/DerivedData
  885. fi
  886. failed=0
  887. sh build.sh "verify-$target" | tee build/build.log | xcpretty -r junit -o build/reports/junit.xml || failed=1
  888. elif [ "$failed" = "1" ] && tail ~/Library/Logs/CoreSimulator/CoreSimulator.log | grep -E "Operation not supported|Failed to lookup com.apple.coreservices.lsuseractivity.simulatorsupport"; then
  889. echo "Known Xcode error detected. Running job again."
  890. failed=0
  891. sh build.sh "verify-$target" | tee build/build.log | xcpretty -r junit -o build/reports/junit.xml || failed=1
  892. fi
  893. if [ "$failed" = "1" ]; then
  894. set +e
  895. printf "%s" "\n\n***\nbuild/build.log\n***\n\n" && cat build/build.log
  896. printf "%s" "\n\n***\nCoreSimulator.log\n***\n\n" && cat ~/Library/Logs/CoreSimulator/CoreSimulator.log
  897. exit 1
  898. fi
  899. fi
  900. if [ "$target" = "osx" ] && [ "$configuration" = "Debug" ]; then
  901. gcovr -r . -f ".*Realm.*" -e ".*Tests.*" -e ".*core.*" --xml > build/reports/coverage-report.xml
  902. WS=$(pwd | sed "s/\//\\\\\//g")
  903. sed -i ".bak" "s/<source>\./<source>${WS}/" build/reports/coverage-report.xml
  904. fi
  905. ;;
  906. ######################################
  907. # Release packaging
  908. ######################################
  909. "package-examples")
  910. ./scripts/package_examples.rb
  911. zip --symlinks -r realm-examples.zip examples -x "examples/installation/*"
  912. ;;
  913. "package-test-examples-objc")
  914. if ! VERSION=$(echo realm-objc-*.zip | grep -E -o '\d*\.\d*\.\d*-[a-z]*(\.\d*)?'); then
  915. VERSION=$(echo realm-objc-*.zip | grep -E -o '\d*\.\d*\.\d*')
  916. fi
  917. OBJC="realm-objc-${VERSION}"
  918. unzip "${OBJC}.zip"
  919. cp "$0" "${OBJC}"
  920. cp -r "${source_root}/scripts" "${OBJC}"
  921. cd "${OBJC}"
  922. sh build.sh examples-ios
  923. sh build.sh examples-tvos
  924. sh build.sh examples-osx
  925. cd ..
  926. rm -rf "${OBJC}"
  927. ;;
  928. "package-test-examples-swift")
  929. if ! VERSION=$(echo realm-swift-*.zip | grep -E -o '\d*\.\d*\.\d*-[a-z]*(\.\d*)?'); then
  930. VERSION=$(echo realm-swift-*.zip | grep -E -o '\d*\.\d*\.\d*')
  931. fi
  932. SWIFT="realm-swift-${VERSION}"
  933. unzip "${SWIFT}.zip"
  934. cp "$0" "${SWIFT}"
  935. cp -r "${source_root}/scripts" "${SWIFT}"
  936. cd "${SWIFT}"
  937. sh build.sh examples-ios-swift
  938. sh build.sh examples-tvos-swift
  939. cd ..
  940. rm -rf "${SWIFT}"
  941. ;;
  942. "package-ios-static")
  943. sh build.sh prelaunch-simulator
  944. sh build.sh ios-static
  945. cd build/ios-static
  946. zip --symlinks -r realm-framework-ios-static.zip Realm.xcframework
  947. ;;
  948. "package")
  949. PLATFORM="$2"
  950. REALM_SWIFT_VERSION=
  951. set_xcode_and_swift_versions
  952. sh build.sh "$PLATFORM-swift"
  953. cd "build/$PLATFORM"
  954. zip --symlinks -r "realm-framework-$PLATFORM-$REALM_XCODE_VERSION.zip" "swift-$REALM_XCODE_VERSION"
  955. ;;
  956. "package-release")
  957. LANG="$2"
  958. tempdir="$(mktemp -d "$TMPDIR"/realm-release-package-"${LANG}".XXXX)"
  959. extract_dir="$(mktemp -d "$TMPDIR"/realm-release-package-"${LANG}".XXXX)"
  960. version="$(sh build.sh get-version)"
  961. package_dir="${tempdir}/realm-${LANG}-${version}"
  962. mkdir -p "${package_dir}"
  963. if [[ "${LANG}" == "objc" ]]; then
  964. mkdir -p "${extract_dir}"
  965. unzip "${WORKSPACE}/realm-framework-ios-static.zip" -d "${package_dir}/ios-static"
  966. for platform in osx ios watchos tvos catalyst; do
  967. unzip "${WORKSPACE}/realm-framework-${platform}-${REALM_XCODE_VERSION}.zip" -d "${extract_dir}/${platform}"
  968. done
  969. # Add the arm64 slice to the watchOS library
  970. # The arm64 arch was added in Xcode 14, but we need the other
  971. # slices to be built with Xcode 13 so that they have bitcode.
  972. unzip "${WORKSPACE}/realm-framework-watchos-14.1.zip" -d "${extract_dir}/watchos"
  973. lipo "${extract_dir}/watchos/swift-14.1/Realm.xcframework/watchos-arm64_arm64_32_armv7k/Realm.framework/Realm" -thin arm64 -output watchos-arm64-slice
  974. lipo "${extract_dir}/watchos/swift-${REALM_XCODE_VERSION}/Realm.xcframework/watchos-arm64_32_armv7k/Realm.framework/Realm" watchos-arm64-slice -create -output watchos-fat
  975. mv watchos-fat "${extract_dir}/watchos/swift-${REALM_XCODE_VERSION}/Realm.xcframework/watchos-arm64_32_armv7k/Realm.framework/Realm"
  976. rm -r "${extract_dir}/watchos/swift-14.1"
  977. find "${extract_dir}" -name 'Realm.framework' \
  978. | sed 's/.*/-framework &/' \
  979. | xargs xcodebuild -create-xcframework -allow-internal-distribution -output "${package_dir}/Realm.xcframework"
  980. cp "${WORKSPACE}/Realm/Swift/RLMSupport.swift" "${package_dir}"
  981. rm -r "${extract_dir}"
  982. else
  983. xcode_versions=$(find . -name 'realm-framework-*-1*' | sed 's@./realm-framework-[a-z]*-\(.*\).zip@\1@' | sort -u)
  984. for xcode_version in $xcode_versions; do
  985. mkdir -p "${extract_dir}"
  986. for platform in osx ios watchos tvos catalyst; do
  987. unzip "realm-framework-$platform-$xcode_version.zip" -d "${extract_dir}/${platform}"
  988. done
  989. find "${extract_dir}" -name 'Realm.framework' \
  990. | sed 's/.*/-framework &/' \
  991. | xargs xcodebuild -create-xcframework -allow-internal-distribution -output "${package_dir}/${xcode_version}/Realm.xcframework"
  992. find "${extract_dir}" -name 'RealmSwift.framework' \
  993. | sed 's/.*/-framework &/' \
  994. | xargs xcodebuild -create-xcframework -allow-internal-distribution -output "${package_dir}/${xcode_version}/RealmSwift.xcframework"
  995. rm -r "${extract_dir}"
  996. done
  997. fi
  998. (
  999. cd "${WORKSPACE}"
  1000. cp -R plugin LICENSE "${package_dir}"
  1001. )
  1002. (
  1003. cd "${package_dir}"
  1004. unzip "${WORKSPACE}/realm-examples.zip"
  1005. cd examples
  1006. if [[ "${LANG}" == "objc" ]]; then
  1007. rm -rf ios/swift-* tvos/swift-*
  1008. else
  1009. rm -rf ios/objc osx tvos/objc
  1010. fi
  1011. )
  1012. cat > "${package_dir}"/docs.webloc <<EOF
  1013. <?xml version="1.0" encoding="UTF-8"?>
  1014. <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
  1015. <plist version="1.0">
  1016. <dict>
  1017. <key>URL</key>
  1018. <string>https://www.mongodb.com/docs/realm-sdks/${LANG}/${version}</string>
  1019. </dict>
  1020. </plist>
  1021. EOF
  1022. (
  1023. cd "${tempdir}"
  1024. zip --symlinks -r "realm-${LANG}-${version}.zip" "realm-${LANG}-${version}"
  1025. mv "realm-${LANG}-${version}.zip" "${WORKSPACE}"
  1026. )
  1027. ;;
  1028. "test-package-release")
  1029. # Generate a release package locally for testing purposes
  1030. # Real releases should always be done via Jenkins
  1031. if [ -z "${WORKSPACE}" ]; then
  1032. echo 'WORKSPACE must be set to a directory to assemble the release in'
  1033. exit 1
  1034. fi
  1035. if [ -d "${WORKSPACE}" ]; then
  1036. echo 'WORKSPACE directory should not already exist'
  1037. exit 1
  1038. fi
  1039. REALM_SOURCE="$(pwd)"
  1040. mkdir -p "$WORKSPACE"
  1041. WORKSPACE="$(cd "$WORKSPACE" && pwd)"
  1042. export WORKSPACE
  1043. cd "$WORKSPACE"
  1044. git clone --recursive "$REALM_SOURCE" realm-swift
  1045. cd realm-swift
  1046. echo 'Packaging iOS'
  1047. sh build.sh package-ios-static
  1048. cp build/ios-static/realm-framework-ios-static.zip .
  1049. sh build.sh package ios
  1050. cp "build/ios/realm-framework-ios-$REALM_XCODE_VERSION.zip" .
  1051. echo 'Packaging macOS'
  1052. sh build.sh package osx
  1053. cp "build/osx/realm-framework-osx-$REALM_XCODE_VERSION.zip" .
  1054. echo 'Packaging watchOS'
  1055. sh build.sh package watchos
  1056. cp "build/watchos/realm-framework-watchos-$REALM_XCODE_VERSION.zip" .
  1057. echo 'Packaging tvOS'
  1058. sh build.sh package tvos
  1059. cp "build/tvos/realm-framework-tvos-$REALM_XCODE_VERSION.zip" .
  1060. echo 'Packaging Catalyst'
  1061. sh build.sh package catalyst
  1062. cp "build/catalyst/realm-framework-catalyst-$REALM_XCODE_VERSION.zip" .
  1063. echo 'Packaging examples'
  1064. sh build.sh package-examples
  1065. echo 'Building final release packages'
  1066. export WORKSPACE="${WORKSPACE}/realm-swift"
  1067. sh build.sh package-release objc
  1068. sh build.sh package-release swift
  1069. echo 'Testing packaged examples'
  1070. sh build.sh package-test-examples-objc
  1071. sh build.sh package-test-examples-swift
  1072. ;;
  1073. "github-release")
  1074. if [ -z "${GITHUB_ACCESS_TOKEN}" ]; then
  1075. echo 'GITHUB_ACCESS_TOKEN must be set to create GitHub releases'
  1076. exit 1
  1077. fi
  1078. ./scripts/github_release.rb
  1079. ;;
  1080. "add-empty-changelog")
  1081. empty_section=$(cat <<EOS
  1082. x.y.z Release notes (yyyy-MM-dd)
  1083. =============================================================
  1084. ### Enhancements
  1085. * None.
  1086. ### Fixed
  1087. * <How to hit and notice issue? what was the impact?> ([#????](https://github.com/realm/realm-swift/issues/????), since v?.?.?)
  1088. * None.
  1089. <!-- ### Breaking Changes - ONLY INCLUDE FOR NEW MAJOR version -->
  1090. ### Compatibility
  1091. * Realm Studio: 13.0.2 or later.
  1092. * APIs are backwards compatible with all previous releases in the 10.x.y series.
  1093. * Carthage release for Swift is built with Xcode 14.3.
  1094. * CocoaPods: 1.10 or later.
  1095. * Xcode: 13.4-14.3.
  1096. ### Internal
  1097. * Upgraded realm-core from ? to ?
  1098. EOS)
  1099. changelog=$(cat CHANGELOG.md)
  1100. echo "$empty_section" > CHANGELOG.md
  1101. echo >> CHANGELOG.md
  1102. echo "$changelog" >> CHANGELOG.md
  1103. ;;
  1104. *)
  1105. echo "Unknown command '$COMMAND'"
  1106. usage
  1107. exit 1
  1108. ;;
  1109. esac