build.sh 46 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386
  1. #!/bin/bash
  2. ##################################################################################
  3. # Custom build tool for Realm Objective-C binding.
  4. #
  5. # (C) Copyright 2011-2015 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. # You can override the version of the core library
  15. : "${REALM_BASE_URL:="https://static.realm.io/downloads"}" # set it if you need to use a remote repo
  16. : "${REALM_CORE_VERSION:=$(sed -n 's/^REALM_CORE_VERSION=\(.*\)$/\1/p' "${source_root}/dependencies.list")}" # set to "current" to always use the current build
  17. # You can override the xcmode used
  18. : "${XCMODE:=xcodebuild}" # must be one of: xcodebuild (default), xcpretty, xctool
  19. # Provide a fallback value for TMPDIR, relevant for Xcode Bots
  20. : "${TMPDIR:=$(getconf DARWIN_USER_TEMP_DIR)}"
  21. PATH=/usr/libexec:$PATH
  22. if [ -n "${JENKINS_HOME}" ]; then
  23. XCPRETTY_PARAMS=(--no-utf --report junit --output build/reports/junit.xml)
  24. CODESIGN_PARAMS=(CODE_SIGN_IDENTITY='' CODE_SIGNING_REQUIRED=NO CODE_SIGNING_ALLOWED=NO)
  25. fi
  26. usage() {
  27. cat <<EOF
  28. Usage: sh $0 command [argument]
  29. command:
  30. clean: clean up/remove all generated files
  31. download-core: downloads core library (binary version)
  32. build: builds all iOS and macOS frameworks
  33. ios-static: builds fat iOS static framework
  34. ios-dynamic: builds iOS dynamic frameworks
  35. ios-swift: builds RealmSwift frameworks for iOS
  36. watchos: builds watchOS framwork
  37. watchos-swift: builds RealmSwift framework for watchOS
  38. tvos: builds tvOS framework
  39. tvos-swift: builds RealmSwift framework for tvOS
  40. osx: builds macOS framework
  41. osx-swift: builds RealmSwift framework for macOS
  42. xcframework [plats]: builds xcframeworks for Realm and RealmSwift for given platforms
  43. analyze-osx: analyzes macOS framework
  44. test: tests all iOS and macOS frameworks
  45. test-all: tests all iOS and macOS frameworks in both Debug and Release configurations
  46. test-ios-static: tests static iOS framework on 32-bit and 64-bit simulators
  47. test-ios-dynamic: tests dynamic iOS framework on 32-bit and 64-bit simulators
  48. test-ios-swift: tests RealmSwift iOS framework on 32-bit and 64-bit simulators
  49. test-ios-devices: tests ObjC & Swift iOS frameworks on all attached iOS devices
  50. test-ios-devices-objc: tests ObjC iOS framework on all attached iOS devices
  51. test-ios-devices-swift: tests Swift iOS framework on all attached iOS devices
  52. test-tvos: tests tvOS framework
  53. test-tvos-swift: tests RealmSwift tvOS framework
  54. test-tvos-devices: tests ObjC & Swift tvOS frameworks on all attached tvOS devices
  55. test-osx: tests macOS framework
  56. test-osx-swift: tests RealmSwift macOS framework
  57. test-catalyst: tests Mac Catalyst framework
  58. test-catalyst-swift: tests RealmSwift Mac Catalyst framework
  59. test-swiftpm: tests ObjC and Swift macOS frameworks via SwiftPM
  60. test-swiftui-ios: tests SwiftUI framework UI tests
  61. test-swiftui-server-osx: tests Server Sync in SwiftUI
  62. verify: verifies docs, osx, osx-swift, ios-static, ios-dynamic, ios-swift, ios-device, swiftui-ios in both Debug and Release configurations, swiftlint
  63. verify-osx-object-server: downloads the Realm Object Server and runs the Objective-C and Swift integration tests
  64. docs: builds docs in docs/output
  65. examples: builds all examples
  66. examples-ios: builds all static iOS examples
  67. examples-ios-swift: builds all Swift iOS examples
  68. examples-osx: builds all macOS examples
  69. get-version: get the current version
  70. set-version version: set the version
  71. cocoapods-setup: download realm-core and create a stub RLMPlatform.h file to enable building via CocoaPods
  72. argument:
  73. version: version in the x.y.z format
  74. environment variables:
  75. XCMODE: xcodebuild (default), xcpretty or xctool
  76. CONFIGURATION: Debug or Release (default)
  77. REALM_CORE_VERSION: version in x.y.z format or "current" to use local build
  78. REALM_EXTRA_BUILD_ARGUMENTS: additional arguments to pass to the build tool
  79. REALM_XCODE_VERSION: the version number of Xcode to use (e.g.: 8.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://realm.io \
  225. --github_url https://github.com/realm/realm-cocoa \
  226. --github-file-prefix "https://github.com/realm/realm-cocoa/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. # Downloading
  245. ######################################
  246. copy_core() {
  247. local src="$1"
  248. rm -rf core
  249. mkdir core
  250. ditto "$src" core
  251. # XCFramework processing only copies the "realm" headers, so put the third-party ones in a known location
  252. mkdir -p core/include
  253. find "$src" -name external -exec ditto "{}" core/include/external \; -quit
  254. }
  255. download_common() {
  256. local tries_left=3 version url error suffix
  257. suffix='-xcframework'
  258. version=$REALM_CORE_VERSION
  259. url="${REALM_BASE_URL}/core/realm-monorepo-xcframework-v${version}.tar.xz"
  260. # First check if we need to do anything
  261. if [ -e core ]; then
  262. if [ -e core/version.txt ]; then
  263. if [ "$(cat core/version.txt)" == "$version" ]; then
  264. echo "Version ${version} already present"
  265. exit 0
  266. else
  267. echo "Switching from version $(cat core/version.txt) to ${version}"
  268. fi
  269. else
  270. if [ "$(find core -name librealm-monorepo.a)" ]; then
  271. echo 'Using existing custom core build without checking version'
  272. exit 0
  273. fi
  274. fi
  275. fi
  276. # We may already have this version downloaded and just need to set it as
  277. # the active one
  278. local versioned_dir="realm-core-${version}${suffix}"
  279. if [ -e "$versioned_dir/version.txt" ]; then
  280. echo "Setting ${version} as the active version"
  281. copy_core "$versioned_dir"
  282. exit 0
  283. fi
  284. echo "Downloading dependency: ${version} from ${url}"
  285. if [ -z "$TMPDIR" ]; then
  286. TMPDIR='/tmp'
  287. fi
  288. local temp_dir=$(dirname "$TMPDIR/waste")/realm-core-tmp
  289. mkdir -p "$temp_dir"
  290. local tar_path="${temp_dir}/${versioned_dir}.tar.xz"
  291. local temp_path="${tar_path}.tmp"
  292. while [ 0 -lt $tries_left ] && [ ! -f "$tar_path" ]; do
  293. if ! error=$(/usr/bin/curl --fail --silent --show-error --location "$url" --output "$temp_path" 2>&1); then
  294. tries_left=$((tries_left-1))
  295. else
  296. mv "$temp_path" "$tar_path"
  297. fi
  298. done
  299. if [ ! -f "$tar_path" ]; then
  300. printf "Downloading core failed:\n\t%s\n\t%s\n" "$url" "$error"
  301. exit 1
  302. fi
  303. (
  304. cd "$temp_dir"
  305. rm -rf core
  306. tar xf "$tar_path" --xz
  307. if [ ! -f core/version.txt ]; then
  308. printf %s "${version}" > core/version.txt
  309. fi
  310. mv core "${versioned_dir}"
  311. )
  312. rm -rf "${versioned_dir}"
  313. mv "${temp_dir}/${versioned_dir}" .
  314. copy_core "$versioned_dir"
  315. }
  316. ######################################
  317. # Variables
  318. ######################################
  319. COMMAND="$1"
  320. # Use Debug config if command ends with -debug, otherwise default to Release
  321. case "$COMMAND" in
  322. *-debug)
  323. COMMAND="${COMMAND%-debug}"
  324. CONFIGURATION="Debug"
  325. ;;
  326. esac
  327. export CONFIGURATION=${CONFIGURATION:-Release}
  328. # Pre-choose Xcode and Swift versions for those operations that do not set them
  329. REALM_XCODE_VERSION=${xcode_version:-$REALM_XCODE_VERSION}
  330. REALM_SWIFT_VERSION=${swift_version:-$REALM_SWIFT_VERSION}
  331. source "${source_root}/scripts/swift-version.sh"
  332. set_xcode_and_swift_versions
  333. ######################################
  334. # Commands
  335. ######################################
  336. case "$COMMAND" in
  337. ######################################
  338. # Clean
  339. ######################################
  340. "clean")
  341. find . -type d -name build -exec rm -r "{}" +
  342. exit 0
  343. ;;
  344. ######################################
  345. # Dependencies
  346. ######################################
  347. "download-core")
  348. download_common
  349. exit 0
  350. ;;
  351. "setup-baas")
  352. ruby Realm/ObjectServerTests/setup_baas.rb
  353. exit 0
  354. ;;
  355. "prelaunch-simulator")
  356. if [ -z "$REALM_SKIP_PRELAUNCH" ]; then
  357. sh "${source_root}/scripts/reset-simulators.sh" "$1"
  358. fi
  359. ;;
  360. ######################################
  361. # Building
  362. ######################################
  363. "build")
  364. sh build.sh ios-static
  365. sh build.sh ios-dynamic
  366. sh build.sh ios-swift
  367. sh build.sh watchos
  368. sh build.sh watchos-swift
  369. sh build.sh tvos
  370. sh build.sh tvos-swift
  371. sh build.sh osx
  372. sh build.sh osx-swift
  373. exit 0
  374. ;;
  375. "ios-static")
  376. build_combined 'Realm iOS static' Realm iphoneos iphonesimulator "-static"
  377. exit 0
  378. ;;
  379. "ios-dynamic")
  380. build_combined Realm Realm iphoneos iphonesimulator
  381. exit 0
  382. ;;
  383. "ios-swift")
  384. sh build.sh ios-dynamic
  385. build_combined RealmSwift RealmSwift iphoneos iphonesimulator '' "/swift-$REALM_XCODE_VERSION"
  386. copy_realm_framework ios
  387. exit 0
  388. ;;
  389. "watchos")
  390. build_combined Realm Realm watchos watchsimulator
  391. exit 0
  392. ;;
  393. "watchos-swift")
  394. sh build.sh watchos
  395. build_combined RealmSwift RealmSwift watchos watchsimulator '' "/swift-$REALM_XCODE_VERSION"
  396. copy_realm_framework watchos
  397. exit 0
  398. ;;
  399. "tvos")
  400. build_combined Realm Realm appletvos appletvsimulator
  401. exit 0
  402. ;;
  403. "tvos-swift")
  404. sh build.sh tvos
  405. build_combined RealmSwift RealmSwift appletvos appletvsimulator '' "/swift-$REALM_XCODE_VERSION"
  406. copy_realm_framework tvos
  407. exit 0
  408. ;;
  409. "osx")
  410. xc -scheme Realm -configuration "$CONFIGURATION"
  411. clean_retrieve "build/DerivedData/Realm/Build/Products/$CONFIGURATION/Realm.framework" "build/osx" "Realm.framework"
  412. exit 0
  413. ;;
  414. "osx-swift")
  415. sh build.sh osx
  416. xc -scheme RealmSwift -configuration "$CONFIGURATION" build
  417. destination="build/osx/swift-$REALM_XCODE_VERSION"
  418. clean_retrieve "build/DerivedData/Realm/Build/Products/$CONFIGURATION/RealmSwift.framework" "$destination" "RealmSwift.framework"
  419. clean_retrieve "build/osx/Realm.framework" "$destination" "Realm.framework"
  420. exit 0
  421. ;;
  422. "swiftui")
  423. xc -scheme SwiftUITestHost -configuration $CONFIGURATION -sdk iphonesimulator build
  424. ;;
  425. "catalyst")
  426. export REALM_SDKROOT=iphoneos
  427. xc -scheme Realm -configuration "$CONFIGURATION" -destination variant='Mac Catalyst'
  428. clean_retrieve "build/DerivedData/Realm/Build/Products/$CONFIGURATION-maccatalyst/Realm.framework" "build/catalyst" "Realm.framework"
  429. ;;
  430. "catalyst-swift")
  431. sh build.sh catalyst
  432. export REALM_SDKROOT=iphoneos
  433. xc -scheme 'RealmSwift' -configuration "$CONFIGURATION" -destination variant='Mac Catalyst' build
  434. destination="build/catalyst/swift-$REALM_XCODE_VERSION"
  435. clean_retrieve "build/DerivedData/Realm/Build/Products/$CONFIGURATION-maccatalyst/RealmSwift.framework" "$destination" "RealmSwift.framework"
  436. clean_retrieve "build/catalyst/Realm.framework" "$destination" "Realm.framework"
  437. ;;
  438. "xcframework")
  439. # Build all of the requested frameworks
  440. shift
  441. PLATFORMS="${*:-osx ios watchos tvos catalyst}"
  442. for platform in $PLATFORMS; do
  443. sh build.sh "$platform-swift"
  444. done
  445. # Assemble them into xcframeworks
  446. rm -rf build/*.xcframework
  447. find build/DerivedData/Realm/Build/Products -name 'Realm.framework' \
  448. | grep -v '\-static' \
  449. | sed 's/.*/-framework &/' \
  450. | xargs xcodebuild -create-xcframework -allow-internal-distribution -output build/Realm.xcframework
  451. find build/DerivedData/Realm/Build/Products -name 'RealmSwift.framework' \
  452. | sed 's/.*/-framework &/' \
  453. | xargs xcodebuild -create-xcframework -allow-internal-distribution -output build/RealmSwift.xcframework
  454. exit 0
  455. ;;
  456. ######################################
  457. # Analysis
  458. ######################################
  459. "analyze-osx")
  460. xc -scheme Realm -configuration "$CONFIGURATION" analyze
  461. exit 0
  462. ;;
  463. ######################################
  464. # Testing
  465. ######################################
  466. "test")
  467. set +e # Run both sets of tests even if the first fails
  468. failed=0
  469. sh build.sh test-ios-static || failed=1
  470. sh build.sh test-ios-dynamic || failed=1
  471. sh build.sh test-ios-swift || failed=1
  472. sh build.sh test-ios-devices || failed=1
  473. sh build.sh test-tvos-devices || failed=1
  474. sh build.sh test-osx || failed=1
  475. sh build.sh test-osx-swift || failed=1
  476. sh build.sh test-catalyst || failed=1
  477. sh build.sh test-catalyst-swift || failed=1
  478. exit $failed
  479. ;;
  480. "test-all")
  481. set +e
  482. failed=0
  483. sh build.sh test || failed=1
  484. sh build.sh test-debug || failed=1
  485. exit $failed
  486. ;;
  487. "test-ios-static")
  488. test_ios_static "name=iPhone 8"
  489. exit 0
  490. ;;
  491. "test-ios-dynamic")
  492. xctest Realm -configuration "$CONFIGURATION" -sdk iphonesimulator -destination 'name=iPhone 8'
  493. exit 0
  494. ;;
  495. "test-ios-swift")
  496. xctest RealmSwift -configuration "$CONFIGURATION" -sdk iphonesimulator -destination 'name=iPhone 8'
  497. exit 0
  498. ;;
  499. "test-ios-devices")
  500. failed=0
  501. trap "failed=1" ERR
  502. sh build.sh test-ios-devices-objc
  503. sh build.sh test-ios-devices-swift
  504. exit $failed
  505. ;;
  506. "test-ios-devices-objc")
  507. test_devices iphoneos "Realm" "$CONFIGURATION"
  508. exit $?
  509. ;;
  510. "test-ios-devices-swift")
  511. test_devices iphoneos "RealmSwift" "$CONFIGURATION"
  512. exit $?
  513. ;;
  514. "test-tvos")
  515. destination="Apple TV"
  516. xctest Realm -configuration "$CONFIGURATION" -sdk appletvsimulator -destination "name=$destination"
  517. exit $?
  518. ;;
  519. "test-tvos-swift")
  520. destination="Apple TV"
  521. xctest RealmSwift -configuration "$CONFIGURATION" -sdk appletvsimulator -destination "name=$destination"
  522. exit $?
  523. ;;
  524. "test-tvos-devices")
  525. test_devices appletvos TestHost "$CONFIGURATION"
  526. ;;
  527. "test-osx")
  528. COVERAGE_PARAMS=()
  529. if [[ "$CONFIGURATION" == "Debug" ]]; then
  530. COVERAGE_PARAMS=(GCC_GENERATE_TEST_COVERAGE_FILES=YES GCC_INSTRUMENT_PROGRAM_FLOW_ARCS=YES)
  531. fi
  532. xctest Realm -configuration "$CONFIGURATION" "${COVERAGE_PARAMS[@]}"
  533. exit 0
  534. ;;
  535. "test-osx-swift")
  536. xctest RealmSwift -configuration $CONFIGURATION
  537. exit 0
  538. ;;
  539. "test-osx-object-server")
  540. xctest 'Object Server Tests' -configuration "$CONFIGURATION" -sdk macosx
  541. exit 0
  542. ;;
  543. test-swiftpm-ios)
  544. cd examples/installation
  545. sh build.sh test-ios-swift-spm
  546. exit 0
  547. ;;
  548. test-swiftpm*)
  549. SANITIZER=$(echo "$COMMAND" | cut -d - -f 3)
  550. if [ -n "$SANITIZER" ]; then
  551. SANITIZER="--sanitize $SANITIZER"
  552. export ASAN_OPTIONS='check_initialization_order=true:detect_stack_use_after_return=true'
  553. fi
  554. xcrun swift package resolve
  555. xcrun swift test -Xcc -g0 --configuration "$(echo "$CONFIGURATION" | tr "[:upper:]" "[:lower:]")" $SANITIZER
  556. exit 0
  557. ;;
  558. "test-swiftui-ios")
  559. xctest 'SwiftUITestHost' -configuration "$CONFIGURATION" -sdk iphonesimulator -destination 'name=iPhone 8'
  560. exit 0
  561. ;;
  562. "test-catalyst")
  563. export REALM_SDKROOT=iphoneos
  564. xctest Realm -configuration "$CONFIGURATION" -destination 'platform=macOS,variant=Mac Catalyst' CODE_SIGN_IDENTITY=''
  565. exit 0
  566. ;;
  567. "test-catalyst-swift")
  568. export REALM_SDKROOT=iphoneos
  569. xctest RealmSwift -configuration "$CONFIGURATION" -destination 'platform=macOS,variant=Mac Catalyst' CODE_SIGN_IDENTITY=''
  570. exit 0
  571. ;;
  572. "test-swiftui-server-osx")
  573. xctest 'SwiftUISyncTestHost' -configuration "$CONFIGURATION" -sdk macosx -destination 'platform=macOS'
  574. exit 0
  575. ;;
  576. ######################################
  577. # Full verification
  578. ######################################
  579. "verify")
  580. sh build.sh verify-cocoapods
  581. sh build.sh verify-docs
  582. sh build.sh verify-osx
  583. sh build.sh verify-osx-debug
  584. sh build.sh verify-osx-swift
  585. sh build.sh verify-osx-swift-debug
  586. sh build.sh verify-ios-static
  587. sh build.sh verify-ios-static-debug
  588. sh build.sh verify-ios-dynamic
  589. sh build.sh verify-ios-dynamic-debug
  590. sh build.sh verify-ios-swift
  591. sh build.sh verify-ios-swift-debug
  592. sh build.sh verify-ios-device-objc
  593. sh build.sh verify-ios-device-swift
  594. sh build.sh verify-watchos
  595. sh build.sh verify-tvos
  596. sh build.sh verify-tvos-debug
  597. sh build.sh verify-tvos-device
  598. sh build.sh verify-swiftlint
  599. sh build.sh verify-swiftpm
  600. sh build.sh verify-osx-object-server
  601. sh build.sh verify-catalyst
  602. sh build.sh verify-catalyst-swift
  603. sh build.sh verify-swiftui-ios
  604. sh build.sh verify-swiftui-server-osx
  605. ;;
  606. "verify-cocoapods")
  607. if [[ -d .git ]]; then
  608. # Verify the current branch, unless one was already specified in the sha environment variable.
  609. if [[ -z $sha ]]; then
  610. export sha=$(git rev-parse --abbrev-ref HEAD)
  611. fi
  612. if [[ $(git log -1 '@{push}..') != "" ]] || ! git diff-index --quiet HEAD; then
  613. echo "WARNING: verify-cocoapods will test the latest revision of $sha found on GitHub."
  614. echo " Any unpushed local changes will not be tested."
  615. echo ""
  616. sleep 1
  617. fi
  618. fi
  619. sh build.sh verify-cocoapods-ios
  620. sh build.sh verify-cocoapods-ios-dynamic
  621. sh build.sh verify-cocoapods-osx
  622. sh build.sh verify-cocoapods-watchos
  623. # https://github.com/CocoaPods/CocoaPods/issues/7708
  624. export EXPANDED_CODE_SIGN_IDENTITY=''
  625. cd examples/installation
  626. sh build.sh test-ios-objc-cocoapods
  627. sh build.sh test-ios-objc-cocoapods-dynamic
  628. sh build.sh test-ios-swift-cocoapods
  629. sh build.sh test-osx-objc-cocoapods
  630. sh build.sh test-osx-swift-cocoapods
  631. sh build.sh test-catalyst-objc-cocoapods
  632. sh build.sh test-catalyst-objc-cocoapods-dynamic
  633. sh build.sh test-catalyst-swift-cocoapods
  634. sh build.sh test-watchos-objc-cocoapods
  635. sh build.sh test-watchos-swift-cocoapods
  636. ;;
  637. verify-cocoapods-ios-dynamic)
  638. PLATFORM=$(echo "$COMMAND" | cut -d - -f 3)
  639. # https://github.com/CocoaPods/CocoaPods/issues/7708
  640. export EXPANDED_CODE_SIGN_IDENTITY=''
  641. cd examples/installation
  642. sh build.sh test-ios-objc-cocoapods-dynamic
  643. ;;
  644. verify-cocoapods-*)
  645. PLATFORM=$(echo "$COMMAND" | cut -d - -f 3)
  646. # https://github.com/CocoaPods/CocoaPods/issues/7708
  647. export EXPANDED_CODE_SIGN_IDENTITY=''
  648. cd examples/installation
  649. sh build.sh "test-$PLATFORM-swift-cocoapods"
  650. ;;
  651. "verify-osx-encryption")
  652. REALM_ENCRYPT_ALL=YES sh build.sh test-osx
  653. exit 0
  654. ;;
  655. "verify-osx")
  656. REALM_EXTRA_BUILD_ARGUMENTS="$REALM_EXTRA_BUILD_ARGUMENTS -workspace examples/osx/objc/RealmExamples.xcworkspace" \
  657. sh build.sh test-osx
  658. sh build.sh examples-osx
  659. (
  660. cd examples/osx/objc/build/DerivedData/RealmExamples/Build/Products/$CONFIGURATION
  661. DYLD_FRAMEWORK_PATH=. ./JSONImport >/dev/null
  662. )
  663. exit 0
  664. ;;
  665. "verify-osx-swift")
  666. sh build.sh test-osx-swift
  667. exit 0
  668. ;;
  669. "verify-swiftui-ios")
  670. sh build.sh test-swiftui-ios
  671. exit 0
  672. ;;
  673. "verify-swiftui-server-osx")
  674. sh build.sh test-swiftui-server-osx
  675. exit 0
  676. ;;
  677. "verify-osx-swift-evolution")
  678. export REALM_EXTRA_BUILD_ARGUMENTS="$REALM_EXTRA_BUILD_ARGUMENTS REALM_BUILD_LIBRARY_FOR_DISTRIBUTION=YES"
  679. sh build.sh test-osx-swift
  680. exit 0
  681. ;;
  682. "verify-ios-static")
  683. REALM_EXTRA_BUILD_ARGUMENTS="$REALM_EXTRA_BUILD_ARGUMENTS -workspace examples/ios/objc/RealmExamples.xcworkspace" \
  684. sh build.sh test-ios-static
  685. sh build.sh examples-ios
  686. ;;
  687. "verify-ios-dynamic")
  688. sh build.sh test-ios-dynamic
  689. ;;
  690. "verify-ios-swift")
  691. REALM_EXTRA_BUILD_ARGUMENTS="$REALM_EXTRA_BUILD_ARGUMENTS -workspace examples/ios/swift/RealmExamples.xcworkspace" \
  692. sh build.sh test-ios-swift
  693. sh build.sh examples-ios-swift
  694. ;;
  695. "verify-ios-swift-evolution")
  696. export REALM_EXTRA_BUILD_ARGUMENTS="$REALM_EXTRA_BUILD_ARGUMENTS REALM_BUILD_LIBRARY_FOR_DISTRIBUTION=YES"
  697. sh build.sh test-ios-swift
  698. exit 0
  699. ;;
  700. "verify-ios-device-objc")
  701. sh build.sh test-ios-devices-objc
  702. exit 0
  703. ;;
  704. "verify-ios-device-swift")
  705. sh build.sh test-ios-devices-swift
  706. exit 0
  707. ;;
  708. "verify-docs")
  709. sh build.sh docs
  710. for lang in swift objc; do
  711. undocumented="docs/${lang}_output/undocumented.json"
  712. if ruby -rjson -e "j = JSON.parse(File.read('docs/${lang}_output/undocumented.json')); exit j['warnings'].length != 0"; then
  713. echo "Undocumented Realm $lang declarations:"
  714. cat "$undocumented"
  715. exit 1
  716. fi
  717. done
  718. exit 0
  719. ;;
  720. "verify-watchos")
  721. sh build.sh watchos-swift
  722. exit 0
  723. ;;
  724. "verify-tvos")
  725. REALM_EXTRA_BUILD_ARGUMENTS="$REALM_EXTRA_BUILD_ARGUMENTS -workspace examples/tvos/objc/RealmExamples.xcworkspace" \
  726. sh build.sh test-tvos
  727. sh build.sh examples-tvos
  728. exit 0
  729. ;;
  730. "verify-tvos-swift")
  731. REALM_EXTRA_BUILD_ARGUMENTS="$REALM_EXTRA_BUILD_ARGUMENTS -workspace examples/tvos/swift/RealmExamples.xcworkspace" \
  732. sh build.sh test-tvos-swift
  733. sh build.sh examples-tvos-swift
  734. exit 0
  735. ;;
  736. "verify-tvos-swift-evolution")
  737. export REALM_EXTRA_BUILD_ARGUMENTS="$REALM_EXTRA_BUILD_ARGUMENTS REALM_BUILD_LIBRARY_FOR_DISTRIBUTION=YES"
  738. sh build.sh test-tvos-swift
  739. exit 0
  740. ;;
  741. "verify-tvos-device")
  742. sh build.sh test-tvos-devices
  743. exit 0
  744. ;;
  745. "verify-swiftlint")
  746. swiftlint lint --strict
  747. exit 0
  748. ;;
  749. verify-swiftpm*)
  750. sh build.sh "test-$(echo "$COMMAND" | cut -d - -f 2-)"
  751. exit 0
  752. ;;
  753. "verify-osx-object-server")
  754. sh build.sh test-osx-object-server
  755. exit 0
  756. ;;
  757. "verify-catalyst")
  758. sh build.sh test-catalyst
  759. exit 0
  760. ;;
  761. "verify-catalyst-swift")
  762. sh build.sh test-catalyst-swift
  763. exit 0
  764. ;;
  765. "verify-xcframework")
  766. sh build.sh xcframework
  767. exit 0
  768. ;;
  769. ######################################
  770. # Docs
  771. ######################################
  772. "docs")
  773. build_docs objc
  774. build_docs swift
  775. exit 0
  776. ;;
  777. ######################################
  778. # Examples
  779. ######################################
  780. "examples")
  781. sh build.sh clean
  782. sh build.sh prelaunch-simulator
  783. export REALM_SKIP_PRELAUNCH=1
  784. sh build.sh examples-ios
  785. sh build.sh examples-ios-swift
  786. sh build.sh examples-osx
  787. sh build.sh examples-tvos
  788. sh build.sh examples-tvos-swift
  789. exit 0
  790. ;;
  791. "examples-ios")
  792. workspace="examples/ios/objc/RealmExamples.xcworkspace"
  793. pod install --project-directory="$workspace/.." --no-repo-update
  794. examples="Simple TableView Migration Backlink GroupedTableView RACTableView Encryption Draw"
  795. versions="0 1 2 3 4 5"
  796. for example in $examples; do
  797. if [ "$example" = "Migration" ]; then
  798. # The migration example needs to be built for each schema version to ensure each compiles.
  799. for version in $versions; do
  800. xc -workspace "$workspace" -scheme "$example" -configuration "$CONFIGURATION" -sdk iphonesimulator build ARCHS=x86_64 "${CODESIGN_PARAMS[@]}" GCC_PREPROCESSOR_DEFINITIONS="\$(GCC_PREPROCESSOR_DEFINITIONS) SCHEMA_VERSION_$version"
  801. done
  802. else
  803. xc -workspace "$workspace" -scheme "$example" -configuration "$CONFIGURATION" -sdk iphonesimulator build ARCHS=x86_64 "${CODESIGN_PARAMS[@]}"
  804. fi
  805. done
  806. if [ -n "${JENKINS_HOME}" ]; then
  807. xc -workspace "$workspace" -scheme Extension -configuration "$CONFIGURATION" -sdk iphonesimulator build ARCHS=x86_64 "${CODESIGN_PARAMS[@]}"
  808. fi
  809. exit 0
  810. ;;
  811. "examples-ios-swift")
  812. workspace="examples/ios/swift/RealmExamples.xcworkspace"
  813. if [[ ! -d "$workspace" ]]; then
  814. workspace="${workspace/swift/swift-$REALM_XCODE_VERSION}"
  815. fi
  816. examples="Simple TableView Migration Backlink GroupedTableView Encryption AppClip AppClipParent"
  817. versions="0 1 2 3 4 5"
  818. for example in $examples; do
  819. if [ "$example" = "Migration" ]; then
  820. # The migration example needs to be built for each schema version to ensure each compiles.
  821. for version in $versions; do
  822. xc -workspace "$workspace" -scheme "$example" -configuration "$CONFIGURATION" -sdk iphonesimulator build ARCHS=x86_64 "${CODESIGN_PARAMS[@]}" OTHER_SWIFT_FLAGS="\$(OTHER_SWIFT_FLAGS) -DSCHEMA_VERSION_$version"
  823. done
  824. else
  825. xc -workspace "$workspace" -scheme "$example" -configuration "$CONFIGURATION" -sdk iphonesimulator build ARCHS=x86_64 "${CODESIGN_PARAMS[@]}"
  826. fi
  827. done
  828. exit 0
  829. ;;
  830. "examples-osx")
  831. xc -workspace examples/osx/objc/RealmExamples.xcworkspace -scheme JSONImport -configuration "${CONFIGURATION}" build "${CODESIGN_PARAMS[@]}"
  832. ;;
  833. "examples-tvos")
  834. workspace="examples/tvos/objc/RealmExamples.xcworkspace"
  835. examples="DownloadCache PreloadedData"
  836. for example in $examples; do
  837. xc -workspace "$workspace" -scheme "$example" -configuration "$CONFIGURATION" -sdk appletvsimulator build ARCHS=x86_64 "${CODESIGN_PARAMS[@]}"
  838. done
  839. exit 0
  840. ;;
  841. "examples-tvos-swift")
  842. workspace="examples/tvos/swift/RealmExamples.xcworkspace"
  843. if [[ ! -d "$workspace" ]]; then
  844. workspace="${workspace/swift/swift-$REALM_XCODE_VERSION}"
  845. fi
  846. examples="DownloadCache PreloadedData"
  847. for example in $examples; do
  848. xc -workspace "$workspace" -scheme "$example" -configuration "$CONFIGURATION" -sdk appletvsimulator build ARCHS=x86_64 "${CODESIGN_PARAMS[@]}"
  849. done
  850. exit 0
  851. ;;
  852. ######################################
  853. # Versioning
  854. ######################################
  855. "get-version")
  856. plist_get 'Realm/Realm-Info.plist' 'CFBundleShortVersionString'
  857. exit 0
  858. ;;
  859. "set-version")
  860. realm_version="$2"
  861. version_files="Realm/Realm-Info.plist"
  862. if [ -z "$realm_version" ]; then
  863. echo "You must specify a version."
  864. exit 1
  865. fi
  866. # The bundle version can contain only three groups of digits separated by periods,
  867. # so strip off any -beta.x tag from the end of the version string.
  868. bundle_version=$(echo "$realm_version" | cut -d - -f 1)
  869. for version_file in $version_files; do
  870. PlistBuddy -c "Set :CFBundleVersion $bundle_version" "$version_file"
  871. PlistBuddy -c "Set :CFBundleShortVersionString $realm_version" "$version_file"
  872. done
  873. sed -i '' "s/^VERSION=.*/VERSION=$realm_version/" dependencies.list
  874. sed -i '' "s/^let coreVersionStr =.*/let coreVersionStr = \"$REALM_CORE_VERSION\"/" Package.swift
  875. sed -i '' "s/^let cocoaVersionStr =.*/let cocoaVersionStr = \"$realm_version\"/" Package.swift
  876. sed -i '' "s/x.y.z Release notes (yyyy-MM-dd)/$realm_version Release notes ($(date '+%Y-%m-%d'))/" CHANGELOG.md
  877. exit 0
  878. ;;
  879. ######################################
  880. # Bitcode Detection
  881. ######################################
  882. "binary-has-bitcode")
  883. # Disable pipefail as grep -q will make otool fail due to exiting
  884. # before reading all the output
  885. set +o pipefail
  886. BINARY="$2"
  887. if otool -l "$BINARY" | grep -q "segname __LLVM"; then
  888. exit 0
  889. fi
  890. # Work around rdar://21826157 by checking for bitcode in thin binaries
  891. # Get architectures for binary
  892. archs="$(lipo -info "$BINARY" | rev | cut -d ':' -f1 | rev)"
  893. archs_array=( $archs )
  894. if [[ ${#archs_array[@]} -lt 2 ]]; then
  895. echo 'Error: Built library is not a fat binary'
  896. exit 1 # Early exit if not a fat binary
  897. fi
  898. TEMPDIR=$(mktemp -d $TMPDIR/realm-bitcode-check.XXXX)
  899. for arch in $archs; do
  900. lipo -thin "$arch" "$BINARY" -output "$TEMPDIR/$arch"
  901. if otool -l "$TEMPDIR/$arch" | grep -q "segname __LLVM"; then
  902. exit 0
  903. fi
  904. done
  905. echo 'Error: Built library does not contain bitcode'
  906. exit 1
  907. ;;
  908. ######################################
  909. # CocoaPods
  910. ######################################
  911. "cocoapods-setup")
  912. if [ ! -f core/version.txt ]; then
  913. sh build.sh download-core
  914. fi
  915. rm -rf include
  916. mkdir -p include
  917. cp -R core/realm-monorepo.xcframework/ios-armv7_arm64/Headers include/core
  918. mkdir -p include
  919. echo '' > Realm/RLMPlatform.h
  920. cp Realm/*.h Realm/*.hpp include
  921. ;;
  922. ######################################
  923. # Continuous Integration
  924. ######################################
  925. "ci-pr")
  926. mkdir -p build/reports
  927. export REALM_DISABLE_ANALYTICS=1
  928. export REALM_DISABLE_UPDATE_CHECKER=1
  929. # FIXME: Re-enable once CI can properly unlock the keychain
  930. export REALM_DISABLE_METADATA_ENCRYPTION=1
  931. # Make sure there aren't any lingering server processes from previous jobs
  932. pkill -9 mongo stitch || true
  933. # strip off the ios|tvos version specifier, e.g. the last part of: `ios-device-objc-ios8`
  934. if [[ "$target" =~ ^((ios|tvos)-device(-(objc|swift))?)(-(ios|tvos)[[:digit:]]+)?$ ]]; then
  935. export target=${BASH_REMATCH[1]}
  936. fi
  937. if [ "$target" = "docs" ]; then
  938. sh build.sh verify-docs
  939. elif [ "$target" = "swiftlint" ]; then
  940. sh build.sh verify-swiftlint
  941. else
  942. export sha=$GITHUB_PR_SOURCE_BRANCH
  943. export REALM_EXTRA_BUILD_ARGUMENTS='GCC_GENERATE_DEBUGGING_SYMBOLS=NO -allowProvisioningUpdates'
  944. if [[ "$target" = *ios* ]] || [[ "$target" = *tvos* ]] || [[ "$target" = *watchos* ]]; then
  945. sh build.sh prelaunch-simulator "$target"
  946. fi
  947. export REALM_SKIP_PRELAUNCH=1
  948. if [[ "$target" = *"server"* ]] || [[ "$target" = "swiftpm"* ]]; then
  949. mkdir .baas
  950. mv build/stitch .baas
  951. source "$(brew --prefix nvm)/nvm.sh" --no-use
  952. nvm install 13.14.0
  953. sh build.sh setup-baas
  954. fi
  955. # Reset CoreSimulator.log
  956. mkdir -p ~/Library/Logs/CoreSimulator
  957. echo > ~/Library/Logs/CoreSimulator/CoreSimulator.log
  958. failed=0
  959. sh build.sh "verify-$target" 2>&1 | tee build/build.log | xcpretty -r junit -o build/reports/junit.xml || failed=1
  960. if [ "$failed" = "1" ] && grep -E 'DTXProxyChannel|DTXChannel|out of date and needs to be rebuilt|operation never finished bootstrapping' build/build.log ; then
  961. echo "Known Xcode error detected. Running job again."
  962. if grep -E 'out of date and needs to be rebuilt' build/build.log; then
  963. rm -rf build/DerivedData
  964. fi
  965. failed=0
  966. sh build.sh "verify-$target" | tee build/build.log | xcpretty -r junit -o build/reports/junit.xml || failed=1
  967. elif [ "$failed" = "1" ] && tail ~/Library/Logs/CoreSimulator/CoreSimulator.log | grep -E "Operation not supported|Failed to lookup com.apple.coreservices.lsuseractivity.simulatorsupport"; then
  968. echo "Known Xcode error detected. Running job again."
  969. failed=0
  970. sh build.sh "verify-$target" | tee build/build.log | xcpretty -r junit -o build/reports/junit.xml || failed=1
  971. fi
  972. if [ "$failed" = "1" ]; then
  973. set +e
  974. printf "%s" "\n\n***\nbuild/build.log\n***\n\n" && cat build/build.log
  975. printf "%s" "\n\n***\nCoreSimulator.log\n***\n\n" && cat ~/Library/Logs/CoreSimulator/CoreSimulator.log
  976. exit 1
  977. fi
  978. fi
  979. if [ "$target" = "osx" ] && [ "$configuration" = "Debug" ]; then
  980. gcovr -r . -f ".*Realm.*" -e ".*Tests.*" -e ".*core.*" --xml > build/reports/coverage-report.xml
  981. WS=$(pwd | sed "s/\//\\\\\//g")
  982. sed -i ".bak" "s/<source>\./<source>${WS}/" build/reports/coverage-report.xml
  983. fi
  984. ;;
  985. ######################################
  986. # Release packaging
  987. ######################################
  988. "package-examples")
  989. ./scripts/package_examples.rb
  990. zip --symlinks -r realm-examples.zip examples -x "examples/installation/*"
  991. ;;
  992. "package-test-examples-objc")
  993. if ! VERSION=$(echo realm-objc-*.zip | grep -E -o '\d*\.\d*\.\d*-[a-z]*(\.\d*)?'); then
  994. VERSION=$(echo realm-objc-*.zip | grep -E -o '\d*\.\d*\.\d*')
  995. fi
  996. OBJC="realm-objc-${VERSION}"
  997. unzip "${OBJC}.zip"
  998. cp "$0" "${OBJC}"
  999. cp -r "${source_root}/scripts" "${OBJC}"
  1000. cd "${OBJC}"
  1001. sh build.sh examples-ios
  1002. sh build.sh examples-tvos
  1003. sh build.sh examples-osx
  1004. cd ..
  1005. rm -rf "${OBJC}"
  1006. ;;
  1007. "package-test-examples-swift")
  1008. if ! VERSION=$(echo realm-swift-*.zip | grep -E -o '\d*\.\d*\.\d*-[a-z]*(\.\d*)?'); then
  1009. VERSION=$(echo realm-swift-*.zip | grep -E -o '\d*\.\d*\.\d*')
  1010. fi
  1011. SWIFT="realm-swift-${VERSION}"
  1012. unzip "${SWIFT}.zip"
  1013. cp "$0" "${SWIFT}"
  1014. cp -r "${source_root}/scripts" "${SWIFT}"
  1015. cd "${SWIFT}"
  1016. sh build.sh examples-ios-swift
  1017. sh build.sh examples-tvos-swift
  1018. cd ..
  1019. rm -rf "${SWIFT}"
  1020. ;;
  1021. "package-ios-static")
  1022. sh build.sh prelaunch-simulator
  1023. sh build.sh ios-static
  1024. cd build/ios-static
  1025. zip --symlinks -r realm-framework-ios-static.zip Realm.xcframework
  1026. ;;
  1027. "package")
  1028. PLATFORM="$2"
  1029. REALM_SWIFT_VERSION=
  1030. set_xcode_and_swift_versions
  1031. sh build.sh "$PLATFORM-swift"
  1032. cd "build/$PLATFORM"
  1033. zip --symlinks -r "realm-framework-$PLATFORM-$REALM_XCODE_VERSION.zip" "swift-$REALM_XCODE_VERSION"
  1034. ;;
  1035. "package-release")
  1036. LANG="$2"
  1037. tempdir="$(mktemp -d "$TMPDIR"/realm-release-package-"${LANG}".XXXX)"
  1038. extract_dir="$(mktemp -d "$TMPDIR"/realm-release-package-"${LANG}".XXXX)"
  1039. version="$(sh build.sh get-version)"
  1040. package_dir="${tempdir}/realm-${LANG}-${version}"
  1041. mkdir -p "${package_dir}"
  1042. if [[ "${LANG}" == "objc" ]]; then
  1043. mkdir -p "${extract_dir}"
  1044. unzip "${WORKSPACE}/realm-framework-ios-static.zip" -d "${package_dir}/ios-static"
  1045. for platform in osx ios watchos tvos catalyst; do
  1046. unzip "${WORKSPACE}/realm-framework-${platform}-${REALM_XCODE_VERSION}.zip" -d "${extract_dir}/${platform}"
  1047. done
  1048. find "${extract_dir}" -name 'Realm.framework' \
  1049. | sed 's/.*/-framework &/' \
  1050. | xargs xcodebuild -create-xcframework -allow-internal-distribution -output "${package_dir}/Realm.xcframework"
  1051. cp "${WORKSPACE}/Realm/Swift/RLMSupport.swift" "${package_dir}"
  1052. rm -r "${extract_dir}"
  1053. else
  1054. xcode_versions=$(find . -name 'realm-framework-*-1*' | sed 's@./realm-framework-[a-z]*-\(.*\).zip@\1@' | sort -u)
  1055. for xcode_version in $xcode_versions; do
  1056. mkdir -p "${extract_dir}"
  1057. for platform in osx ios watchos tvos catalyst; do
  1058. unzip "realm-framework-$platform-$xcode_version.zip" -d "${extract_dir}/${platform}"
  1059. done
  1060. find "${extract_dir}" -name 'Realm.framework' \
  1061. | sed 's/.*/-framework &/' \
  1062. | xargs xcodebuild -create-xcframework -allow-internal-distribution -output "${package_dir}/${xcode_version}/Realm.xcframework"
  1063. find "${extract_dir}" -name 'RealmSwift.framework' \
  1064. | sed 's/.*/-framework &/' \
  1065. | xargs xcodebuild -create-xcframework -allow-internal-distribution -output "${package_dir}/${xcode_version}/RealmSwift.xcframework"
  1066. rm -r "${extract_dir}"
  1067. done
  1068. fi
  1069. (
  1070. cd "${WORKSPACE}"
  1071. cp -R plugin LICENSE "${package_dir}"
  1072. )
  1073. (
  1074. cd "${package_dir}"
  1075. unzip "${WORKSPACE}/realm-examples.zip"
  1076. cd examples
  1077. if [[ "${LANG}" == "objc" ]]; then
  1078. rm -rf ios/swift-* tvos/swift-*
  1079. else
  1080. rm -rf ios/objc osx tvos/objc
  1081. fi
  1082. )
  1083. cat > "${package_dir}"/docs.webloc <<EOF
  1084. <?xml version="1.0" encoding="UTF-8"?>
  1085. <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
  1086. <plist version="1.0">
  1087. <dict>
  1088. <key>URL</key>
  1089. <string>https://realm.io/docs/${LANG}/${version}</string>
  1090. </dict>
  1091. </plist>
  1092. EOF
  1093. (
  1094. cd "${tempdir}"
  1095. zip --symlinks -r "realm-${LANG}-${version}.zip" "realm-${LANG}-${version}"
  1096. mv "realm-${LANG}-${version}.zip" "${WORKSPACE}"
  1097. )
  1098. ;;
  1099. "test-package-release")
  1100. # Generate a release package locally for testing purposes
  1101. # Real releases should always be done via Jenkins
  1102. if [ -z "${WORKSPACE}" ]; then
  1103. echo 'WORKSPACE must be set to a directory to assemble the release in'
  1104. exit 1
  1105. fi
  1106. if [ -d "${WORKSPACE}" ]; then
  1107. echo 'WORKSPACE directory should not already exist'
  1108. exit 1
  1109. fi
  1110. REALM_SOURCE="$(pwd)"
  1111. mkdir -p "$WORKSPACE"
  1112. WORKSPACE="$(cd "$WORKSPACE" && pwd)"
  1113. export WORKSPACE
  1114. cd "$WORKSPACE"
  1115. git clone --recursive "$REALM_SOURCE" realm-cocoa
  1116. cd realm-cocoa
  1117. echo 'Packaging iOS'
  1118. sh build.sh package-ios-static
  1119. cp build/ios-static/realm-framework-ios-static.zip .
  1120. sh build.sh package ios
  1121. cp "build/ios/realm-framework-ios-$REALM_XCODE_VERSION.zip" .
  1122. echo 'Packaging macOS'
  1123. sh build.sh package osx
  1124. cp "build/osx/realm-framework-osx-$REALM_XCODE_VERSION.zip" .
  1125. echo 'Packaging watchOS'
  1126. sh build.sh package watchos
  1127. cp "build/watchos/realm-framework-watchos-$REALM_XCODE_VERSION.zip" .
  1128. echo 'Packaging tvOS'
  1129. sh build.sh package tvos
  1130. cp "build/tvos/realm-framework-tvos-$REALM_XCODE_VERSION.zip" .
  1131. echo 'Packaging Catalyst'
  1132. sh build.sh package catalyst
  1133. cp "build/catalyst/realm-framework-catalyst-$REALM_XCODE_VERSION.zip" .
  1134. echo 'Packaging examples'
  1135. sh build.sh package-examples
  1136. echo 'Building final release packages'
  1137. export WORKSPACE="${WORKSPACE}/realm-cocoa"
  1138. sh build.sh package-release objc
  1139. sh build.sh package-release swift
  1140. echo 'Testing packaged examples'
  1141. sh build.sh package-test-examples-objc
  1142. sh build.sh package-test-examples-swift
  1143. ;;
  1144. "github-release")
  1145. if [ -z "${GITHUB_ACCESS_TOKEN}" ]; then
  1146. echo 'GITHUB_ACCESS_TOKEN must be set to create GitHub releases'
  1147. exit 1
  1148. fi
  1149. ./scripts/github_release.rb
  1150. ;;
  1151. "add-empty-changelog")
  1152. empty_section=$(cat <<EOS
  1153. x.y.z Release notes (yyyy-MM-dd)
  1154. =============================================================
  1155. ### Enhancements
  1156. * None.
  1157. ### Fixed
  1158. * <How to hit and notice issue? what was the impact?> ([#????](https://github.com/realm/realm-cocoa/issues/????), since v?.?.?)
  1159. * None.
  1160. <!-- ### Breaking Changes - ONLY INCLUDE FOR NEW MAJOR version -->
  1161. ### Compatibility
  1162. * Realm Studio: 11.0.0 or later.
  1163. * APIs are backwards compatible with all previous releases in the 10.x.y series.
  1164. * Carthage release for Swift is built with Xcode 13.0.
  1165. * CocoaPods: 1.10 or later.
  1166. * Xcode: 12.2-13.0.
  1167. ### Internal
  1168. * Upgraded realm-core from ? to ?
  1169. EOS)
  1170. changelog=$(cat CHANGELOG.md)
  1171. echo "$empty_section" > CHANGELOG.md
  1172. echo >> CHANGELOG.md
  1173. echo "$changelog" >> CHANGELOG.md
  1174. ;;
  1175. *)
  1176. echo "Unknown command '$COMMAND'"
  1177. usage
  1178. exit 1
  1179. ;;
  1180. esac