31 lines
398 B
YAML
31 lines
398 B
YAML
|
---
|
||
|
kind: pipeline
|
||
|
type: docker
|
||
|
name: default
|
||
|
|
||
|
platform:
|
||
|
os: linux
|
||
|
arch: amd64
|
||
|
|
||
|
clone:
|
||
|
disable: true
|
||
|
|
||
|
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
|
||
|
|
||
|
trigger:
|
||
|
repo:
|
||
|
- garionion/fluffychat
|
||
|
- garionion/fluffybuild
|
||
|
|
||
|
...
|