drone-test/.drone.yml

32 lines
590 B
YAML
Raw Normal View History

2020-05-25 04:45:54 +00:00
kind: pipeline
type: kubernetes
name: default
steps:
- name: test
2020-05-25 07:01:05 +00:00
image: golang:1.14.3
2020-05-25 04:45:54 +00:00
commands:
- go test -v
2020-05-25 04:45:54 +00:00
- go build
2020-05-25 05:06:21 +00:00
resources:
limits:
2020-05-25 06:49:54 +00:00
cpu: 1000
memory: 300MiB
requests:
2020-05-25 06:49:54 +00:00
cpu: 500
memory: 200MiB
2020-05-25 05:32:38 +00:00
- name: docker
2020-05-25 10:28:16 +00:00
image: askbjoernhansen/drone-kaniko:0.22-4
2020-05-25 10:11:45 +00:00
#image: banzaicloud/drone-kaniko
2020-05-25 05:32:38 +00:00
settings:
2020-05-25 06:52:07 +00:00
repo: drone-builds/drone-test
registry: harbor.ntppool.org
2020-05-25 10:11:45 +00:00
auto_tag: true
2020-05-25 10:27:50 +00:00
tags: ${DRONE_SOURCE_BRANCH},SHA7
2020-05-25 07:03:37 +00:00
cache: true
username:
from_secret: harbor_username
password:
from_secret: harbor_password