Skip to content

Commit

Permalink
github: disable flutter cli animations in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
adil192 committed Aug 14, 2024
1 parent 241c124 commit ab73f02
Show file tree
Hide file tree
Showing 7 changed files with 27 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/android-play-store.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,9 @@ jobs:
distribution: 'microsoft'
java-version: '17'

- name: Disable Flutter CLI animations
run: flutter config --no-cli-animations

- run: flutter pub get

- name: Build aab
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,9 @@ jobs:
distribution: 'microsoft'
java-version: '17'

- name: Disable Flutter CLI animations
run: flutter config --no-cli-animations

- run: flutter pub get

- name: Build apk
Expand Down Expand Up @@ -130,6 +133,9 @@ jobs:
distribution: 'microsoft'
java-version: '17'

- name: Disable Flutter CLI animations
run: flutter config --no-cli-animations

- run: flutter pub get

- name: Build apk
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/ios.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,9 @@ jobs:
xcode-project use-profiles
- name: Disable Flutter CLI animations
run: flutter config --no-cli-animations

- run: flutter pub get
- run: find . -name "Podfile" -execdir pod install \;

Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,9 @@ jobs:
cache: true
cache-key: 'flutter-:os:-:channel:-:version:-:arch:'

- name: Disable Flutter CLI animations
run: flutter config --no-cli-animations

- run: flutter pub get

- name: Build Linux (x86_64)
Expand Down Expand Up @@ -208,6 +211,9 @@ jobs:
echo Removing proprietary dependencies
./patches/remove_proprietary_dependencies.sh
echo Disabling Flutter CLI animations
unsudo flutter config --no-cli-animations
echo flutter pub get
unsudo flutter pub get
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,9 @@ jobs:
xcode-project use-profiles
- name: Disable Flutter CLI animations
run: flutter config --no-cli-animations

- run: flutter pub get
- run: find . -name "Podfile" -execdir pod install \;

Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,9 @@ jobs:
cache: true
cache-key: 'flutter-:os:-:channel:-:version:-:arch:'

- name: Disable Flutter CLI animations
run: flutter config --no-cli-animations

- run: flutter pub get

- name: Run tests
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,9 @@ jobs:
cache: true
cache-key: 'flutter-:os:-:channel:-:version:-:arch:'

- name: Disable Flutter CLI animations
run: flutter config --no-cli-animations

- run: flutter pub get

- name: Build Windows
Expand Down

0 comments on commit ab73f02

Please sign in to comment.