From e47edcee79b1867d7fc043b96fa1ca7f34b3d5e0 Mon Sep 17 00:00:00 2001 From: Felix Angelov Date: Fri, 7 Mar 2025 18:12:58 -0600 Subject: [PATCH] ci(e2e): add Flutter 3.29.1 --- .github/workflows/e2e.yaml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/e2e.yaml b/.github/workflows/e2e.yaml index 465c9456..a8dc955e 100644 --- a/.github/workflows/e2e.yaml +++ b/.github/workflows/e2e.yaml @@ -12,18 +12,22 @@ on: env: SHOREBIRD_TOKEN: ${{ secrets.SHOREBIRD_TOKEN }} - FLUTTER_VERSION: 3.29.0 + FLUTTER_VERSION: 3.29.1 jobs: patch: strategy: fail-fast: false matrix: - flutter-version: [3.29.0, 3.27.2, 3.27.1, 3.27.0, 3.24.5, 3.24.4, 3.24.3, 3.24.1, 3.24.0, 3.22.3, 3.22.2, 3.19.6] + flutter-version: [2.29.1, 3.29.0, 3.27.2, 3.27.1, 3.27.0, 3.24.5, 3.24.4, 3.24.3, 3.24.1, 3.24.0, 3.22.3, 3.22.2, 3.19.6] runs-on: ubuntu-latest timeout-minutes: 15 + # Skip running the stable branch with the latest stable version of Flutter + # to avoid "flutter create" generating a project with an incompatible version of Flutter. + if: ${{ matrix.branch == 'stable' && matrix.flutter-version != env.FLUTTER_VERSION }} + env: SHOREBIRD_HOSTED_URL: https://api-dev.shorebird.dev