mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-29 18:44:46 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			28 lines
		
	
	
		
			658 B
		
	
	
	
		
			Makefile
		
	
	
	
		
			Vendored
		
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			658 B
		
	
	
	
		
			Makefile
		
	
	
	
		
			Vendored
		
	
	
	
| all: testdeps
 | |
| 	go test ./...
 | |
| 	go test ./... -short -race
 | |
| 	go test ./... -run=NONE -bench=. -benchmem
 | |
| 	env GOOS=linux GOARCH=386 go test ./...
 | |
| 	go vet
 | |
| 	golangci-lint run
 | |
| 
 | |
| testdeps: testdata/redis/src/redis-server
 | |
| 
 | |
| bench: testdeps
 | |
| 	go test ./... -test.run=NONE -test.bench=. -test.benchmem
 | |
| 
 | |
| .PHONY: all test testdeps bench
 | |
| 
 | |
| testdata/redis:
 | |
| 	mkdir -p $@
 | |
| 	wget -qO- https://download.redis.io/releases/redis-6.2-rc3.tar.gz | tar xvz --strip-components=1 -C $@
 | |
| 
 | |
| testdata/redis/src/redis-server: testdata/redis
 | |
| 	cd $< && make all
 | |
| 
 | |
| tag:
 | |
| 	git tag $(VERSION)
 | |
| 	git tag extra/rediscmd/$(VERSION)
 | |
| 	git tag extra/redisotel/$(VERSION)
 | |
| 	git tag extra/rediscensus/$(VERSION)
 |