1
0
mirror of https://github.com/lxsang/sysmond.git synced 2024-07-06 03:19:47 +02:00
sysmond/.drone.yml

30 lines
484 B
YAML
Raw Normal View History

2021-02-03 13:35:00 +01:00
---
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