mirror of
				https://github.com/minio/minio.git
				synced 2025-10-29 15:55:00 -04:00 
			
		
		
		
	- All test files have been renamed to their respective <package>_test name,
    this is done in accordance with
      - https://github.com/golang/go/wiki/CodeReviewComments#import-dot
        imports are largely used in testing, but to avoid namespace collision
        and circular dependencies
  - Never use _* in package names other than "_test" change fragment_v1 to expose
    fragment just like 'gopkg.in/check.v1'
		
	
			
		
			
				
	
	
		
			54 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			54 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| MINIOPATH=$(GOPATH)/src/github.com/minio-io/minio
 | |
| 
 | |
| all: getdeps install
 | |
| 
 | |
| checkdeps:
 | |
| 	@echo "Checking deps.."
 | |
| 	@(env bash $(PWD)/buildscripts/checkdeps.sh)
 | |
| 
 | |
| checkgopath:
 | |
| 	@echo "Checking if project is at ${MINIOPATH}"
 | |
| 	@if [ ! -d ${MINIOPATH} ]; then echo "Project not found in $GOPATH, please follow instructions provided at https://github.com/Minio-io/minio/blob/master/CONTRIBUTING.md#setup-your-minio-github-repository" && exit 1; fi
 | |
| 
 | |
| getdeps: checkdeps checkgopath
 | |
| 	@go get github.com/tools/godep && echo "Installed godep"
 | |
| 
 | |
| verifier: getdeps
 | |
| 	@echo "Checking for offending code"
 | |
| 	@go run buildscripts/verifier.go ${PWD}
 | |
| 	@go vet ./...
 | |
| 
 | |
| build-all: verifier
 | |
| 	@echo "Building Libraries"
 | |
| 	@godep go generate ./...
 | |
| 	@godep go build ./...
 | |
| 
 | |
| test-all: build-all
 | |
| 	@echo "Running Test Suites:"
 | |
| 	@godep go test -race ./...
 | |
| 
 | |
| test: test-all
 | |
| 
 | |
| minio: build-all test-all
 | |
| 
 | |
| install: minio
 | |
| 	@godep go install github.com/minio-io/minio && echo "Installed minio"
 | |
| 
 | |
| save: restore
 | |
| 	@godep save ./...
 | |
| 
 | |
| restore:
 | |
| 	@godep restore
 | |
| 
 | |
| env:
 | |
| 	@godep go env
 | |
| 
 | |
| docs-deploy:
 | |
| 	@mkdocs gh-deploy --clean
 | |
| 
 | |
| clean:
 | |
| 	@echo "Cleaning up all the generated files"
 | |
| 	@rm -fv pkg/utils/split/TESTPREFIX.*
 | |
| 	@rm -fv cover.out
 | |
| 	@rm -fv pkg/storage/erasure/*.syso
 |