From 256757eb2a0086ff64a946c9bf143958f89d7ee2 Mon Sep 17 00:00:00 2001 From: Xuan Sang LE Date: Wed, 3 Feb 2021 13:35:00 +0100 Subject: [PATCH] Create .drone.yml --- .drone.yml | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 .drone.yml diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..ecc66a5 --- /dev/null +++ b/.drone.yml @@ -0,0 +1,29 @@ +--- +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/sysmond.git + - cd ./sysmond && git checkout master +- name: build + commands: + - cd ./sysmond + - libtoolize + - aclocal + - autoconf + - automake --add-missing + - ./configure --prefix=/usr + - make + - install -m 755 sysmond /usr/bin/sysmond + - systemctl restart sysmond +trigger: + branch: + - master