Update build.yml to fix and update the Linux build requirements

pull/1873/head
Ellet 11 months ago committed by GitHub
parent 0fb4c9580d
commit ab17019de8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 5
      .github/workflows/build.yml

@ -29,8 +29,11 @@ jobs:
run: flutter build web --release --verbose --dart-define=CI=true
working-directory: ./example
- name: Updates APT Linux Package Lists && Upgrade
run: sudo apt update -y && sudo apt upgrade -y
- name: Install flutter Linux prerequisites
run: sudo apt-get install clang cmake git ninja-build pkg-config libgtk-3-dev liblzma-dev libstdc++-12-dev -y
run: sudo apt install -y curl git unzip xz-utils zip libglu1-mesa -y
- name: Flutter build Linux
run: flutter build linux --release --verbose --dart-define=CI=true

Loading…
Cancel
Save