build: create a new release version 1.3.1 #341
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
| name: webtrit_callkeep | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| on: | |
| pull_request: | |
| paths: | |
| - ".github/workflows/webtrit_callkeep.yaml" | |
| - "webtrit_callkeep/**" | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - ".github/workflows/webtrit_callkeep.yaml" | |
| - "webtrit_callkeep/**" | |
| jobs: | |
| spell-check: | |
| uses: VeryGoodOpenSource/very_good_workflows/.github/workflows/spell_check.yml@v1 | |
| with: | |
| includes: | | |
| **/*.md | |
| !brick/**/*.md | |
| .*/**/*.md | |
| modified_files_only: false | |
| android: | |
| runs-on: macos-latest | |
| defaults: | |
| run: | |
| working-directory: webtrit_callkeep/example | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-java@v3 | |
| with: | |
| distribution: "temurin" | |
| java-version: "17" | |
| - uses: subosito/flutter-action@v2 | |
| - name: Install Fluttium | |
| run: flutter pub global activate fluttium_cli | |
| # TODO: Restore Android emulator steps and AVD caching when Android E2E tests are enabled again. | |
| # The following steps were temporarily removed because tests are currently disabled. | |
| # - name: AVD Cache | |
| # uses: actions/cache@v3 | |
| # id: avd-cache | |
| # with: | |
| # path: | | |
| # ~/.android/avd/* | |
| # ~/.android/adb* | |
| # key: avd-29 | |
| # | |
| # - name: Cache AVD Snapshot | |
| # if: steps.avd-cache.outputs.cache-hit != 'true' | |
| # uses: reactivecircus/android-emulator-runner@v2 | |
| # with: | |
| # api-level: 29 | |
| # force-avd-creation: false | |
| # emulator-options: -no-window -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none | |
| # disable-animations: false | |
| # script: echo "Generated AVD snapshot for caching." | |
| # | |
| # - name: E2E Tests | |
| # uses: reactivecircus/android-emulator-runner@v2 | |
| # with: | |
| # api-level: 29 | |
| # script: fluttium test flows/test_platform_name.yaml -d android | |
| # working-directory: webtrit_callkeep/example | |
| ios: | |
| runs-on: macos-latest | |
| defaults: | |
| run: | |
| working-directory: webtrit_callkeep/example | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: subosito/flutter-action@v2 | |
| - name: Install Fluttium | |
| run: flutter pub global activate fluttium_cli | |
| # TODO: Restore iOS simulator steps and E2E tests when iOS E2E tests are enabled again. | |
| # The following steps were temporarily removed because tests are currently disabled. | |
| # - name: Start Simulator | |
| # run: | | |
| # UDID=$(xcrun xctrace list devices | grep "^iPhone" | awk '{gsub(/[()]/,""); print $NF}' | head -n 1) | |
| # echo $UDID | |
| # xcrun simctl boot "${UDID:?No Simulator with this name found}" | |
| # | |
| # - name: E2E Tests | |
| # run: fluttium test flows/test_platform_name.yaml -d iPhone | |
| linux: | |
| runs-on: ubuntu-latest | |
| if: false # todo(renancaraujo): https://github.com/wolfenrain/fluttium/issues/345 | |
| defaults: | |
| run: | |
| working-directory: webtrit_callkeep/example | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: subosito/flutter-action@v2 | |
| - name: Install Dependencies | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y libgtk-3-dev libx11-dev pkg-config cmake ninja-build libblkid-dev liblzma-dev | |
| - name: Install Fluttium | |
| run: flutter pub global activate fluttium_cli | |
| - name: E2E Tests | |
| run: xvfb-run fluttium test flows/test_platform_name.yaml -d linux | |
| macos: | |
| runs-on: macos-latest | |
| if: false # macOS E2E tests disabled until platform is actively supported | |
| defaults: | |
| run: | |
| working-directory: webtrit_callkeep/example | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: subosito/flutter-action@v2 | |
| - name: Install Fluttium | |
| run: flutter pub global activate fluttium_cli | |
| # TODO: Restore macOS E2E tests when they are enabled again. | |
| # - name: E2E Tests | |
| # run: fluttium test flows/test_platform_name.yaml -d macos | |
| web: | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: webtrit_callkeep/example | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: subosito/flutter-action@v2 | |
| - name: Install Fluttium | |
| run: flutter pub global activate fluttium_cli | |
| # TODO: Restore web E2E tests when they are enabled again. | |
| # The following steps were temporarily removed because tests are currently disabled. | |
| # - name: E2E Tests | |
| # run: xvfb-run fluttium test flows/test_platform_name.yaml -d chrome | |
| windows: | |
| runs-on: windows-2019 | |
| if: false # Windows E2E tests disabled until platform is actively supported | |
| defaults: | |
| run: | |
| working-directory: webtrit_callkeep/example | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: subosito/flutter-action@v2 | |
| - name: Install Fluttium | |
| run: flutter pub global activate fluttium_cli | |
| # TODO: Restore Windows E2E tests when they are enabled again. | |
| # - name: E2E Tests | |
| # run: fluttium test flows/test_platform_name.yaml -d windows |