From 84f2b586ce6055b322d5a5ee3bb388faa89e6744 Mon Sep 17 00:00:00 2001 From: Xuan Sang LE Date: Wed, 27 Jan 2021 20:40:51 +0100 Subject: [PATCH] Create .drone.yml --- .drone.yml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .drone.yml diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..95c4fac --- /dev/null +++ b/.drone.yml @@ -0,0 +1,28 @@ +--- +kind: pipeline +type: exec +name: default +platform: + os: linux + arch: arm64 +clone: + disable: true +steps: +- name: clone + commands: + - pwd + - git clone git@iohub.dev:lxsang/antd-tunnel-plugin.git + - cd ./antd-tunnel-plugin && git checkout master +- name: build + commands: + - cd ./antd-tunnel-plugin + - libtoolize + - aclocal + - autoconf + - automake --add-missing + - ./configure --prefix=/opt/cloud/cuser + - make + - make install +trigger: + branch: + - master