gpt4 book ai didi

ios - 如何在 .travis.yml 中包含多个 OS X 图像

转载 作者:行者123 更新时间:2023-12-01 18:45:14 25 4
gpt4 key购买 nike

我是 travis 的新手,我想包含多个 OS X 镜像,这样我就可以在 OS X 10.10 和 OS X 10.9 等不同的 os x 平台上测试我的构建

Xcode 7.3 (OS X 10.11) – osx_image: xcode7.3

Xcode 6.4 (OS X 10.10) – osx_image: xcode6.4

Xcode 6.2 (OS X 10.9) – osx_image: beta-xcode6.2


这是我当前的 .travis.yml
language: objective-c
osx_image: xcode7.3

install:
- carthage update Nimble Quick --platform iOS --no-use-binaries
- carthage update Alamofire --no-use-binaries

script:
- xcodebuild clean test -project Restofire.xcodeproj
-scheme Restofire-iOS
-sdk iphonesimulator ONLY_ACTIVE_ARCH=NO
-destination 'name=iPhone 6,OS=9.3'

最佳答案

您可以通过指定不同的 osx_image 来使用构建矩阵在不同版本的 OS X 上进行测试。 ,正如 Testing Your Project on Multiple Operating Systems 中模糊解释的那样.

示例 .travis.yml:

language: objective-c

matrix:
include:
- osx_image: xcode7.3
- osx_image: xcode7.1

关于ios - 如何在 .travis.yml 中包含多个 OS X 图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36710744/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com