快速通道在模拟器上安装 .app 到 运行 travis 上的自动化

fast lane install .app on the simulator to run automation on travis

我是 fast lane 的新手,正在尝试在 travis 上配置它。 我想在模拟器上安装 .app 文件并打开它。 (我这样做是为了 运行 travis 上的 appium 测试)

你能告诉我如何在 travis 上使用 fastlane 实现这个吗?

我现在的fastFile是这样的,

lane :test do
 scan(scheme: "MyScheme")
end 
gym(
  scheme: "SchemeName" ,
  configuration: "ConfigurationName",
  clean: true,
  workspace: "WorkSpaceName.xcworkspace",
  output_directory: "../output_directory",
  output_name: "IPA_Name.ipa",
  xcargs: "ARCHIVE=YES" # Used to tell the Fabric run script to upload dSYM file
)

open -a Simulator
xcrun simctl install booted ../output_directory/IPA_Name.ipa