From 764b8a41b39f6ea66620e57c23d99afa9aa860d1 Mon Sep 17 00:00:00 2001 From: Ellet Date: Sat, 18 May 2024 13:33:14 +0300 Subject: [PATCH] ci: add a todo in build.yml, remove flutter doctor check --- .github/workflows/build.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 024eb0fc..e8f6a8d0 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,3 +1,5 @@ +# TODO: Update the workflow to build on Android, iOS, desktop (macOS and Windows) instead of just Linux and Web + name: Build the example on: @@ -38,9 +40,6 @@ jobs: - name: Install flutter Linux desktop depndecies run: sudo apt install -y clang cmake git ninja-build pkg-config libgtk-3-dev liblzma-dev libstdc++-12-dev - - name: Run flutter doctor - run: flutter doctor - - name: Flutter build Linux run: flutter build linux --release --verbose --dart-define=CI=true working-directory: ./example