Skip to content

Commit

Permalink
Changes to build-linux workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
781flyingdutchman committed Oct 24, 2024
1 parent 3de097f commit 9fbbc86
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,12 @@ jobs:
cache: true
flutter-version: ${{ matrix.sdk == 'min' && env.FLUTTER_MIN_SDK || '' }}
channel: ${{ matrix.sdk == 'min' && 'stable' || matrix.sdk }}
- run: flutter config --enable-linux-desktop
- name: Setup Linux build environment
run: |
flutter config --enable-linux-desktop
sudo apt-get install -y ninja-build
sudo apt-get install -y libgtk-3-dev
export CMAKE_CXX_COMPILER=$(which g++)
- name: Build example Linux package
run: flutter build linux
working-directory: example
Expand Down

0 comments on commit 9fbbc86

Please sign in to comment.