Get ready to publish cronet_http 1.2.1 #629
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/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: | |
- name: Delete unnecessary tools 🔧 | |
uses: jlumbroso/[email protected] | |
with: | |
android: false # Don't remove Android tools | |
tool-cache: true # Remove image tool cache - rm -rf "$AGENT_TOOLSDIRECTORY" | |
dotnet: true # rm -rf /usr/share/dotnet | |
haskell: true # rm -rf /opt/ghc... | |
swap-storage: true # rm -f /mnt/swapfile (4GiB) | |
docker-images: false # Takes 16s, enable if needed in the future | |
large-packages: false # includes google-cloud-sdk and it's slow | |
- name: Enable KVM group perms | |
run: | | |
echo 'KERNEL=="kvm", GROUP="kvm", MODE="0666", OPTIONS+="static_node=kvm"' | sudo tee /etc/udev/rules.d/99-kvm4all.rules | |
sudo udevadm control --reload-rules | |
sudo udevadm trigger --name-match=kvm | |
ls /dev/kvm | |
- 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 | |
disable-animations: true | |
disk-size: 6000M | |
heap-size: 600M | |
target: ${{ matrix.cronetHttpNoPlay == 'true' && 'default' || 'google_apis' }} | |
script: cd pkgs/cronet_http/example && flutter test --dart-define=cronetHttpNoPlay=${{ matrix.cronetHttpNoPlay }} --timeout=1200s integration_test/ |