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
1 changed files with 15 additions and 4 deletions

View File

@ -11,9 +11,20 @@ steps:
- name: build
image: archlinux:base-devel
commands:
- whoami
- pacman -Sy
- pacman -S flutter
- ls -al
- pacman -Sy clang cmake ninja git java-environment glu unzip libglvnd python gtk3 --noconfirm
- useradd builduser -m
- git clone https://aur.archlinux.org/flutter.git
- 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
...