-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(repo): update minimum supported SDK version to Flutter 3.7/Dart…
… 2.19 Signed-off-by: Sahil Kumar <[email protected]>
- Loading branch information
Showing
8 changed files
with
127 additions
and
60 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
name: legacy_version_analyze | ||
|
||
env: | ||
# Note: The versions below should be manually updated after a new stable | ||
# version comes out. | ||
flutter_version: "3.7.12" | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
- develop | ||
paths: | ||
- 'packages/**' | ||
- '.github/workflows/legacy_version_analyze.yml' | ||
pull_request: | ||
branches: | ||
- main | ||
- develop | ||
paths: | ||
- 'packages/**' | ||
- '.github/workflows/legacy_version_analyze.yml' | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
# Does a sanity check that packages at least pass analysis on the N-1 | ||
# versions of Flutter stable if the package claims to support that version. | ||
# This is to minimize accidentally making changes that break old versions | ||
# (which we don't commit to supporting, but don't want to actively break) | ||
# without updating the constraints. | ||
analyze_legacy_versions: | ||
timeout-minutes: 15 | ||
if: github.event.pull_request.draft == false | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: "Git Checkout" | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: "Install Flutter" | ||
uses: subosito/flutter-action@v2 | ||
with: | ||
cache: true | ||
flutter-version: ${{ env.flutter_version }} | ||
|
||
- name: "Install Tools" | ||
run: flutter pub global activate melos | ||
|
||
- name: "Bootstrap Workspace" | ||
run: melos bootstrap --verbose | ||
|
||
# Only analyze lib/; non-client code doesn't need to work on | ||
# all supported legacy version. | ||
- name: "Stream Video Analyze" | ||
run: cd packages/stream_video/lib && dart analyze --fatal-infos . | ||
|
||
- name: "Stream Video Flutter Analyze" | ||
run: cd packages/stream_video_flutter/lib && dart analyze --fatal-infos . | ||
|
||
- name: "Stream Video Flutter Background Analyze" | ||
run: cd packages/stream_video_flutter_background/lib && dart analyze --fatal-infos . | ||
|
||
- name: "Stream Video Push Notification Analyze" | ||
run: cd packages/stream_video_push_notification/lib && dart analyze --fatal-infos . |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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