30 lines
400 B
YAML
30 lines
400 B
YAML
---
|
|
kind: pipeline
|
|
type: exec
|
|
name: default
|
|
|
|
platform:
|
|
os: linux
|
|
arch: amd64
|
|
|
|
steps:
|
|
- name: Setup
|
|
commands:
|
|
- make setup
|
|
|
|
- name: Test
|
|
commands:
|
|
- make test
|
|
|
|
- name: Build Release
|
|
commands:
|
|
- cd debian && make release
|
|
- cd debian && make build
|
|
- cd debian && make copy
|
|
- cd debian && make deploy
|
|
when:
|
|
target:
|
|
- production
|
|
event:
|
|
- promote
|
|
... |