[cronet_http] Enables CI for cronet_http_embedded
#416
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'] | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Make cronet_http_embedded copy | ||
if: ${{ matrix.package == 'cronet_http_embedded' }} | ||
run: | | ||
cp -r pkgs/cronet_http pkgs/cronet_http_embedded | ||
cd pkgs/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 | ||
working-directory: 'pkgs/${{ matrix.package }}' | ||
run: flutter pub get | ||
- name: Check formatting | ||
working-directory: 'pkgs/${{ matrix.package }}' | ||
run: dart format --output=none --set-exit-if-changed . | ||
if: always() && steps.install.outcome == 'success' | ||
- name: Analyze code | ||
working-directory: 'pkgs/${{ matrix.package }}' | ||
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'] | ||
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: | | ||
cp -r pkgs/cronet_http pkgs/cronet_http_embedded | ||
cd pkgs/cronet_http_embedded | ||
dart tool/prepare_for_embedded.dart | ||
- name: Run tests | ||
working-directory: 'pkgs/${{ matrix.package }}' | ||
uses: reactivecircus/android-emulator-runner@v2 | ||
Check failure on line 81 in .github/workflows/cronet.yml GitHub Actions / package:cronet_http CIInvalid workflow file
|
||
with: | ||
api-level: 28 | ||
target: playstore | ||
arch: x86_64 | ||
profile: pixel | ||
script: cd example && flutter test --timeout=1200s integration_test/ |