1
0
mirror of https://github.com/lxsang/ant-http synced 2024-07-03 13:39:46 +02:00
ant-http/.drone.yml

29 lines
470 B
YAML
Raw Normal View History

2021-01-27 00:40:51 +01:00
---
kind: pipeline
type: exec
name: default
platform:
os: linux
2021-03-19 10:21:45 +01:00
arch: amd64
2021-01-27 19:58:14 +01:00
clone:
disable: true
2021-01-27 00:40:51 +01:00
steps:
2021-01-27 19:58:14 +01:00
- name: clone
commands:
- pwd
2021-03-19 10:27:46 +01:00
- git clone ssh://git@iohub.dev:2222/lxsang/ant-http.git
2021-01-27 19:58:14 +01:00
- cd ./ant-http && git checkout master
2021-01-27 00:40:51 +01:00
- name: build
commands:
2021-01-27 19:58:14 +01:00
- cd ./ant-http
2021-01-27 00:40:51 +01:00
- libtoolize
- aclocal
- autoconf
- automake --add-missing
2021-03-25 21:50:23 +01:00
- ./configure --prefix=/usr
2021-01-27 00:40:51 +01:00
- make
2021-03-25 21:50:23 +01:00
- DESTDIR=/opt/cloud/artifacts make install
2021-01-27 00:40:51 +01:00
trigger:
branch:
- master