drone-test/.drone.yml
Ask Bjørn Hansen 989a491429
Some checks failed
continuous-integration/drone/push Build is failing
More volume testing
2021-10-31 00:08:30 -07:00

47 lines
819 B
YAML

---
kind: pipeline
type: kubernetes
name: default
steps:
- name: test
image: golang:1.17.2
commands:
- go test -v
- go build
- echo "hello" > /shared/greetings.txt
volumes:
- name: go-pkg
path: /shared
resources:
limits:
cpu: 1000
memory: 300MiB
requests:
cpu: 500
memory: 200MiB
- name: docker
image: harbor.ntppool.org/ntppool/drone-kaniko:latest
pull: always
settings:
repo: drone-builds/drone-test
registry: harbor.ntppool.org
auto_tag: true
tags: SHA7,${DRONE_SOURCE_BRANCH}
cache: true
username:
from_secret: harbor_username
password:
from_secret: harbor_password
volumes:
- name: shared
claim:
name: go-pkg
---
kind: signature
hmac: 6c28661aaa292cf8455fde9c0942c10483e44f7d721f357ae24d1c6c67d48bcb
...