mirror of
				https://github.com/42wim/matterbridge.git
				synced 2025-11-03 23:37:24 +01:00 
			
		
		
		
	Bumps [github.com/mattermost/mattermost-server/v6](https://github.com/mattermost/mattermost-server) from 6.1.0 to 6.3.0. - [Release notes](https://github.com/mattermost/mattermost-server/releases) - [Changelog](https://github.com/mattermost/mattermost-server/blob/master/CHANGELOG.md) - [Commits](https://github.com/mattermost/mattermost-server/compare/v6.1.0...v6.3.0) --- updated-dependencies: - dependency-name: github.com/mattermost/mattermost-server/v6 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
		
			
				
	
	
		
			36 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
GOPATH := $(shell go env GOPATH)
 | 
						|
TMPDIR := $(shell mktemp -d)
 | 
						|
 | 
						|
all: checks
 | 
						|
 | 
						|
.PHONY: examples docs
 | 
						|
 | 
						|
checks: lint vet test examples functional-test
 | 
						|
 | 
						|
lint:
 | 
						|
	@mkdir -p ${GOPATH}/bin
 | 
						|
	@echo "Installing golangci-lint" && curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(GOPATH)/bin v1.40.1
 | 
						|
	@echo "Running $@ check"
 | 
						|
	@GO111MODULE=on ${GOPATH}/bin/golangci-lint cache clean
 | 
						|
	@GO111MODULE=on ${GOPATH}/bin/golangci-lint run --timeout=5m --config ./.golangci.yml
 | 
						|
 | 
						|
vet:
 | 
						|
	@GO111MODULE=on go vet ./...
 | 
						|
 | 
						|
test:
 | 
						|
	@GO111MODULE=on SERVER_ENDPOINT=localhost:9000 ACCESS_KEY=minio SECRET_KEY=minio123 ENABLE_HTTPS=1 MINT_MODE=full go test -race -v ./...
 | 
						|
 | 
						|
examples:
 | 
						|
	@echo "Building s3 examples"
 | 
						|
	@cd ./examples/s3 && $(foreach v,$(wildcard examples/s3/*.go),go build -mod=mod -o ${TMPDIR}/$(basename $(v)) $(notdir $(v)) || exit 1;)
 | 
						|
	@echo "Building minio examples"
 | 
						|
	@cd ./examples/minio && $(foreach v,$(wildcard examples/minio/*.go),go build -mod=mod -o ${TMPDIR}/$(basename $(v)) $(notdir $(v)) || exit 1;)
 | 
						|
 | 
						|
functional-test:
 | 
						|
	@GO111MODULE=on SERVER_ENDPOINT=localhost:9000 ACCESS_KEY=minio SECRET_KEY=minio123 ENABLE_HTTPS=1 MINT_MODE=full go run functional_tests.go
 | 
						|
 | 
						|
clean:
 | 
						|
	@echo "Cleaning up all the generated files"
 | 
						|
	@find . -name '*.test' | xargs rm -fv
 | 
						|
	@find . -name '*~' | xargs rm -fv
 |