|
41 | 41 | SHARD: deploy_gallery |
42 | 42 | GOOGLE_DEVELOPER_SERVICE_ACCOUNT_ACTOR_FASTLANE: ENCRYPTED[d9ac1462c3c556fc2f8165c9d5566a16497d8ebc38a50357f7f3abf136b7f83e1d1d76dde36fee356cb0f9ebf7a89346] |
43 | 43 | ANDROID_GALLERY_UPLOAD_KEY: ENCRYPTED[0f2aca35f05b26add5d9edea2a7449341269a2b7e22d5c667f876996e2e8bc44ff1369431ebf73b7c5581fd95d0e5902] |
44 | | - test_script: ./dev/bots/deploy_gallery.sh |
| 44 | + test_script: |
| 45 | + # Unsetting CIRRUS_CHANGE_MESSAGE and CIRRUS_COMMIT_MESSAGE as they |
| 46 | + # might include non-ASCII characters which makes Gradle crash. |
| 47 | + # See: https://github.com/flutter/flutter/issues/24935 |
| 48 | + # This is a temporary workaround until we figure how to properly configure |
| 49 | + # a UTF8 locale on Cirrus (or until the Gradle bug is fixed). |
| 50 | + # TODO(amirh): Set the locale to UTF8. |
| 51 | + - echo "$CIRRUS_CHANGE_MESSAGE" > /tmp/cirrus_change_message.txt |
| 52 | + - echo "$CIRRUS_COMMIT_MESSAGE" > /tmp/cirrus_commit_message.txt |
| 53 | + - export CIRRUS_CHANGE_MESSAGE="" |
| 54 | + - export CIRRUS_COMMIT_MESSAGE="" |
| 55 | + - ./dev/bots/deploy_gallery.sh |
| 56 | + - export CIRRUS_CHANGE_MESSAGE=`cat /tmp/cirrus_change_message.txt` |
| 57 | + - export CIRRUS_COMMIT_MESSAGE=`cat /tmp/cirrus_commit_message.txt` |
45 | 58 | - name: analyze |
46 | 59 | test_script: |
47 | 60 | - dart --enable-asserts ./dev/bots/analyze.dart |
@@ -112,6 +125,7 @@ task: |
112 | 125 | fingerprint_script: echo %OS% & type bin\internal\engine.version |
113 | 126 | setup_script: |
114 | 127 | - bin\flutter.bat config --no-analytics |
| 128 | + - bin\flutter.bat doctor -v |
115 | 129 | - bin\flutter.bat update-packages |
116 | 130 | - git fetch origin master |
117 | 131 | test_all_script: |
@@ -195,7 +209,9 @@ task: |
195 | 209 | - name: $SHARD-macos |
196 | 210 | env: |
197 | 211 | matrix: |
198 | | - - SHARD: integration_tests |
| 212 | + # The flakiness of this target has increased beyond tolerable levels. Until we can stabilize it, |
| 213 | + # keep the shard disabled. |
| 214 | + # - SHARD: integration_tests |
199 | 215 | - SHARD: build_tests |
200 | 216 | COCOAPODS_DISABLE_STATS: true |
201 | 217 | FLUTTER_FRAMEWORK_DIR: "/tmp/flutter sdk/bin/cache/artifacts/engine/ios/" |
@@ -226,6 +242,7 @@ task: |
226 | 242 | fingerprint_script: echo $OS; cat bin/internal/engine.version |
227 | 243 | setup_script: |
228 | 244 | - bin/flutter config --no-analytics |
| 245 | + - bin/flutter doctor -v |
229 | 246 | - bin/flutter update-packages |
230 | 247 | test_all_script: | |
231 | 248 | ulimit -S -n 2048 # https://github.com/flutter/flutter/issues/2976 |
|
0 commit comments