build fluffychat

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

View file

@ -11,9 +11,20 @@ steps:
- name: build - name: build
image: archlinux:base-devel image: archlinux:base-devel
commands: commands:
- whoami - pacman -Sy clang cmake ninja git java-environment glu unzip libglvnd python gtk3 --noconfirm
- pacman -Sy - useradd builduser -m
- pacman -S flutter - git clone https://aur.archlinux.org/flutter.git
- ls -al - chown -R builduser:builduser flutter
- cd flutter && su builduser
- PKGEXT=".pkg.tar" makepkg
- exit
- pacman -U flutter-*-x86_64.pkg.tar --noconfirm
- cd ..
- flutter config --no-analytics
- flutter config --enable-linux-desktop
- flutter clean
- flutter pub get
- flutter build linux --release --verbose
- ls -al build/linux/x64/release
... ...