From d50e419ba8e39caf586978e524594a824bee179f Mon Sep 17 00:00:00 2001 From: "J.A. de Jong - Redu-Sone B.V., ASCEE V.O.F" Date: Thu, 12 Jan 2023 12:02:05 +0100 Subject: [PATCH] Now testing without cache --- .drone.yml | 38 +------------------------------------- 1 file changed, 1 insertion(+), 37 deletions(-) diff --git a/.drone.yml b/.drone.yml index 17969e0..7a3959f 100644 --- a/.drone.yml +++ b/.drone.yml @@ -1,26 +1,11 @@ kind: pipeline type: docker -name: default +name: archlinux_build clone: depth: 3 steps: - - name: restore-cache-with-filesystem - image: meltwater/drone-cache - pull: true - settings: - backend: "filesystem" - restore: true - cache_key: "volume" - archive_format: "gzip" - # filesystem_cache_root: "/tmp/cache" - mount: - - 'vendor' - volumes: - - name: cache - path: /tmp/cache - - name: build-release-arch image: archlinux_build pull: if-not-exists @@ -31,24 +16,3 @@ steps: # More than two makes ascee2 irresponsive for now - make -j2 - - name: rebuild-cache-with-filesystem - image: meltwater/drone-cache - pull: true - settings: - backend: "filesystem" - rebuild: true - cache_key: "volume" - archive_format: "gzip" - # filesystem_cache_root: "/tmp/cache" - mount: - - 'vendor' - volumes: - - name: cache - path: /tmp/cache - -volumes: - - name: cache - host: - path: /var/lib/cache - -