Skip to content

Commit

Permalink
chore: fixed max flutter version with 3.24.5 when do integration test
Browse files Browse the repository at this point in the history
  • Loading branch information
peilinok committed Dec 18, 2024
1 parent fb3ea26 commit 8096b47
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ jobs:
strategy:
fail-fast: false
matrix:
version: ["3.7.0"]
version: ["3.7.0", "3.24.5"]
runs-on: ubuntu-latest
timeout-minutes: 120
env:
Expand Down Expand Up @@ -211,7 +211,7 @@ jobs:
strategy:
fail-fast: false
matrix:
version: ["3.7.0"]
version: ["3.7.0", "3.24.5"]
runs-on: windows-2019
timeout-minutes: 120
env:
Expand Down Expand Up @@ -243,7 +243,7 @@ jobs:
if: ${{ !contains(github.event.pull_request.labels.*.name, 'ci:skip') }}
strategy:
matrix:
version: ['3.x']
version: ["3.24.5"]
runs-on: ubuntu-latest
timeout-minutes: 60
env:
Expand All @@ -266,7 +266,7 @@ jobs:
strategy:
fail-fast: false
matrix:
version: ["3.7.12"] # Need 3.7.12 to build with Gradle 8.x https://github.com/flutter/flutter/issues/124838
version: ["3.7.12", "3.24.5"] # Need 3.7.12 to build with Gradle 8.x https://github.com/flutter/flutter/issues/124838
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand All @@ -289,7 +289,7 @@ jobs:
strategy:
fail-fast: false
matrix:
version: ["3.7.12"] # Need 3.7.12 to build with Gradle 8.x https://github.com/flutter/flutter/issues/124838
version: ["3.7.12", "3.24.5"] # Need 3.7.12 to build with Gradle 8.x https://github.com/flutter/flutter/issues/124838
runs-on: windows-2019
steps:
- uses: actions/checkout@v3
Expand Down Expand Up @@ -333,7 +333,7 @@ jobs:
if: ${{ !contains(github.event.pull_request.labels.*.name, 'ci:skip') }}
strategy:
matrix:
version: ['3.x']
version: ["3.24.5"]
runs-on: macos-13
timeout-minutes: 120
steps:
Expand All @@ -359,7 +359,7 @@ jobs:
strategy:
fail-fast: false
matrix:
version: ["3.7.0"]
version: ["3.7.0", "3.24.5"]
runs-on: ubuntu-latest
timeout-minutes: 120
steps:
Expand Down Expand Up @@ -389,7 +389,7 @@ jobs:
java-version: '17'
- uses: subosito/flutter-action@v2
with:
flutter-version: '3.x'
flutter-version: "3.24.5"
cache: true
- name: Checkout hoe
uses: actions/checkout@v3
Expand Down Expand Up @@ -443,7 +443,7 @@ jobs:
if: ${{ !contains(github.event.pull_request.labels.*.name, 'ci:skip') }}
strategy:
matrix:
version: ["3.x"]
version: ["3.24.5"]
runs-on: macos-13 # Rendering test on ios simulator need macos 13+
timeout-minutes: 60
env:
Expand Down Expand Up @@ -491,7 +491,7 @@ jobs:
if: ${{ !contains(github.event.pull_request.labels.*.name, 'ci:skip') }}
strategy:
matrix:
version: ['3.x']
version: ["3.24.5"]
runs-on: macos-latest
timeout-minutes: 120
env:
Expand Down Expand Up @@ -546,7 +546,7 @@ jobs:
if: ${{ !contains(github.event.pull_request.labels.*.name, 'ci:skip') }}
strategy:
matrix:
version: ['3.x']
version: ["3.24.5"]
runs-on: windows-2019
timeout-minutes: 120
env:
Expand Down Expand Up @@ -600,7 +600,7 @@ jobs:
if: ${{ !contains(github.event.pull_request.labels.*.name, 'ci:skip') }}
strategy:
matrix:
version: ['3.x']
version: ["3.24.5"]
runs-on: ubuntu-latest
timeout-minutes: 60
env:
Expand Down Expand Up @@ -630,7 +630,7 @@ jobs:
if: ${{ !contains(github.event.pull_request.labels.*.name, 'ci:skip') }}
strategy:
matrix:
version: ['3.x']
version: ["3.24.5"]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand Down

0 comments on commit 8096b47

Please sign in to comment.