44 lines
768 B
YAML
44 lines
768 B
YAML
|
---
|
||
|
kind: pipeline
|
||
|
type: docker
|
||
|
name: testing
|
||
|
|
||
|
platform:
|
||
|
os: linux
|
||
|
arch: amd64
|
||
|
|
||
|
steps:
|
||
|
- name: hadolint
|
||
|
pull: always
|
||
|
image: hadolint/hadolint:v2.8.0-alpine
|
||
|
commands:
|
||
|
- hadolint --version
|
||
|
- hadolint Dockerfile
|
||
|
when:
|
||
|
ref:
|
||
|
- refs/heads/development
|
||
|
- "refs/heads/feature-**"
|
||
|
- "refs/pull/**"
|
||
|
- "refs/tags/**"
|
||
|
event:
|
||
|
exclude: [cron]
|
||
|
|
||
|
- name: kaniko-build
|
||
|
pull: always
|
||
|
image: immawanderer/drone-kaniko:linux-amd64
|
||
|
settings:
|
||
|
dockerfile: Dockerfile
|
||
|
context: .
|
||
|
args:
|
||
|
- BUILD_DATE="$(date -u +"%Y-%m-%dT%H:%M:%SZ")"
|
||
|
- VCS_REF=${DRONE_COMMIT_SHA:0:7}
|
||
|
when:
|
||
|
ref:
|
||
|
- refs/heads/development
|
||
|
- "refs/heads/feature-**"
|
||
|
- "refs/pull/**"
|
||
|
- "refs/tags/**"
|
||
|
event:
|
||
|
exclude: [cron]
|
||
|
|