From a628f0b52437d8c187bb1dcd43f599d6219ffda0 Mon Sep 17 00:00:00 2001 From: silverwind Date: Mon, 5 Sep 2022 21:20:07 +0200 Subject: [PATCH] Add missing volume to test-e2e Without it, the deps-backend step before is useless as `go test` will not see the files in GOPATH and re-download them. --- .drone.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.drone.yml b/.drone.yml index a4079e8e09684..c72c4226d02ae 100644 --- a/.drone.yml +++ b/.drone.yml @@ -569,6 +569,9 @@ steps: TEST_PGSQL_DBNAME: 'testgitea-e2e' DEBIAN_FRONTEND: noninteractive depends_on: [build-frontend, deps-backend] + volumes: + - name: deps + path: /go --- kind: pipeline