diff --git a/.github/workflows/android-play-store.yml b/.github/workflows/android-play-store.yml index d008439ac..749ea4cab 100644 --- a/.github/workflows/android-play-store.yml +++ b/.github/workflows/android-play-store.yml @@ -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 diff --git a/.github/workflows/android.yml b/.github/workflows/android.yml index a422ce0fe..4b33a0fa6 100644 --- a/.github/workflows/android.yml +++ b/.github/workflows/android.yml @@ -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 @@ -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 diff --git a/.github/workflows/ios.yml b/.github/workflows/ios.yml index 3bf6b5a49..22690d6d5 100644 --- a/.github/workflows/ios.yml +++ b/.github/workflows/ios.yml @@ -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 \; diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index f5ea0595d..f1e9cbe25 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -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) @@ -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 diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index c154b2056..9d6c18445 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -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 \; diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index f4a16aa0f..263641bd3 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -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 diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index b360d7a05..cd4de215f 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -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