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
|
||||
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
|
||||
|
||||
...
|
||||
|
|
Loading…
Reference in a new issue