File tree Expand file tree Collapse file tree 2 files changed +5
-7
lines changed
Expand file tree Collapse file tree 2 files changed +5
-7
lines changed Original file line number Diff line number Diff line change @@ -557,8 +557,6 @@ steps:
557557 - groupadd --gid 1001 gitea && useradd -m --gid 1001 --uid 1001 gitea
558558 - apt-get update
559559 - apt-get install build-essential --yes
560- - curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.deb.sh | bash
561- - apt-get install -y git-lfs
562560 - export TEST_PGSQL_SCHEMA=''
563561 - ./build/test-env-prepare.sh
564562 - su gitea bash -c "export PATH=$PATH:/usr/local/go/bin && timeout -s ABRT 40m make test-e2e-pgsql"
Original file line number Diff line number Diff line change @@ -657,19 +657,19 @@ migrations.individual.mssql.test: $(GO_SOURCES)
657657migrations.individual.sqlite.test : $(GO_SOURCES )
658658 $(GO ) test $(GOTESTFLAGS ) -c code.gitea.io/gitea/models/migrations -o migrations.individual.sqlite.test -tags ' $(TEST_TAGS)'
659659
660- e2e.mysql.test : git-check $(GO_SOURCES )
660+ e2e.mysql.test : $(GO_SOURCES )
661661 $(GO ) test $(GOTESTFLAGS ) -c code.gitea.io/gitea/tests/e2e -o e2e.mysql.test
662662
663- e2e.mysql8.test : git-check $(GO_SOURCES )
663+ e2e.mysql8.test : $(GO_SOURCES )
664664 $(GO ) test $(GOTESTFLAGS ) -c code.gitea.io/gitea/tests/e2e -o e2e.mysql8.test
665665
666- e2e.pgsql.test : git-check $(GO_SOURCES )
666+ e2e.pgsql.test : $(GO_SOURCES )
667667 $(GO ) test $(GOTESTFLAGS ) -c code.gitea.io/gitea/tests/e2e -o e2e.pgsql.test
668668
669- e2e.mssql.test : git-check $(GO_SOURCES )
669+ e2e.mssql.test : $(GO_SOURCES )
670670 $(GO ) test $(GOTESTFLAGS ) -c code.gitea.io/gitea/tests/e2e -o e2e.mssql.test
671671
672- e2e.sqlite.test : git-check $(GO_SOURCES )
672+ e2e.sqlite.test : $(GO_SOURCES )
673673 $(GO ) test $(GOTESTFLAGS ) -c code.gitea.io/gitea/tests/e2e -o e2e.sqlite.test -tags ' $(TEST_TAGS)'
674674
675675.PHONY : check
You can’t perform that action at this time.
0 commit comments