diff --git a/.drone.yml b/.drone.yml index cb4a360..07bda01 100644 --- a/.drone.yml +++ b/.drone.yml @@ -3,42 +3,11 @@ 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 +git ad- 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: @@ -51,18 +20,3 @@ steps: tags: - latest - ${DRONE_BUILD_NUMBER} - -- name: send telegram notification - image: appleboy/drone-telegram - settings: - token: - from_secret: TELEGRAM_TOKEN - to: - from_secret: TELEGRAM_TO_ID - when: - status: [ failure ] - -volumes: -- name: cache - host: - path: "/tmp/cache"