31 lines
431 B
YAML
31 lines
431 B
YAML
---
|
|
kind: pipeline
|
|
type: docker
|
|
name: linux-amd64
|
|
|
|
platform:
|
|
arch: amd64
|
|
os: linux
|
|
|
|
steps:
|
|
- name: test
|
|
image: registry.lan/alpine:3.8
|
|
commands:
|
|
- echo "Running tests"
|
|
|
|
- name: build
|
|
image: registry.lan/alpine:3.8
|
|
commands:
|
|
- echo "building"
|
|
|
|
---
|
|
kind: pipeline
|
|
name: default
|
|
|
|
steps:
|
|
- name: kaniko
|
|
image: banzaicloud/drone-kaniko
|
|
settings:
|
|
registry: registry.lan
|
|
repo: drone-test
|
|
auto_tag: true |