Slide 123
Slide 123 text
© 2019, Amazon Web Services, Inc. or its Affiliates. All rights reserved.
fastlaneにaws_device_farmプラグインを追加
Device Farmにテストを
スケジュールする設定
% bundle exec fastlane add_plugin aws_device_farm
% vim fastlane/Fastfile
desc "AWS Device Farm"
lane :device_farm do |options|
test_type = "XCTEST_UI"
derived_data_path = options[:derived_data_path]
configuration = options[:configuration]
aws_device_farm_package(
derrived_data_path: derived_data_path,
configuration: configuration,
)
aws_device_farm(
name: "My1stProject",
device_pool: "Top Devices",
test_type: test_type,
run_name: "#{test_type} - #{Time.now}",
)
end
Device Farm⽤のlaneを定義