build fluffychat
This commit is contained in:
parent
48c9ecb95c
commit
6cad3c0b19
1 changed files with 15 additions and 4 deletions
|
@ -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
|
||||||
|
|
||||||
...
|
...
|
||||||
|
|
Loading…
Reference in a new issue