drone-test/.drone.yml
Ask Bjørn Hansen 7f38e567d9
All checks were successful
continuous-integration/drone/push Build is passing
curl test
2023-06-03 17:41:42 -07:00

74 lines
1.3 KiB
YAML

---
kind: pipeline
type: kubernetes
name: default
steps:
- name: test
image: golang:1.20.4
commands:
- pwd
- go test -v
- go build
- echo "hello" > /shared/greetings.txt
- hostname >> /shared/greetings.txt
volumes:
- name: shared
path: /shared
resources:
limits:
cpu: 1000
memory: 300MiB
requests:
cpu: 500
memory: 200MiB
- name: download
image: fedora:38
commands:
- ls; pwd
- ./scripts/download-release test/187 dist/
resources:
requests:
cpu: 250
memory: 64MiB
limits:
cpu: 250
memory: 256MiB
- name: read
pull: if-not-exists
image: alpine
volumes:
- name: shared
path: /shared
commands:
- pwd
- ls /shared
- cat /shared/greetings.txt
- name: docker
image: harbor.ntppool.org/ntppool/drone-kaniko:main
pull: always
settings:
repo: ask/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: 94513b436eb1b0ef9f1d1b0f128328f23bb343f1b9d9d6e7a0e80dacc22d3c48
...