[cronet_http] Enables CI for cronet_http_embedded
#415
Workflow file for this run
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/**' | |
- 'pkgs/cronet_http/**' | |
- 'pkgs/http_client_conformance_tests/**' | |
pull_request: | |
paths: | |
- '.github/workflows/**' | |
- 'pkgs/cronet_http/**' | |
- 'pkgs/http_client_conformance_tests/**' | |
schedule: | |
- cron: "0 0 * * 0" | |
env: | |
PUB_ENVIRONMENT: bot.github | |
jobs: | |
analyze: | |
name: Lint and static analysis | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
package: ['cronet_http', 'cronet_http_embedded'] | |
defaults: | |
run: | |
working-directory: 'pkgs/${{ matrix.package }}' | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Make cronet_http_embedded copy | |
if: ${{ matrix.package == 'cronet_http_embedded' }} | |
run: | | |
cd .. | |
cp -r cronet_http cronet_http_embedded | |
cd cronet_http_embedded | |
dart tool/prepare_for_embedded.dart | |
- uses: subosito/flutter-action@v2 | |
with: | |
# TODO: Change to 'stable' when a release version of flutter | |
# pins version 1.21.1 or later of 'package:test' | |
channel: 'master' | |
- id: install | |
name: Install dependencies | |
run: flutter pub get | |
- name: Check formatting | |
run: dart format --output=none --set-exit-if-changed . | |
if: always() && steps.install.outcome == 'success' | |
- name: Analyze code | |
run: flutter analyze --fatal-infos | |
if: always() && steps.install.outcome == 'success' | |
test: | |
# Test packages use flutter integration tests. | |
needs: analyze | |
name: "Build and test" | |
runs-on: macos-latest | |
strategy: | |
matrix: | |
package: ['cronet_http', 'cronet_http_embedded'] | |
defaults: | |
run: | |
working-directory: 'pkgs/${{ matrix.package }}' | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: 'zulu' | |
java-version: '17' | |
- uses: subosito/flutter-action@v2 | |
with: | |
channel: 'stable' | |
- name: Make cronet_http_embedded copy | |
if: ${{ matrix.package == 'cronet_http_embedded' }} | |
run: | | |
cd .. | |
cp -r cronet_http cronet_http_embedded | |
cd cronet_http_embedded | |
dart tool/prepare_for_embedded.dart | |
- name: Run tests | |
uses: reactivecircus/android-emulator-runner@v2 | |
with: | |
api-level: 28 | |
target: playstore | |
arch: x86_64 | |
profile: pixel | |
script: cd example && flutter test --timeout=1200s integration_test/ |