File tree Expand file tree Collapse file tree 1 file changed +4
-21
lines changed Expand file tree Collapse file tree 1 file changed +4
-21
lines changed Original file line number Diff line number Diff line change 27
27
strategy :
28
28
matrix :
29
29
package : ['cronet_http', 'cronet_http_embedded']
30
- # api-level/minSdkVersion should be help in sync in:
31
- # - .github/workflows/cronet.yml
32
- # - pkgs/cronet_http/android/build.gradle
33
- # - pkgs/cronet_http/example/android/app/build.gradle
34
- sdkVersion : ['21', '34']
35
30
steps :
36
31
- uses : actions/checkout@v4
37
32
- uses : actions/setup-java@v4
63
58
uses : reactivecircus/android-emulator-runner@v2
64
59
if : always() && steps.install.outcome == 'success'
65
60
with :
66
- script : |
67
- cd pkgs/${{ matrix.package }}/example
68
- flutter pub get
69
- for i in {1..3}
70
- do
71
- flutter test --timeout=1200s integration_test/ && break
72
- if [ $i -eq 3 ]
73
- then
74
- echo "Failed after $i retires."
75
- exit 1
76
- fi
77
- echo "Retrying $i. .."
78
- done
79
- api-level : ${{ matrix.sdkVersion }}
80
- arch : x86_64
81
- target : ${{ matrix.package == 'cronet_http_embedded' && 'default' || 'google_apis' }}
61
+ api-level : 28
62
+ target : ${{ matrix.package == 'cronet_http_embedded' && 'google_apis' || 'playstore' }}
63
+ profile : pixel
64
+ script : cd 'pkgs/${{ matrix.package }}/example' && flutter test --timeout=1200s integration_test/
You can’t perform that action at this time.
0 commit comments