mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-31 16:01:32 +01:00 
			
		
		
		
	Run go-install in deps-tools in parallel (#31711)
				
					
				
			`go install` is far too conservative in regards to parallel HTTP requests, so we can run the commands in parallel to achieve a speedup.
This commit is contained in:
		
							parent
							
								
									7dec8de914
								
							
						
					
					
						commit
						5f526d7d3d
					
				
							
								
								
									
										25
									
								
								Makefile
									
									
									
									
									
								
							
							
						
						
									
										25
									
								
								Makefile
									
									
									
									
									
								
							| @ -858,18 +858,19 @@ deps-backend: | ||||
| 
 | ||||
| .PHONY: deps-tools | ||||
| deps-tools: | ||||
| 	$(GO) install $(AIR_PACKAGE) | ||||
| 	$(GO) install $(EDITORCONFIG_CHECKER_PACKAGE) | ||||
| 	$(GO) install $(GOFUMPT_PACKAGE) | ||||
| 	$(GO) install $(GOLANGCI_LINT_PACKAGE) | ||||
| 	$(GO) install $(GXZ_PACKAGE) | ||||
| 	$(GO) install $(MISSPELL_PACKAGE) | ||||
| 	$(GO) install $(SWAGGER_PACKAGE) | ||||
| 	$(GO) install $(XGO_PACKAGE) | ||||
| 	$(GO) install $(GO_LICENSES_PACKAGE) | ||||
| 	$(GO) install $(GOVULNCHECK_PACKAGE) | ||||
| 	$(GO) install $(ACTIONLINT_PACKAGE) | ||||
| 	$(GO) install $(GOPLS_PACKAGE) | ||||
| 	$(GO) install $(AIR_PACKAGE) & \
 | ||||
| 	$(GO) install $(EDITORCONFIG_CHECKER_PACKAGE) & \
 | ||||
| 	$(GO) install $(GOFUMPT_PACKAGE) & \
 | ||||
| 	$(GO) install $(GOLANGCI_LINT_PACKAGE) & \
 | ||||
| 	$(GO) install $(GXZ_PACKAGE) & \
 | ||||
| 	$(GO) install $(MISSPELL_PACKAGE) & \
 | ||||
| 	$(GO) install $(SWAGGER_PACKAGE) & \
 | ||||
| 	$(GO) install $(XGO_PACKAGE) & \
 | ||||
| 	$(GO) install $(GO_LICENSES_PACKAGE) & \
 | ||||
| 	$(GO) install $(GOVULNCHECK_PACKAGE) & \
 | ||||
| 	$(GO) install $(ACTIONLINT_PACKAGE) & \
 | ||||
| 	$(GO) install $(GOPLS_PACKAGE) & \
 | ||||
| 	wait | ||||
| 
 | ||||
| node_modules: package-lock.json | ||||
| 	npm install --no-save | ||||
|  | ||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user