From 516ec725970191b86ce296344f0e6cfd891f3229 Mon Sep 17 00:00:00 2001 From: Xuan Sang LE Date: Fri, 29 Jan 2021 21:51:39 +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..1d4dc10 --- /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-cgi-plugin.git + - cd ./antd-cgi-plugin && git checkout master +- name: build + commands: + - cd ./antd-cgi-plugin + - libtoolize + - aclocal + - autoconf + - automake --add-missing + - ./configure --prefix=/opt/cloud/cuser + - make + - make install +trigger: + branch: + - master