From 365cfd0911dd9a822ff3875e139c4c6d773b167f Mon Sep 17 00:00:00 2001 From: Kevin Midboe Date: Mon, 26 Sep 2022 00:24:37 +0200 Subject: [PATCH] Simple drone integration that just tries to build package --- .drone.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .drone.yml diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..ae822ec --- /dev/null +++ b/.drone.yml @@ -0,0 +1,14 @@ +--- +kind: pipeline +type: docker +name: delugeClient + +platform: + os: linux + arch: amd64 + +steps: + - name: Build package + image: python:3.8 + commands: + - make build