aboutsummaryrefslogtreecommitdiff
path: root/.drone.yml
diff options
context:
space:
mode:
authorsilverwind2022-09-05 23:35:46 +0200
committerGitHub2022-09-05 17:35:46 -0400
commit7f6306ccd128760e8c27df27987e8c7d5d606f6b (patch)
tree8a6e59ca030a4a2e63da7df29946cf1b14e8e7be /.drone.yml
parentbc4cce138acf61a1a934098f08c3011126070424 (diff)
Add missing volume to test-e2e (#21079)
Without it, the deps-backend step before is useless as `go test` will not see the files in GOPATH and re-download them.
Diffstat (limited to '.drone.yml')
-rw-r--r--.drone.yml3
1 files changed, 3 insertions, 0 deletions
diff --git a/.drone.yml b/.drone.yml
index a4079e8e0..c72c4226d 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