drone-configs/.drone.yml

34 lines
501 B
YAML
Raw Normal View History

2021-07-31 23:02:24 +02:00
kind: pipeline
type: docker
name: default
clone:
disable: true
trigger:
repo:
include:
- garionion/fluffychat
2021-07-31 23:42:10 +02:00
- garionion/fluffybuild
2021-07-31 23:02:24 +02:00
steps:
- name: clone
image: alpine/git
2021-07-31 23:42:10 +02:00
volumes:
- name: build
path: /
2021-07-31 23:02:24 +02:00
commands:
- git clone https://git.entr0py.de/garionion/fluffychat.git .
- git checkout $DRONE_COMMIT
- name: build
image: archlinux/base-devel
2021-07-31 23:42:10 +02:00
volumes:
- name: build
path: /
2021-07-31 23:02:24 +02:00
commands:
2021-07-31 23:42:10 +02:00
- ls -al
volumes:
- name: build
temp: {}