drone-configs/fluffychat.yml

24 lines
376 B
YAML
Raw Normal View History

2021-08-11 15:58:29 +02:00
---
kind: pipeline
type: docker
name: default
platform:
os: linux
arch: amd64
steps:
- name: build
image: archlinux:base-devel
commands:
- whoami
- pacman -Sy
2021-08-14 21:13:37 +02:00
- pacman -S flutter clang cmake ninja
- flutter config --no-analytics
- flutter config --enable-linux-desktop
- flutter clean
- flutter pub get
- flutter build linux --release --verbose
2021-08-11 15:58:29 +02:00
...