18 lines
327 B
Ruby
18 lines
327 B
Ruby
import "../build-scripts/xcode/commonFastfile"
|
|
|
|
lane :StandardDebug do |options|
|
|
buildConfiguration(options)
|
|
end
|
|
|
|
lane :StandardRelease do |options|
|
|
buildConfiguration(options)
|
|
end
|
|
|
|
lane :EnterpriseDebug do |options|
|
|
buildConfiguration(options)
|
|
end
|
|
|
|
lane :EnterpriseRelease do |options|
|
|
buildConfiguration(options)
|
|
end
|