2016-07-05 11:10:28 -04:00
|
|
|
.PHONY: build package run stop run-client run-server stop-client stop-server restart restart-server restart-client start-docker clean-dist clean nuke check-style check-client-style check-server-style check-unit-tests test dist setup-mac prepare-enteprise run-client-tests setup-run-client-tests cleanup-run-client-tests test-client build-linux build-osx build-windows internal-test-client
|
2015-06-14 23:53:32 -08:00
|
|
|
|
2016-05-12 15:08:58 -04:00
|
|
|
# For golang 1.5.x compatibility (remove when we don't want to support it anymore)
|
2016-05-12 23:56:07 -04:00
|
|
|
export GO15VENDOREXPERIMENT=1
|
2016-05-12 15:08:58 -04:00
|
|
|
|
2016-03-18 12:46:57 -04:00
|
|
|
# Build Flags
|
2015-06-14 23:53:32 -08:00
|
|
|
BUILD_NUMBER ?= $(BUILD_NUMBER:)
|
2015-09-16 17:45:00 -07:00
|
|
|
BUILD_DATE = $(shell date -u)
|
2015-09-17 13:01:40 -07:00
|
|
|
BUILD_HASH = $(shell git rev-parse HEAD)
|
2016-03-18 12:46:57 -04:00
|
|
|
# If we don't set the build number it defaults to dev
|
2015-06-14 23:53:32 -08:00
|
|
|
ifeq ($(BUILD_NUMBER),)
|
|
|
|
|
BUILD_NUMBER := dev
|
|
|
|
|
endif
|
2016-03-18 12:46:57 -04:00
|
|
|
BUILD_ENTERPRISE_DIR ?= ../enterprise
|
|
|
|
|
BUILD_ENTERPRISE ?= true
|
|
|
|
|
BUILD_ENTERPRISE_READY = false
|
2016-04-06 09:33:33 -04:00
|
|
|
BUILD_TYPE_NAME = team
|
2016-05-20 10:41:47 -04:00
|
|
|
BUILD_HASH_ENTERPRISE = none
|
2016-03-18 12:46:57 -04:00
|
|
|
ifneq ($(wildcard $(BUILD_ENTERPRISE_DIR)/.),)
|
|
|
|
|
ifeq ($(BUILD_ENTERPRISE),true)
|
|
|
|
|
BUILD_ENTERPRISE_READY = true
|
2016-04-06 09:33:33 -04:00
|
|
|
BUILD_TYPE_NAME = enterprise
|
2016-05-20 10:41:47 -04:00
|
|
|
BUILD_HASH_ENTERPRISE = $(shell cd $(BUILD_ENTERPRISE_DIR) && git rev-parse HEAD)
|
2016-03-18 12:46:57 -04:00
|
|
|
else
|
|
|
|
|
BUILD_ENTERPRISE_READY = false
|
2016-04-06 09:33:33 -04:00
|
|
|
BUILD_TYPE_NAME = team
|
2016-03-18 12:46:57 -04:00
|
|
|
endif
|
2015-07-29 23:55:45 -08:00
|
|
|
else
|
2016-03-18 12:46:57 -04:00
|
|
|
BUILD_ENTERPRISE_READY = false
|
2016-04-06 09:33:33 -04:00
|
|
|
BUILD_TYPE_NAME = team
|
2015-07-29 23:55:45 -08:00
|
|
|
endif
|
2016-03-18 12:46:57 -04:00
|
|
|
BUILD_WEBAPP_DIR = ./webapp
|
2015-07-29 23:55:45 -08:00
|
|
|
|
2016-03-18 12:46:57 -04:00
|
|
|
# Golang Flags
|
2016-05-12 23:56:07 -04:00
|
|
|
GOPATH ?= $(GOPATH:):./vendor
|
2016-03-18 12:46:57 -04:00
|
|
|
GOFLAGS ?= $(GOFLAGS:)
|
2016-05-12 23:56:07 -04:00
|
|
|
GO=go
|
2016-03-18 12:46:57 -04:00
|
|
|
GO_LINKER_FLAGS ?= -ldflags \
|
|
|
|
|
"-X github.com/mattermost/platform/model.BuildNumber=$(BUILD_NUMBER)\
|
|
|
|
|
-X 'github.com/mattermost/platform/model.BuildDate=$(BUILD_DATE)'\
|
|
|
|
|
-X github.com/mattermost/platform/model.BuildHash=$(BUILD_HASH)\
|
2016-05-20 10:41:47 -04:00
|
|
|
-X github.com/mattermost/platform/model.BuildHashEnterprise=$(BUILD_HASH_ENTERPRISE)\
|
2016-03-18 12:46:57 -04:00
|
|
|
-X github.com/mattermost/platform/model.BuildEnterpriseReady=$(BUILD_ENTERPRISE_READY)"
|
|
|
|
|
|
|
|
|
|
# Output paths
|
2015-06-14 23:53:32 -08:00
|
|
|
DIST_ROOT=dist
|
|
|
|
|
DIST_PATH=$(DIST_ROOT)/mattermost
|
|
|
|
|
|
2016-03-18 12:46:57 -04:00
|
|
|
# Tests
|
2015-06-14 23:53:32 -08:00
|
|
|
TESTS=.
|
|
|
|
|
|
2016-03-18 12:46:57 -04:00
|
|
|
all: dist
|
2015-11-27 16:36:57 -05:00
|
|
|
|
2016-03-18 12:46:57 -04:00
|
|
|
dist: | check-style test package
|
2015-11-22 20:39:03 -05:00
|
|
|
|
|
|
|
|
start-docker:
|
|
|
|
|
@echo Starting docker containers
|
|
|
|
|
|
|
|
|
|
@if [ $(shell docker ps -a | grep -ci mattermost-mysql) -eq 0 ]; then \
|
|
|
|
|
echo starting mattermost-mysql; \
|
|
|
|
|
docker run --name mattermost-mysql -p 3306:3306 -e MYSQL_ROOT_PASSWORD=mostest \
|
|
|
|
|
-e MYSQL_USER=mmuser -e MYSQL_PASSWORD=mostest -e MYSQL_DATABASE=mattermost_test -d mysql:5.7 > /dev/null; \
|
|
|
|
|
elif [ $(shell docker ps | grep -ci mattermost-mysql) -eq 0 ]; then \
|
|
|
|
|
echo restarting mattermost-mysql; \
|
|
|
|
|
docker start mattermost-mysql > /dev/null; \
|
2015-09-17 16:27:25 -04:00
|
|
|
fi
|
|
|
|
|
|
2015-11-22 20:39:03 -05:00
|
|
|
@if [ $(shell docker ps -a | grep -ci mattermost-postgres) -eq 0 ]; then \
|
|
|
|
|
echo starting mattermost-postgres; \
|
|
|
|
|
docker run --name mattermost-postgres -p 5432:5432 -e POSTGRES_USER=mmuser -e POSTGRES_PASSWORD=mostest \
|
|
|
|
|
-d postgres:9.4 > /dev/null; \
|
|
|
|
|
elif [ $(shell docker ps | grep -ci mattermost-postgres) -eq 0 ]; then \
|
|
|
|
|
echo restarting mattermost-postgres; \
|
|
|
|
|
docker start mattermost-postgres > /dev/null; \
|
2016-04-21 22:37:01 -07:00
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
@echo Ldap test user test.one
|
|
|
|
|
@if [ $(shell docker ps -a | grep -ci mattermost-openldap) -eq 0 ]; then \
|
|
|
|
|
echo starting mattermost-openldap; \
|
|
|
|
|
docker run --name mattermost-openldap -p 389:389 -p 636:636 \
|
|
|
|
|
-e LDAP_TLS_VERIFY_CLIENT="never" \
|
|
|
|
|
-e LDAP_ORGANISATION="Mattermost Test" \
|
|
|
|
|
-e LDAP_DOMAIN="mm.test.com" \
|
|
|
|
|
-e LDAP_ADMIN_PASSWORD="mostest" \
|
|
|
|
|
-d osixia/openldap:1.1.2 > /dev/null;\
|
|
|
|
|
sleep 10; \
|
|
|
|
|
docker exec -ti mattermost-openldap bash -c 'echo -e "dn: ou=testusers,dc=mm,dc=test,dc=com\nobjectclass: organizationalunit" | ldapadd -x -D "cn=admin,dc=mm,dc=test,dc=com" -w mostest';\
|
|
|
|
|
docker exec -ti mattermost-openldap bash -c 'echo -e "dn: uid=test.one,ou=testusers,dc=mm,dc=test,dc=com\nobjectclass: iNetOrgPerson\nsn: User\ncn: Test1\nmail: success+testone@simulator.amazonses.com" | ldapadd -x -D "cn=admin,dc=mm,dc=test,dc=com" -w mostest';\
|
|
|
|
|
docker exec -ti mattermost-openldap bash -c 'ldappasswd -s Password1 -D "cn=admin,dc=mm,dc=test,dc=com" -x "uid=test.one,ou=testusers,dc=mm,dc=test,dc=com" -w mostest';\
|
|
|
|
|
docker exec -ti mattermost-openldap bash -c 'echo -e "dn: uid=test.two,ou=testusers,dc=mm,dc=test,dc=com\nobjectclass: iNetOrgPerson\nsn: User\ncn: Test2\nmail: success+testtwo@simulator.amazonses.com" | ldapadd -x -D "cn=admin,dc=mm,dc=test,dc=com" -w mostest';\
|
|
|
|
|
docker exec -ti mattermost-openldap bash -c 'ldappasswd -s Password1 -D "cn=admin,dc=mm,dc=test,dc=com" -x "uid=test.two,ou=testusers,dc=mm,dc=test,dc=com" -w mostest';\
|
|
|
|
|
docker exec -ti mattermost-openldap bash -c 'echo -e "dn: cn=tgroup,ou=testusers,dc=mm,dc=test,dc=com\nobjectclass: groupOfUniqueNames\nuniqueMember: uid=test.one,ou=testusers,dc=mm,dc=test,dc=com" | ldapadd -x -D "cn=admin,dc=mm,dc=test,dc=com" -w mostest';\
|
|
|
|
|
elif [ $(shell docker ps | grep -ci mattermost-openldap) -eq 0 ]; then \
|
|
|
|
|
echo restarting mattermost-openldap; \
|
|
|
|
|
docker start mattermost-openldap > /dev/null; \
|
2015-11-23 14:23:49 -05:00
|
|
|
sleep 10; \
|
2015-11-22 20:39:03 -05:00
|
|
|
fi
|
2015-07-20 15:13:12 -04:00
|
|
|
|
2015-11-22 20:39:03 -05:00
|
|
|
stop-docker:
|
|
|
|
|
@echo Stopping docker containers
|
2015-06-14 23:53:32 -08:00
|
|
|
|
2015-11-22 20:39:03 -05:00
|
|
|
@if [ $(shell docker ps -a | grep -ci mattermost-mysql) -eq 1 ]; then \
|
|
|
|
|
echo stopping mattermost-mysql; \
|
|
|
|
|
docker stop mattermost-mysql > /dev/null; \
|
|
|
|
|
fi
|
2015-06-14 23:53:32 -08:00
|
|
|
|
2015-11-22 20:39:03 -05:00
|
|
|
@if [ $(shell docker ps -a | grep -ci mattermost-postgres) -eq 1 ]; then \
|
|
|
|
|
echo stopping mattermost-postgres; \
|
|
|
|
|
docker stop mattermost-postgres > /dev/null; \
|
|
|
|
|
fi
|
2016-04-21 22:37:01 -07:00
|
|
|
|
|
|
|
|
@if [ $(shell docker ps -a | grep -ci mattermost-openldap) -eq 1 ]; then \
|
|
|
|
|
echo stopping mattermost-openldap; \
|
|
|
|
|
docker stop mattermost-openldap > /dev/null; \
|
|
|
|
|
fi
|
2015-06-14 23:53:32 -08:00
|
|
|
|
2015-11-22 20:39:03 -05:00
|
|
|
clean-docker:
|
|
|
|
|
@echo Removing docker containers
|
2015-06-14 23:53:32 -08:00
|
|
|
|
|
|
|
|
@if [ $(shell docker ps -a | grep -ci mattermost-mysql) -eq 1 ]; then \
|
2016-04-21 22:37:01 -07:00
|
|
|
echo removing mattermost-mysql; \
|
2015-06-14 23:53:32 -08:00
|
|
|
docker stop mattermost-mysql > /dev/null; \
|
|
|
|
|
docker rm -v mattermost-mysql > /dev/null; \
|
|
|
|
|
fi
|
|
|
|
|
|
2015-11-22 20:39:03 -05:00
|
|
|
@if [ $(shell docker ps -a | grep -ci mattermost-postgres) -eq 1 ]; then \
|
2016-04-21 22:37:01 -07:00
|
|
|
echo removing mattermost-postgres; \
|
2015-11-22 20:39:03 -05:00
|
|
|
docker stop mattermost-postgres > /dev/null; \
|
|
|
|
|
docker rm -v mattermost-postgres > /dev/null; \
|
|
|
|
|
fi
|
|
|
|
|
|
2016-04-21 22:37:01 -07:00
|
|
|
@if [ $(shell docker ps -a | grep -ci mattermost-openldap) -eq 1 ]; then \
|
|
|
|
|
echo removing mattermost-openldap; \
|
|
|
|
|
docker stop mattermost-openldap > /dev/null; \
|
|
|
|
|
docker rm -v mattermost-openldap > /dev/null; \
|
|
|
|
|
fi
|
|
|
|
|
|
2016-05-13 16:17:07 -04:00
|
|
|
check-client-style:
|
|
|
|
|
@echo Checking client style
|
|
|
|
|
|
|
|
|
|
cd $(BUILD_WEBAPP_DIR) && $(MAKE) check-style
|
|
|
|
|
|
|
|
|
|
check-server-style:
|
2016-03-18 12:46:57 -04:00
|
|
|
@echo Running GOFMT
|
|
|
|
|
$(eval GOFMT_OUTPUT := $(shell gofmt -d -s api/ model/ store/ utils/ manualtesting/ einterfaces/ mattermost.go 2>&1))
|
|
|
|
|
@echo "$(GOFMT_OUTPUT)"
|
|
|
|
|
@if [ ! "$(GOFMT_OUTPUT)" ]; then \
|
|
|
|
|
echo "gofmt sucess"; \
|
|
|
|
|
else \
|
|
|
|
|
echo "gofmt failure"; \
|
|
|
|
|
exit 1; \
|
|
|
|
|
fi
|
2015-11-22 20:39:03 -05:00
|
|
|
|
2016-05-13 16:17:07 -04:00
|
|
|
check-style: check-client-style check-server-style
|
|
|
|
|
|
|
|
|
|
test-server: start-docker prepare-enterprise
|
|
|
|
|
@echo Running server tests
|
2016-04-21 22:37:01 -07:00
|
|
|
|
2016-05-20 09:40:52 -04:00
|
|
|
rm -f cover.out
|
|
|
|
|
echo "mode: count" > cover.out
|
|
|
|
|
|
2016-08-23 19:06:17 -03:00
|
|
|
$(GO) test $(GOFLAGS) -run=$(TESTS) -test.v -test.timeout=650s -covermode=count -coverprofile=capi.out ./api || exit 1
|
2016-06-03 09:33:59 -04:00
|
|
|
$(GO) test $(GOFLAGS) -run=$(TESTS) -test.v -test.timeout=60s -covermode=count -coverprofile=cmodel.out ./model || exit 1
|
2016-05-20 09:40:52 -04:00
|
|
|
$(GO) test $(GOFLAGS) -run=$(TESTS) -test.v -test.timeout=180s -covermode=count -coverprofile=cstore.out ./store || exit 1
|
|
|
|
|
$(GO) test $(GOFLAGS) -run=$(TESTS) -test.v -test.timeout=120s -covermode=count -coverprofile=cutils.out ./utils || exit 1
|
|
|
|
|
$(GO) test $(GOFLAGS) -run=$(TESTS) -test.v -test.timeout=120s -covermode=count -coverprofile=cweb.out ./web || exit 1
|
|
|
|
|
|
|
|
|
|
tail -n +2 capi.out >> cover.out
|
|
|
|
|
tail -n +2 cmodel.out >> cover.out
|
|
|
|
|
tail -n +2 cstore.out >> cover.out
|
|
|
|
|
tail -n +2 cutils.out >> cover.out
|
|
|
|
|
tail -n +2 cweb.out >> cover.out
|
|
|
|
|
rm -f capi.out cmodel.out cstore.out cutils.out cweb.out
|
|
|
|
|
|
2016-04-21 22:37:01 -07:00
|
|
|
ifeq ($(BUILD_ENTERPRISE_READY),true)
|
|
|
|
|
@echo Running Enterprise tests
|
2016-05-20 09:40:52 -04:00
|
|
|
|
|
|
|
|
rm -f ecover.out
|
|
|
|
|
echo "mode: count" > ecover.out
|
|
|
|
|
|
|
|
|
|
$(GO) test $(GOFLAGS) -run=$(TESTS) -covermode=count -c ./enterprise/ldap && ./ldap.test -test.v -test.timeout=120s -test.coverprofile=cldap.out || exit 1
|
|
|
|
|
$(GO) test $(GOFLAGS) -run=$(TESTS) -covermode=count -c ./enterprise/compliance && ./compliance.test -test.v -test.timeout=120s -test.coverprofile=ccompliance.out || exit 1
|
2016-07-05 11:58:18 -04:00
|
|
|
$(GO) test $(GOFLAGS) -run=$(TESTS) -covermode=count -c ./enterprise/emoji && ./emoji.test -test.v -test.timeout=120s -test.coverprofile=cemoji.out || exit 1
|
2016-07-13 07:38:58 -04:00
|
|
|
$(GO) test $(GOFLAGS) -run=$(TESTS) -covermode=count -c ./enterprise/saml && ./saml.test -test.v -test.timeout=60s -test.coverprofile=csaml.out || exit 1
|
2016-08-04 09:25:37 -08:00
|
|
|
$(GO) test $(GOFLAGS) -run=$(TESTS) -covermode=count -c ./enterprise/cluster && ./cluster.test -test.v -test.timeout=60s -test.coverprofile=ccluster.out || exit 1
|
2016-07-26 17:39:51 -04:00
|
|
|
$(GO) test $(GOFLAGS) -run=$(TESTS) -covermode=count -c ./enterprise/account_migration && ./account_migration.test -test.v -test.timeout=60s -test.coverprofile=caccount_migration.out || exit 1
|
2016-05-20 09:40:52 -04:00
|
|
|
|
|
|
|
|
tail -n +2 cldap.out >> ecover.out
|
|
|
|
|
tail -n +2 ccompliance.out >> ecover.out
|
2016-07-05 11:58:18 -04:00
|
|
|
tail -n +2 cemoji.out >> ecover.out
|
2016-07-13 07:38:58 -04:00
|
|
|
tail -n +2 csaml.out >> ecover.out
|
2016-08-04 09:25:37 -08:00
|
|
|
tail -n +2 ccluster.out >> ecover.out
|
2016-07-26 17:39:51 -04:00
|
|
|
tail -n +2 caccount_migration.out >> ecover.out
|
2016-08-04 09:25:37 -08:00
|
|
|
rm -f cldap.out ccompliance.out cemoji.out csaml.out ccluster.out caccount_migration.out
|
|
|
|
|
|
2016-05-12 23:56:07 -04:00
|
|
|
rm -r ldap.test
|
|
|
|
|
rm -r compliance.test
|
2016-07-05 11:58:18 -04:00
|
|
|
rm -r emoji.test
|
2016-07-13 07:38:58 -04:00
|
|
|
rm -r saml.test
|
2016-08-04 09:25:37 -08:00
|
|
|
rm -r cluster.test
|
2016-07-26 17:39:51 -04:00
|
|
|
rm -r account_migration.test
|
2016-07-13 07:38:58 -04:00
|
|
|
rm -f config/*.crt
|
|
|
|
|
rm -f config/*.key
|
2016-04-21 22:37:01 -07:00
|
|
|
endif
|
|
|
|
|
|
2016-05-26 07:58:24 -04:00
|
|
|
internal-test-web-client: start-docker prepare-enterprise
|
|
|
|
|
$(GO) run $(GOFLAGS) *.go -run_web_client_tests
|
|
|
|
|
|
|
|
|
|
internal-test-javascript-client: start-docker prepare-enterprise
|
|
|
|
|
$(GO) run $(GOFLAGS) *.go -run_javascript_client_tests
|
2016-04-21 22:37:01 -07:00
|
|
|
|
2016-05-13 16:17:07 -04:00
|
|
|
test-client: start-docker prepare-enterprise
|
|
|
|
|
@echo Running client tests
|
2016-04-21 22:37:01 -07:00
|
|
|
|
|
|
|
|
cd $(BUILD_WEBAPP_DIR) && $(MAKE) test
|
|
|
|
|
|
2016-05-13 16:17:07 -04:00
|
|
|
test: test-server test-client
|
2015-06-14 23:53:32 -08:00
|
|
|
|
2016-05-20 09:40:52 -04:00
|
|
|
cover:
|
|
|
|
|
@echo Opening coverage info in browser. If this failed run make test first
|
|
|
|
|
|
|
|
|
|
$(GO) tool cover -html=cover.out
|
|
|
|
|
$(GO) tool cover -html=ecover.out
|
|
|
|
|
|
2016-03-18 12:46:57 -04:00
|
|
|
.prebuild:
|
|
|
|
|
@echo Preparation for running go code
|
2016-05-12 23:56:07 -04:00
|
|
|
go get $(GOFLAGS) github.com/Masterminds/glide
|
2015-06-14 23:53:32 -08:00
|
|
|
|
2016-03-18 12:46:57 -04:00
|
|
|
touch $@
|
2015-09-14 15:30:51 +03:00
|
|
|
|
2016-03-18 12:46:57 -04:00
|
|
|
prepare-enterprise:
|
|
|
|
|
ifeq ($(BUILD_ENTERPRISE_READY),true)
|
2016-04-21 22:37:01 -07:00
|
|
|
@echo Enterprise build selected, preparing
|
2016-03-18 12:46:57 -04:00
|
|
|
cp $(BUILD_ENTERPRISE_DIR)/imports.go .
|
2016-05-12 23:56:07 -04:00
|
|
|
rm -f enterprise
|
|
|
|
|
ln -s $(BUILD_ENTERPRISE_DIR) enterprise
|
2016-03-18 12:46:57 -04:00
|
|
|
endif
|
2015-11-22 20:39:03 -05:00
|
|
|
|
2016-04-06 09:33:33 -04:00
|
|
|
build-linux: .prebuild prepare-enterprise
|
|
|
|
|
@echo Build Linux amd64
|
2016-05-13 00:28:27 -04:00
|
|
|
env GOOS=linux GOARCH=amd64 $(GO) install $(GOFLAGS) $(GO_LINKER_FLAGS) $(go list ./... | grep -v /vendor/)
|
2015-11-22 20:39:03 -05:00
|
|
|
|
2016-04-06 09:33:33 -04:00
|
|
|
build-osx: .prebuild prepare-enterprise
|
|
|
|
|
@echo Build OSX amd64
|
2016-05-13 00:28:27 -04:00
|
|
|
env GOOS=darwin GOARCH=amd64 $(GO) install $(GOFLAGS) $(GO_LINKER_FLAGS) $(go list ./... | grep -v /vendor/)
|
2016-04-06 09:33:33 -04:00
|
|
|
|
|
|
|
|
build-windows: .prebuild prepare-enterprise
|
|
|
|
|
@echo Build Windows amd64
|
2016-05-13 00:28:27 -04:00
|
|
|
env GOOS=windows GOARCH=amd64 $(GO) install $(GOFLAGS) $(GO_LINKER_FLAGS) $(go list ./... | grep -v /vendor/)
|
2016-04-06 09:33:33 -04:00
|
|
|
|
|
|
|
|
build: build-linux build-windows build-osx
|
2015-11-22 20:39:03 -05:00
|
|
|
|
2016-03-18 12:46:57 -04:00
|
|
|
build-client:
|
|
|
|
|
@echo Building mattermost web app
|
2015-11-30 09:56:53 -05:00
|
|
|
|
2016-03-24 22:34:35 +09:00
|
|
|
cd $(BUILD_WEBAPP_DIR) && $(MAKE) build
|
2016-02-17 10:14:29 -05:00
|
|
|
|
|
|
|
|
|
2016-03-18 12:46:57 -04:00
|
|
|
package: build build-client
|
|
|
|
|
@ echo Packaging mattermost
|
2016-03-16 23:00:33 -04:00
|
|
|
|
2016-04-06 09:33:33 -04:00
|
|
|
@# Remove any old files
|
2016-03-18 12:46:57 -04:00
|
|
|
rm -Rf $(DIST_ROOT)
|
2015-06-14 23:53:32 -08:00
|
|
|
|
2016-04-06 09:33:33 -04:00
|
|
|
@# Create needed directories
|
2016-03-18 12:46:57 -04:00
|
|
|
mkdir -p $(DIST_PATH)/bin
|
|
|
|
|
mkdir -p $(DIST_PATH)/logs
|
2015-12-08 13:38:43 -05:00
|
|
|
|
2016-04-06 09:33:33 -04:00
|
|
|
@# Resource directories
|
2016-03-18 12:46:57 -04:00
|
|
|
cp -RL config $(DIST_PATH)
|
|
|
|
|
cp -RL fonts $(DIST_PATH)
|
|
|
|
|
cp -RL templates $(DIST_PATH)
|
|
|
|
|
cp -RL i18n $(DIST_PATH)
|
|
|
|
|
|
2016-04-06 09:33:33 -04:00
|
|
|
@# Package webapp
|
2016-03-18 12:46:57 -04:00
|
|
|
mkdir -p $(DIST_PATH)/webapp/dist
|
|
|
|
|
cp -RL $(BUILD_WEBAPP_DIR)/dist $(DIST_PATH)/webapp
|
|
|
|
|
|
2016-04-06 09:33:33 -04:00
|
|
|
@# Help files
|
2016-03-18 12:46:57 -04:00
|
|
|
ifeq ($(BUILD_ENTERPRISE_READY),true)
|
|
|
|
|
cp $(BUILD_ENTERPRISE_DIR)/ENTERPRISE-EDITION-LICENSE.txt $(DIST_PATH)
|
|
|
|
|
else
|
|
|
|
|
cp build/MIT-COMPILED-LICENSE.md $(DIST_PATH)
|
|
|
|
|
endif
|
|
|
|
|
cp NOTICE.txt $(DIST_PATH)
|
|
|
|
|
cp README.md $(DIST_PATH)
|
|
|
|
|
|
2016-04-06 09:33:33 -04:00
|
|
|
@# ----- PLATFORM SPECIFIC -----
|
|
|
|
|
|
|
|
|
|
@# Make osx package
|
|
|
|
|
@# Copy binary
|
|
|
|
|
cp $(GOPATH)/bin/darwin_amd64/platform $(DIST_PATH)/bin
|
|
|
|
|
@# Package
|
|
|
|
|
tar -C dist -czf $(DIST_PATH)-$(BUILD_TYPE_NAME)-osx-amd64.tar.gz mattermost
|
|
|
|
|
@# Cleanup
|
|
|
|
|
rm -f $(DIST_PATH)/bin/platform
|
|
|
|
|
|
|
|
|
|
@# Make windows package
|
|
|
|
|
@# Copy binary
|
|
|
|
|
cp $(GOPATH)/bin/windows_amd64/platform.exe $(DIST_PATH)/bin
|
|
|
|
|
@# Package
|
|
|
|
|
tar -C dist -czf $(DIST_PATH)-$(BUILD_TYPE_NAME)-windows-amd64.tar.gz mattermost
|
|
|
|
|
@# Cleanup
|
|
|
|
|
rm -f $(DIST_PATH)/bin/platform.exe
|
|
|
|
|
|
|
|
|
|
@# Make linux package
|
|
|
|
|
@# Copy binary
|
|
|
|
|
cp $(GOPATH)/bin/platform $(DIST_PATH)/bin
|
|
|
|
|
@# Package
|
|
|
|
|
tar -C dist -czf $(DIST_PATH)-$(BUILD_TYPE_NAME)-linux-amd64.tar.gz mattermost
|
|
|
|
|
@# Don't cleanup linux package so dev machines will have an unziped linux package avalilable
|
|
|
|
|
@#rm -f $(DIST_PATH)/bin/platform
|
|
|
|
|
|
2016-03-18 12:46:57 -04:00
|
|
|
|
2016-03-22 11:35:39 -04:00
|
|
|
run-server: prepare-enterprise start-docker
|
2016-03-18 12:46:57 -04:00
|
|
|
@echo Running mattermost for development
|
|
|
|
|
|
|
|
|
|
mkdir -p $(BUILD_WEBAPP_DIR)/dist/files
|
|
|
|
|
$(GO) run $(GOFLAGS) $(GO_LINKER_FLAGS) *.go &
|
|
|
|
|
|
2016-07-06 10:11:21 -08:00
|
|
|
run-cli: prepare-enterprise start-docker
|
|
|
|
|
@echo Running mattermost for development
|
|
|
|
|
@echo Example should be like >'make ARGS="-version" run-cli'
|
|
|
|
|
|
|
|
|
|
$(GO) run $(GOFLAGS) $(GO_LINKER_FLAGS) *.go ${ARGS}
|
|
|
|
|
|
2016-03-18 12:46:57 -04:00
|
|
|
run-client:
|
|
|
|
|
@echo Running mattermost client for development
|
|
|
|
|
|
2016-03-24 22:34:35 +09:00
|
|
|
cd $(BUILD_WEBAPP_DIR) && $(MAKE) run
|
2016-03-18 12:46:57 -04:00
|
|
|
|
2016-03-29 18:32:15 -04:00
|
|
|
run-client-fullmap:
|
|
|
|
|
@echo Running mattermost client for development with FULL SOURCE MAP
|
|
|
|
|
|
|
|
|
|
cd $(BUILD_WEBAPP_DIR) && $(MAKE) run-fullmap
|
|
|
|
|
|
2016-03-18 12:46:57 -04:00
|
|
|
run: run-server run-client
|
2016-02-17 10:14:29 -05:00
|
|
|
|
2016-03-29 18:32:15 -04:00
|
|
|
run-fullmap: run-server run-client-fullmap
|
|
|
|
|
|
2016-02-17 10:14:29 -05:00
|
|
|
stop-server:
|
2016-03-18 12:46:57 -04:00
|
|
|
@echo Stopping mattermost
|
|
|
|
|
|
|
|
|
|
@for PID in $$(ps -ef | grep "[g]o run" | awk '{ print $$2 }'); do \
|
2016-02-17 10:14:29 -05:00
|
|
|
echo stopping go $$PID; \
|
2015-06-14 23:53:32 -08:00
|
|
|
kill $$PID; \
|
|
|
|
|
done
|
|
|
|
|
|
2016-03-18 12:46:57 -04:00
|
|
|
@for PID in $$(ps -ef | grep "[g]o-build" | awk '{ print $$2 }'); do \
|
2016-02-17 10:14:29 -05:00
|
|
|
echo stopping mattermost $$PID; \
|
|
|
|
|
kill $$PID; \
|
|
|
|
|
done
|
2015-07-27 09:48:35 -04:00
|
|
|
|
2016-03-18 08:48:26 -04:00
|
|
|
stop-client:
|
2016-03-18 12:46:57 -04:00
|
|
|
@echo Stopping mattermost client
|
2016-03-18 08:48:26 -04:00
|
|
|
|
2016-03-24 22:34:35 +09:00
|
|
|
cd $(BUILD_WEBAPP_DIR) && $(MAKE) stop
|
2015-12-08 13:38:43 -05:00
|
|
|
|
2015-06-14 23:53:32 -08:00
|
|
|
|
2016-03-18 12:46:57 -04:00
|
|
|
stop: stop-server stop-client
|
|
|
|
|
|
2016-07-05 11:10:28 -04:00
|
|
|
restart: restart-server restart-client
|
|
|
|
|
|
2016-03-18 12:46:57 -04:00
|
|
|
restart-server: | stop-server run-server
|
|
|
|
|
|
|
|
|
|
restart-client: | stop-client run-client
|
|
|
|
|
|
|
|
|
|
clean: stop-docker
|
|
|
|
|
@echo Cleaning
|
|
|
|
|
|
|
|
|
|
rm -Rf $(DIST_ROOT)
|
|
|
|
|
go clean $(GOFLAGS) -i ./...
|
|
|
|
|
|
2016-03-24 22:34:35 +09:00
|
|
|
cd $(BUILD_WEBAPP_DIR) && $(MAKE) clean
|
2015-07-27 09:48:35 -04:00
|
|
|
|
2016-03-18 12:46:57 -04:00
|
|
|
rm -rf api/data
|
|
|
|
|
rm -rf logs
|
|
|
|
|
|
|
|
|
|
rm -f mattermost.log
|
2016-05-13 16:17:07 -04:00
|
|
|
rm -f npm-debug.log
|
|
|
|
|
rm -f api/mattermost.log
|
2016-03-18 12:46:57 -04:00
|
|
|
rm -f .prepare-go
|
2016-05-12 23:56:07 -04:00
|
|
|
rm -f enterprise
|
2016-05-20 09:40:52 -04:00
|
|
|
rm -f cover.out
|
|
|
|
|
rm -f ecover.out
|
|
|
|
|
rm -f *.out
|
|
|
|
|
rm -f *.test
|
2016-03-18 12:46:57 -04:00
|
|
|
|
|
|
|
|
nuke: clean clean-docker
|
|
|
|
|
@echo BOOM
|
2015-07-27 09:48:35 -04:00
|
|
|
|
2016-03-18 12:46:57 -04:00
|
|
|
rm -rf data
|
2015-07-27 09:48:35 -04:00
|
|
|
|
2016-03-18 12:46:57 -04:00
|
|
|
setup-mac:
|
|
|
|
|
echo $$(boot2docker ip 2> /dev/null) dockerhost | sudo tee -a /etc/hosts
|