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.
This commit is contained in:
silverwind 2022-09-05 23:35:46 +02:00 committed by GitHub
parent bc4cce138a
commit 7f6306ccd1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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