From 8431c8193094747aff9cdb593358823a2e57e60a Mon Sep 17 00:00:00 2001 From: zeekling Date: Sun, 22 Nov 2020 15:35:31 +0800 Subject: [PATCH] =?UTF-8?q?drone.yml=20=E6=9E=84=E5=BB=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .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..014f12a --- /dev/null +++ b/.drone.yml @@ -0,0 +1,21 @@ +# drone 本地构建 +kind: pipeline +type: docker +name: redis + +platform: + arch: arm64 + +# drone构建步骤 +steps: + # 1.maven打包 + - name: c make + pull: if-not-exists + image: gcc + commands: + - make + +# drone执行触发器 +trigger: + branch: + - master