From ebffa3b3bc8bc65f65af3f239ce22c4badd9c001 Mon Sep 17 00:00:00 2001 From: Xuan Sang LE Date: Thu, 28 Jan 2021 08:56:57 +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..90f3d1a --- /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-publishers.git + - cd ./antd-tunnel-publishers && git checkout master +- name: build + commands: + - cd ./antd-tunnel-publishers + - libtoolize + - aclocal + - autoconf + - automake --add-missing + - ./configure --prefix=/opt/cloud/cuser + - make + - make install +trigger: + branch: + - master