File tree Expand file tree Collapse file tree 1 file changed +1
-24
lines changed Expand file tree Collapse file tree 1 file changed +1
-24
lines changed Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
2
3
3
set -e
4
+ set -o pipefail # Necessary so xcpretty won't mask xcodebuild failures later.
4
5
5
6
echo " Pre-caching ios artifacts, such as the Flutter.framework"
6
7
flutter precache --no-web --no-linux --no-windows --no-fuchsia --no-android --no-macos
@@ -21,11 +22,6 @@ pushd add_to_app/fullscreen/flutter_module
21
22
flutter packages get
22
23
popd
23
24
24
- echo " Fetching dependencies and building 'multiple_flutters/multiple_flutters_module'."
25
- pushd add_to_app/multiple_flutters/multiple_flutters_module
26
- flutter packages get
27
- popd
28
-
29
25
echo " == Testing 'add_to_app/fullscreen/ios_fullscreen' on Flutter's $FLUTTER_VERSION channel =="
30
26
pushd " add_to_app/fullscreen/ios_fullscreen"
31
27
@@ -76,23 +72,4 @@ COMPILER_INDEX_STORE_ENABLE=NO CONFIGURATION=Release \
76
72
77
73
popd
78
74
79
- echo " == Testing 'add_to_app/multiple_flutters/multiple_flutters_ios' on Flutter's $FLUTTER_VERSION channel =="
80
- pushd " add_to_app/multiple_flutters/multiple_flutters_ios"
81
-
82
- pod install
83
-
84
- xcodebuild -workspace " MultipleFluttersIos.xcworkspace" \
85
- -scheme " MultipleFluttersIos" CODE_SIGNING_ALLOWED=NO CODE_SIGNING_REQUIRED=NO \
86
- CODE_SIGN_IDENTITY=- EXPANDED_CODE_SIGN_IDENTITY=- \
87
- COMPILER_INDEX_STORE_ENABLE=NO CONFIGURATION=Debug | xcpretty
88
-
89
- xcodebuild -workspace " MultipleFluttersIos.xcworkspace" \
90
- -scheme " MultipleFluttersIos" CODE_SIGNING_ALLOWED=NO CODE_SIGNING_REQUIRED=NO \
91
- CODE_SIGN_IDENTITY=- EXPANDED_CODE_SIGN_IDENTITY=- \
92
- COMPILER_INDEX_STORE_ENABLE=NO CONFIGURATION=Release \
93
- -destination generic/platform=iOS | xcpretty
94
-
95
- popd
96
-
97
-
98
75
echo " -- Success --"
You can’t perform that action at this time.
0 commit comments