File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1414
1515 - name : pods
1616 run : pod install
17- - name : build.sh
18- run : bash build-simulator.sh
1917
2018 - name : brew
2119 run : ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" < /dev/null 2> /dev/null
Original file line number Diff line number Diff line change @@ -18,29 +18,35 @@ default_platform(:ios)
1818platform :ios do
1919 desc "Push a new release build to the App Store"
2020 lane :deployPro do
21- # sh("bash", "../build-device.sh")
21+ sh ( "bash" , "../build-device.sh" )
22+ clear_derived_data
2223 build_app ( workspace : "OpenDocumentReader.xcworkspace" , scheme : "ODR Full" )
2324 upload_to_app_store (
2425 app_identifier : "at.tomtasche.reader" ,
2526 skip_screenshots : true ,
2627 skip_metadata : true
2728 )
28- # sh("bash", "../build-simulator.sh")
29+ sh ( "bash" , "../build-simulator.sh" )
30+ clear_derived_data
2931 end
3032
3133 desc "Push a new release build to the App Store"
3234 lane :deployLite do
33- # sh("bash", "../build-device.sh")
35+ sh ( "bash" , "../build-device.sh" )
36+ clear_derived_data
3437 build_app ( workspace : "OpenDocumentReader.xcworkspace" , scheme : "ODR Lite" )
3538 upload_to_app_store (
3639 app_identifier : "at.tomtasche.reader.lite1" ,
3740 skip_screenshots : true ,
3841 skip_metadata : true
3942 )
40- # sh("bash", "../build-simulator.sh")
43+ sh ( "bash" , "../build-simulator.sh" )
44+ clear_derived_data
4145 end
4246
4347 lane :tests do
48+ sh ( "bash" , "../build-simulator.sh" )
49+ clear_derived_data
4450 run_tests (
4551 workspace : "OpenDocumentReader.xcworkspace" ,
4652 scheme : "ODR Full" ,
You can’t perform that action at this time.
0 commit comments