From 0eb55bbffe2f4f6bb46d9bdfdb1aa056194b11ef Mon Sep 17 00:00:00 2001 From: Dominic Grimm Date: Sat, 9 Jul 2022 17:33:03 +0200 Subject: [PATCH] Add CI integration --- .drone.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .drone.yml diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..3ed3273 --- /dev/null +++ b/.drone.yml @@ -0,0 +1,20 @@ +--- +kind: pipeline +type: docker +name: default + +steps: + - name: ameba + image: veelenga/ameba + commands: + - ameba src/ + - name: build + image: tmaier/docker-compose + volumes: + - name: dockersock + path: /var/run/docker.sock + commands: + - shards install --production + - shards build --release --static + depends_on: + - ameba