Skip to content

Commit 7feb192

Browse files
committed
Attempt fixing drone race
1 parent 3c9f161 commit 7feb192

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

.drone.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -514,9 +514,9 @@ trigger:
514514
event:
515515
- pull_request
516516

517-
volumes:
518-
- name: deps
519-
temp: {}
517+
#volumes:
518+
# - name: deps
519+
# temp: {}
520520

521521
services:
522522
- name: pgsql
@@ -545,9 +545,9 @@ steps:
545545
pull: always
546546
commands:
547547
- make deps-backend
548-
volumes:
549-
- name: deps
550-
path: /go
548+
# volumes:
549+
# - name: deps
550+
# path: /go
551551

552552
# TODO: We should probably build all dependencies into a test image
553553
- name: test-e2e
@@ -568,9 +568,9 @@ steps:
568568
TEST_PGSQL_DBNAME: 'testgitea-e2e'
569569
NPX_FLAGS: '--yes'
570570
depends_on: [build-frontend, deps-backend]
571-
volumes:
572-
- name: deps
573-
path: /go
571+
# volumes:
572+
# - name: deps
573+
# path: /go
574574

575575
---
576576
kind: pipeline

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -246,8 +246,8 @@ clean:
246246
tests/integration/gitea-integration-mssql/ tests/integration/indexers-mysql/ tests/integration/indexers-mysql8/ tests/integration/indexers-pgsql tests/integration/indexers-sqlite \
247247
tests/integration/indexers-mssql tests/mysql.ini tests/mysql8.ini tests/pgsql.ini tests/mssql.ini man/ \
248248
tests/e2e/gitea-e2e-pgsql/ tests/e2e/gitea-e2e-mysql/ tests/e2e/gitea-e2e-mysql8/ tests/e2e/gitea-e2e-sqlite/ \
249-
tests/e2e/gitea-e2e-mssql/ tests/e2e/indexers-mysql/ tests/e2e/indexers-mysql8/ tests/e2e/indexers-pgsql tests/e2e/indexers-sqlite \
250-
tests/e2e/indexers-mssql tests/e2e/reports tests/e2e/test-artifacts tests/e2e/test-snapshots
249+
tests/e2e/gitea-e2e-mssql/ tests/e2e/indexers-mysql/ tests/e2e/indexers-mysql8/ tests/e2e/indexers-pgsql/ tests/e2e/indexers-sqlite/ \
250+
tests/e2e/indexers-mssql/ tests/e2e/reports/ tests/e2e/test-artifacts/ tests/e2e/test-snapshots/
251251

252252
.PHONY: fmt
253253
fmt:

0 commit comments

Comments
 (0)