add map file

This commit is contained in:
garionion 2021-08-11 15:58:29 +02:00
parent 150161807e
commit 48c9ecb95c
Signed by: garionion
GPG Key ID: 53352FA607FA681A
3 changed files with 22 additions and 24 deletions

View File

@ -1,24 +0,0 @@
kind: pipeline
type: docker
name: default
clone:
disable: true
trigger:
repo:
include:
- garionion/fluffychat
- garionion/fluffybuild
steps:
- name: clone
image: alpine/git
commands:
- git clone https://git.entr0py.de/garionion/fluffychat.git .
- git checkout $DRONE_COMMIT
- name: build
image: archlinux/base-devel
commands:
- ls -al

3
drone-config-map.json Normal file
View File

@ -0,0 +1,3 @@
{
"https://git.entr0py.de/garionion/fluffychat.git": "fluffychat.yml"
}

19
fluffychat.yml Normal file
View File

@ -0,0 +1,19 @@
---
kind: pipeline
type: docker
name: default
platform:
os: linux
arch: amd64
steps:
- name: build
image: archlinux:base-devel
commands:
- whoami
- pacman -Sy
- pacman -S flutter
- ls -al
...