From 75cbaa24c8773ca02bac06afb3d5b771153912d0 Mon Sep 17 00:00:00 2001 From: Glenn Date: Sun, 5 Feb 2023 18:37:09 +0100 Subject: [PATCH] ci: Add drone.yml file --- .drone.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .drone.yml diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..3e527d7 --- /dev/null +++ b/.drone.yml @@ -0,0 +1,21 @@ +--- +kind: pipeline +type: docker +name: default + +steps: + - name: Build + image: crystallang/crystal:1.7.1 + volumes: + - name: cache + path: /stupid + commands: + - pwd + - cd /app + - shards install + - shards build + +volumes: + - name: cache + temp: {} +#