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
|