[tizen_app_control] Add YouTube app launch to the example (#932) #2423
This file contains hidden or 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
| # Copyright 2025 Samsung Electronics Co., Ltd. All rights reserved. | |
| # Use of this source code is governed by a BSD-style license that can be | |
| # found in the LICENSE file. | |
| 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 | |
| export FLUTTER_ROOT=`pwd`/flutter-tizen/flutter | |
| ./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 | |
| export FLUTTER_ROOT=`pwd`/flutter-tizen/flutter | |
| ./tools/tools_runner.sh integration-test \ | |
| --recipe ./.github/recipe.yaml \ | |
| --generate-emulators |