go-paste/.drone.yml

38 lines
459 B
YAML
Raw Normal View History

2020-08-17 09:40:10 -06:00
---
kind: pipeline
type: exec
name: default
platform:
os: linux
arch: amd64
steps:
- name: Setup
2020-08-17 09:45:10 -06:00
commands:
2020-08-17 09:40:10 -06:00
- make setup
- name: Test
2020-08-17 09:45:10 -06:00
commands:
2020-08-17 09:40:10 -06:00
- make test
2020-08-17 11:54:01 -06:00
---
kind: pipeline
type: exec
name: default
platform:
os: linux
arch: amd64
steps:
2020-08-17 09:40:10 -06:00
- name: Build Release
2020-08-17 09:45:10 -06:00
commands:
2020-08-17 09:40:10 -06:00
- cd debian && make release
- cd debian && make build
- name: deploy
2020-08-17 09:45:10 -06:00
commands:
2020-08-17 09:40:10 -06:00
- cd debian && make copy
- cd debian && make deploy
...