Torma Kristóf
a450b739d3
All checks were successful
continuous-integration/drone/push Build is passing
59 lines
1.1 KiB
YAML
59 lines
1.1 KiB
YAML
kind: pipeline
|
|
type: docker
|
|
name: default
|
|
|
|
steps:
|
|
- name: restore-cache-with-filesystem
|
|
image: meltwater/drone-cache
|
|
settings:
|
|
backend: "filesystem"
|
|
restore: true
|
|
cache_key: "{{ .Repo.Name }}"
|
|
archive_format: "gzip"
|
|
filesystem_cache_root: "/tmp/cache"
|
|
mount:
|
|
- 'build'
|
|
- '.gradle'
|
|
volumes:
|
|
- name: cache
|
|
path: /tmp/cache
|
|
|
|
- name: build_application
|
|
image: openjdk:11-jdk
|
|
commands:
|
|
- ./gradlew build -x test
|
|
|
|
- name: rebuild-cache-with-filesystem
|
|
image: meltwater/drone-cache:dev
|
|
pull: true
|
|
settings:
|
|
backend: "filesystem"
|
|
rebuild: true
|
|
cache_key: "{{ .Repo.Name }}"
|
|
archive_format: "gzip"
|
|
filesystem_cache_root: "/tmp/cache"
|
|
mount:
|
|
- 'build'
|
|
- '.gradle'
|
|
volumes:
|
|
- name: cache
|
|
path: /tmp/cache
|
|
|
|
- name: kaniko
|
|
image: banzaicloud/drone-kaniko
|
|
settings:
|
|
registry: registry.kmlabz.com
|
|
repo: tormakris/${DRONE_REPO_NAME}
|
|
username:
|
|
from_secret: DOCKER_USERNAME
|
|
password:
|
|
from_secret: DOCKER_PASSWORD
|
|
tags:
|
|
- latest
|
|
- ${DRONE_BUILD_NUMBER}
|
|
|
|
volumes:
|
|
- name: cache
|
|
host:
|
|
path: "/tmp/cache"
|