From c4987896178a062bdcf35c2e983c30e1b53def42 Mon Sep 17 00:00:00 2001 From: Marvin Preuss Date: Mon, 31 Jan 2022 10:11:59 +0100 Subject: [PATCH] ci: uses no caching plugin --- .woodpecker.yml | 34 ++++------------------------------ 1 file changed, 4 insertions(+), 30 deletions(-) diff --git a/.woodpecker.yml b/.woodpecker.yml index 698ef7d..812335c 100644 --- a/.woodpecker.yml +++ b/.woodpecker.yml @@ -1,37 +1,22 @@ pipeline: - restore-cache: - image: meltwater/drone-cache - settings: - backend: filesystem - restore: true - cache_key: volume - archive_format: gzip - mount: - - /usr - volumes: - - /tmp/drone-cache:/tmp/cache - install-deps: - image: golang:1.17-alpine-alpine - commands: - - apk add --no-cache build-base git tags: image: alpine/git commands: - git fetch --tags lint: - image: golang:1.17-alpine + image: golang:1.17 commands: - make lint test: - image: golang:1.17-alpine + image: golang:1.17 commands: - make test build: - image: golang:1.17-alpine + image: golang:1.17 commands: - make build release: - image: golang:1.17-alpine + image: golang:1.17 commands: - make release secrets: @@ -39,14 +24,3 @@ pipeline: when: event: - tag - rebuild-cache: - image: meltwater/drone-cache - settings: - backend: filesystem - rebuild: true - cache_key: volume - archive_format: gzip - mount: - - /usr - volumes: - - /tmp/drone-cache:/tmp/cache