package:cronet_http CI #24
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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@692973e3d937129bcbf40652eb9f2f61becf3332 | |
- uses: actions/setup-java@99b8673ff64fbf99d8d325f52d9a5bdedb8483e9 | |
with: | |
distribution: 'zulu' | |
java-version: '17' | |
- uses: subosito/flutter-action@44ac965b96f18d999802d4b807e3256d5a3f9fa1 | |
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@77986be26589807b8ebab3fde7bbf5c60dabec32 | |
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/ |