From 27099bfee0bcf318b1d89da061dadf07b738cbe1 Mon Sep 17 00:00:00 2001 From: Sergey Balalaev Date: Fri, 1 Nov 2024 14:02:42 +0400 Subject: [PATCH] Added tests for iOS 18.1 on build server --- CHANGELOG.md | 6 ++++++ Scripts/release.sh | 8 ++++---- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 27760f9..955c56e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. +## [1.10.3] - 2024-11-01 + +#### Added + +- Added tests for iOS 18.1 on build server. + ## [1.10.2] - 2024-09-13 (Friday) #### Added diff --git a/Scripts/release.sh b/Scripts/release.sh index 3b3a453..26bbbda 100644 --- a/Scripts/release.sh +++ b/Scripts/release.sh @@ -22,14 +22,14 @@ echo "CURRENT_VERSION=$CURRENT_VERSION" > "$APP_CONFIG_PATH" cd Example/NavigationExample checkExit "Start Tests" +xcrun simctl shutdown all +sh ../../Scripts/build.sh -c Debug -p NavigationExample -test 'platform=iOS Simulator,name=iPhone 16,OS=18.1' +checkExit "Tests on iOS 18.1" + xcrun simctl shutdown all sh ../../Scripts/build.sh -c Debug -p NavigationExample -test 'platform=iOS Simulator,name=iPhone 15,OS=17.2' checkExit "Tests on iOS 17.2" -# xcrun simctl shutdown all -# sh ../../Scripts/build.sh -c Debug -p NavigationExample -test 'platform=iOS Simulator,name=iPhone 15,OS=17.0' -# checkExit "Tests on iOS 17.0" - xcrun simctl shutdown all sh ../../Scripts/build.sh -c Debug -p NavigationExample -test 'platform=iOS Simulator,name=iPhone SE (3rd generation),OS=16.4' checkExit "Tests on iOS 16.4"