drone.yml: attempt windows

This commit is contained in:
Dan Ballard 2021-04-13 13:23:18 -07:00
parent 370bb3f3cc
commit 0f8990c627
1 changed files with 31 additions and 1 deletions

View File

@ -1,7 +1,7 @@
---
kind: pipeline
type: docker
name: default
name: linux-android-test
steps:
- name: fetch
@ -128,3 +128,33 @@ trigger:
event:
- push
- pull_request
---
kind: pipeline
type: docker
name: windows
platform:
os: windows
version: 1809
steps:
- name: fetch
image: openpriv/flutter-desktop:windows-dev
commands:
- git fetch --tags
- git describe --tags > VERSION
- date +%G-%m-%d-%H-%M > BUILDDATE
- name: build-windows
image: openpriv/flutter-desktop:windows-dev
commands:
- flutter pub get
- mkdir deploy
- flutter build windows
trigger:
repo: flutter/flutter_app
branch: trunk
event:
- push