| name: package:cronet_http CI |
| |
| on: |
| push: |
| branches: |
| - main |
| - master |
| paths: |
| - '.github/workflows/cronet.yml' |
| - 'pkgs/cronet_http/**' |
| - 'pkgs/http_client_conformance_tests/**' |
| pull_request: |
| paths: |
| - '.github/workflows/cronet.yml' |
| - 'pkgs/cronet_http/**' |
| - 'pkgs/http_client_conformance_tests/**' |
| schedule: |
| - cron: "0 0 * * 0" |
| |
| env: |
| PUB_ENVIRONMENT: bot.github |
| |
| jobs: |
| verify: |
| name: Format & Analyze & Test |
| runs-on: ubuntu-latest |
| strategy: |
| matrix: |
| cronetHttpNoPlay: ['false', 'true'] |
| defaults: |
| run: |
| working-directory: pkgs/cronet_http |
| steps: |
| - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 |
| - uses: actions/setup-java@99b8673ff64fbf99d8d325f52d9a5bdedb8483e9 |
| with: |
| distribution: 'zulu' |
| java-version: '17' |
| - uses: subosito/flutter-action@2783a3f08e1baf891508463f8c6653c258246225 |
| with: |
| channel: 'stable' |
| - id: install |
| name: Install dependencies |
| run: flutter pub get |
| - name: Check formatting |
| if: always() && steps.install.outcome == 'success' |
| run: dart format --output=none --set-exit-if-changed . |
| - name: Analyze code |
| if: always() && steps.install.outcome == 'success' |
| run: flutter analyze --fatal-infos |
| - name: Run tests |
| uses: reactivecircus/android-emulator-runner@6b0df4b0efb23bb0ec63d881db79aefbc976e4b2 |
| if: always() && steps.install.outcome == 'success' |
| with: |
| # api-level/minSdkVersion should be help in sync in: |
| # - .github/workflows/cronet.yml |
| # - pkgs/cronet_http/android/build.gradle |
| # - pkgs/cronet_http/example/android/app/build.gradle |
| api-level: 21 |
| arch: x86_64 |
| target: ${{ matrix.cronetHttpNoPlay == 'true' && 'default' || 'google_apis' }} |
| script: cd pkgs/cronet_http/example && flutter test --dart-define=cronetHttpNoPlay=${{ matrix.cronetHttpNoPlay }} --timeout=1200s integration_test/ |