1
0
mirror of https://github.com/lxsang/sysmond.git synced 2024-07-03 10:09:48 +02:00
sysmond/.drone.yml

29 lines
455 B
YAML
Raw Normal View History

2021-02-03 13:35:00 +01:00
---
kind: pipeline
type: exec
name: default
platform:
os: linux
2021-03-19 11:06:16 +01:00
arch: amd64
2021-02-03 13:35:00 +01:00
clone:
disable: true
steps:
- name: clone
commands:
- pwd
2021-03-19 11:06:16 +01:00
- git clone ssh://git@iohub.dev:2222/lxsang/sysmond.git
2021-02-03 13:35:00 +01:00
- cd ./sysmond && git checkout master
- name: build
commands:
- cd ./sysmond
- libtoolize
- aclocal
- autoconf
- automake --add-missing
2021-03-19 11:06:16 +01:00
- ./configure --prefix=/opt/cloud/artifacts/
2021-02-03 13:35:00 +01:00
- make
2021-03-19 11:06:16 +01:00
- make install
2021-02-03 13:35:00 +01:00
trigger:
branch:
- master