mirror of
https://github.com/lxsang/sysmond.git
synced 2024-11-08 14:38:26 +01:00
29 lines
455 B
YAML
29 lines
455 B
YAML
---
|
|
kind: pipeline
|
|
type: exec
|
|
name: default
|
|
platform:
|
|
os: linux
|
|
arch: amd64
|
|
clone:
|
|
disable: true
|
|
steps:
|
|
- name: clone
|
|
commands:
|
|
- pwd
|
|
- git clone ssh://git@iohub.dev:2222/lxsang/sysmond.git
|
|
- cd ./sysmond && git checkout master
|
|
- name: build
|
|
commands:
|
|
- cd ./sysmond
|
|
- libtoolize
|
|
- aclocal
|
|
- autoconf
|
|
- automake --add-missing
|
|
- ./configure --prefix=/opt/cloud/artifacts/
|
|
- make
|
|
- make install
|
|
trigger:
|
|
branch:
|
|
- master
|