2021-01-29 21:51:39 +01:00
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
type: exec
|
|
|
|
name: default
|
|
|
|
platform:
|
|
|
|
os: linux
|
2021-03-19 11:01:51 +01:00
|
|
|
arch: amd64
|
2021-01-29 21:51:39 +01:00
|
|
|
clone:
|
|
|
|
disable: true
|
|
|
|
steps:
|
|
|
|
- name: clone
|
|
|
|
commands:
|
|
|
|
- pwd
|
2021-03-19 11:01:51 +01:00
|
|
|
- git clone ssh://git@iohub.dev:2222/lxsang/antd-cgi-plugin.git
|
2021-01-29 21:51:39 +01:00
|
|
|
- cd ./antd-cgi-plugin && git checkout master
|
|
|
|
- name: build
|
|
|
|
commands:
|
|
|
|
- cd ./antd-cgi-plugin
|
|
|
|
- libtoolize
|
|
|
|
- aclocal
|
|
|
|
- autoconf
|
|
|
|
- automake --add-missing
|
2021-03-23 22:06:10 +01:00
|
|
|
- ./configure --prefix=/opt/cloud/artifacts/plugins --enable-debug=yes
|
2021-01-29 21:51:39 +01:00
|
|
|
- make
|
|
|
|
- make install
|
|
|
|
trigger:
|
|
|
|
branch:
|
|
|
|
- master
|