Merge pull request #3 from zalando-incubator/cdp-build

Add delivery.yaml
This commit is contained in:
Arjun 2018-10-09 10:21:31 +02:00 committed by GitHub
commit d6959cfa1e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

20
delivery.yaml Normal file
View File

@ -0,0 +1,20 @@
version: "2017-09-20"
pipeline:
- id: build
overlay: ci/golang
type: script
commands:
- desc: test
cmd: |
make test
- desc: build
cmd: |
make build.docker
- desc: push
cmd: |
if [[ $CDP_TARGET_BRANCH == master && ! $CDP_PULL_REQUEST_NUMBER ]]; then
IMAGE=registry-write.opensource.zalan.do/teapot/kube-metrics-adapter
else
IMAGE=registry-write.opensource.zalan.do/teapot/kube-metrics-adapter-test
fi
IMAGE=$IMAGE VERSION=$CDP_BUILD_VERSION make build.push