Skip to content

Commit

Permalink
fix ci matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
alextekartik committed Dec 2, 2023
1 parent df88c0e commit 0192e27
Show file tree
Hide file tree
Showing 6 changed files with 48 additions and 12 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/run_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,16 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
flutter: [stable, beta]
include:
- os: ubuntu-latest
flutter: stable
- os: ubuntu-latest
flutter: beta
- os: windows-latest
flutter: stable
- os: macos-latest
flutter: stable

steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v3
Expand Down
8 changes: 6 additions & 2 deletions .github/workflows/run_ci_android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,12 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
flutter: [stable, beta]
include:
- os: ubuntu-latest
flutter: stable
- os: ubuntu-latest
flutter: beta

steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v3
Expand Down
12 changes: 10 additions & 2 deletions .github/workflows/run_ci_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,16 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
flutter: [stable, beta]
include:
- os: ubuntu-latest
flutter: stable
- os: ubuntu-latest
flutter: beta
- os: windows-latest
flutter: stable
- os: macos-latest
flutter: stable

steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v3
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/run_ci_flutter_downgrade_analyze.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,10 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
flutter: [stable]
include:
- os: ubuntu-latest
flutter: stable

steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v3
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/run_ci_macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,10 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [macos-latest]
flutter: [stable]
include:
- os: macos-latest
flutter: stable

steps:
- uses: actions/checkout@v4
- uses: subosito/flutter-action@v2
Expand Down
16 changes: 14 additions & 2 deletions .github/workflows/run_ci_web.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,20 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
dart: [3.1.5, stable, beta, dev]
include:
- os: ubuntu-latest
dart: 3.1.5
- os: ubuntu-latest
dart: stable
- os: ubuntu-latest
dart: beta
- os: ubuntu-latest
dart: dev
- os: windows-latest
dart: stable
- os: macos-latest
dart: stable

steps:
- uses: actions/checkout@v4
- uses: dart-lang/[email protected]
Expand Down

0 comments on commit 0192e27

Please sign in to comment.