diff options
author | silverwind | 2022-09-05 23:35:46 +0200 |
---|---|---|
committer | GitHub | 2022-09-05 17:35:46 -0400 |
commit | 7f6306ccd128760e8c27df27987e8c7d5d606f6b (patch) | |
tree | 8a6e59ca030a4a2e63da7df29946cf1b14e8e7be /.drone.yml | |
parent | bc4cce138acf61a1a934098f08c3011126070424 (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.yml | 3 |
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 |