build fluffychat

This commit is contained in:
garionion 2021-08-14 21:13:37 +02:00
parent 48c9ecb95c
commit f500ce1756
Signed by: garionion
GPG key ID: 53352FA607FA681A

View file

@ -13,7 +13,20 @@ steps:
commands: commands:
- whoami - whoami
- pacman -Sy - pacman -Sy
- pacman -S flutter - pacman -S clang cmake ninja git java-environment glu unzip libglvnd python --noconfirm
- ls -al - useradd builduser -m
- git clone https://aur.archlinux.org/flutter.git
- chown -R builduser:builduser flutter
- cd flutter
- su builduser
- makepkg --noarchive
- exit
- pacman -U flutter-*-x86_64.pkg.tar
- cd ..
- flutter config --no-analytics
- flutter config --enable-linux-desktop
- flutter clean
- flutter pub get
- flutter build linux --release --verbose
... ...