Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade to minimum iOS version 10.0 #568

Open
wants to merge 5 commits into
base: master
Choose a base branch
from

Upgrade SPM version

8f83a05
Select commit
Loading
Failed to load commit list.
Open

Upgrade to minimum iOS version 10.0 #568

Upgrade SPM version
8f83a05
Select commit
Loading
Failed to load commit list.
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
      }
    }
  ]
}