mirror of
https://github.com/lxsang/antd-tunnel-publishers
synced 2024-11-14 01:08:21 +01:00
29 lines
502 B
YAML
29 lines
502 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/lxsang/antd-tunnel-publishers.git
|
|
- cd ./antd-tunnel-publishers && git checkout master
|
|
- name: build
|
|
commands:
|
|
- cd ./antd-tunnel-publishers
|
|
- libtoolize
|
|
- aclocal
|
|
- autoconf
|
|
- automake --add-missing
|
|
- ./configure --prefix=/opt/cloud/artifacts/runners
|
|
- make
|
|
- make install
|
|
trigger:
|
|
branch:
|
|
- master
|