Upgrade to minimum iOS version 10.0 #568
Open
Travis CI / Travis CI - Pull Request
succeeded
Mar 11, 2024 in 14m 42s
Build Passed
The build passed, just like the previous build.
Details
This is a pull request build.
It is running a build against the merge commit, after merging #568 Upgrade to minimum iOS version 10.0.
Any changes that have been made to the master branch before the build ran are also included.
Jobs and Stages
This build only has a single job.
You can use jobs to test against multiple versions of your runtime or dependencies, or to speed up your build.
Build Configuration
Build Option | Setting |
---|---|
Language | Objective-c |
Operating System | macOS |
Xcode Version | xcode14 |
Build Configuration
{
"language": "objective-c",
"os": [
"osx"
],
"if": "((tag IS present) OR (type = pull_request)) AND \\\n((commit_message != 'update spm') AND (sender != env(GITHUB_NAME)))\n",
"osx_image": [
"xcode14"
],
"xcode_workspace": "Leanplum.xcworkspace",
"xcode_scheme": [
"LeanplumSDKApp"
],
"xcode_destination": "platform=iOS Simulator,OS=16.0,name=iPhone 14",
"cache": {
"cocoapods": true
},
"podfile": "Podfile",
"before_install": [
"gem install cocoapods",
"pod install"
],
"before_deploy": [
"./Tools/verifyTag.sh",
"if ! [ \"$BUILD_ONCE\" ]; then\n export BUILD_ONCE=1;\n ./Tools/build.sh;\nfi\n"
],
"after_deploy": [
"if ! [ \"$AFTER_DEPLOY_RUN\" ]; then\n export AFTER_DEPLOY_RUN=1;\n ./Tools/triggerRondo.sh;\n version=`cat sdk-version.txt`; if [[ $version != *\"beta\"* ]]; then ./Tools/triggerRN.sh; fi; \nfi"
],
"deploy": [
{
"provider": "script",
"skip_cleanup": true,
"script": "./Tools/push.sh",
"on": {
"tags": true
}
},
{
"provider": "releases",
"skip_cleanup": true,
"file": [
"Leanplum.zip",
"Release/static/Leanplum.xcframework.zip"
],
"draft": true,
"on": {
"tags": true
},
"token": "$GITHUB_TOKEN"
},
{
"provider": "script",
"skip_cleanup": true,
"script": "./Tools/pushSPM.sh",
"on": {
"tags": true
}
}
]
}
Loading