[google_maps_flutter] Fix memory alarm and map initialization issue #1997
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: Integration Test | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
jobs: | |
integration_test: | |
runs-on: [self-hosted, linux] | |
if: ${{ github.repository_owner == 'flutter-tizen' }} | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 2 | |
- uses: subosito/flutter-action@v2 | |
with: | |
channel: stable | |
- name: Install flutter-tizen | |
uses: actions/checkout@v3 | |
with: | |
repository: flutter-tizen/flutter-tizen | |
path: flutter-tizen | |
- name: Run tests for changed packages | |
if: ${{ github.event_name == 'pull_request' }} | |
run: | | |
export PATH=`pwd`/flutter-tizen/bin:$PATH | |
./tools/tools_runner.sh integration-test \ | |
--recipe ./.github/recipe.yaml \ | |
--generate-emulators \ | |
--run-on-changed-packages \ | |
--base-sha=$(git rev-parse HEAD^) | |
- name: Run tests for all packages | |
if: ${{ github.event_name == 'push' }} | |
run: | | |
export PATH=`pwd`/flutter-tizen/bin:$PATH | |
./tools/tools_runner.sh integration-test \ | |
--recipe ./.github/recipe.yaml \ | |
--generate-emulators |