2017-05-06 02:21:12 +03:00
|
|
|
# Copyright 2017 Google Inc.
|
2019-04-25 21:03:33 +03:00
|
|
|
#
|
2017-05-06 02:21:12 +03:00
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
2019-04-25 21:03:33 +03:00
|
|
|
#
|
2017-05-06 02:21:12 +03:00
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
2019-04-25 21:03:33 +03:00
|
|
|
#
|
2017-05-06 02:21:12 +03:00
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
2012-11-01 02:29:41 +04:00
|
|
|
|
|
|
|
MAKEFLAGS = -s
|
|
|
|
|
2015-05-07 00:43:41 +03:00
|
|
|
# Disabled parallel processing of target prerequisites to avoid that integration tests are racing each other (e.g. for ports) and may fail.
|
|
|
|
# Since we are not using this Makefile for compilation, limiting parallelism will not increase build time.
|
|
|
|
.NOTPARALLEL:
|
|
|
|
|
2017-12-06 06:37:09 +03:00
|
|
|
.PHONY: all build build_web test clean unit_test unit_test_cover unit_test_race integration_test proto proto_banner site_test site_integration_test docker_bootstrap docker_test docker_unit_test java_test reshard_tests
|
2014-05-17 01:45:16 +04:00
|
|
|
|
2017-09-19 06:39:42 +03:00
|
|
|
all: build
|
2012-11-01 02:29:41 +04:00
|
|
|
|
2015-07-23 10:13:29 +03:00
|
|
|
# Set a custom value for -p, the number of packages to be built/tested in parallel.
|
|
|
|
# This is currently only used by our Travis CI test configuration.
|
|
|
|
# (Also keep in mind that this value is independent of GOMAXPROCS.)
|
2016-08-06 05:27:48 +03:00
|
|
|
ifdef VT_GO_PARALLEL_VALUE
|
|
|
|
export VT_GO_PARALLEL := -p $(VT_GO_PARALLEL_VALUE)
|
2015-07-23 10:13:29 +03:00
|
|
|
endif
|
2016-08-06 05:27:48 +03:00
|
|
|
|
2015-07-23 10:07:47 +03:00
|
|
|
# Link against the MySQL library in $VT_MYSQL_ROOT if it's specified.
|
|
|
|
ifdef VT_MYSQL_ROOT
|
|
|
|
# Clutter the env var only if it's a non-standard path.
|
|
|
|
ifneq ($(VT_MYSQL_ROOT),/usr)
|
|
|
|
CGO_LDFLAGS += -L$(VT_MYSQL_ROOT)/lib
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2016-08-16 21:26:41 +03:00
|
|
|
build_web:
|
|
|
|
echo $$(date): Building web artifacts
|
2016-08-23 01:24:47 +03:00
|
|
|
cd web/vtctld2 && ng build -prod
|
2016-12-17 07:01:37 +03:00
|
|
|
cp -f web/vtctld2/src/{favicon.ico,plotly-latest.min.js,primeui-ng-all.min.css} web/vtctld2/dist/
|
2016-08-16 21:26:41 +03:00
|
|
|
|
2016-07-26 04:14:55 +03:00
|
|
|
build:
|
2015-10-18 04:01:32 +03:00
|
|
|
ifndef NOBANNER
|
2015-08-21 19:51:08 +03:00
|
|
|
echo $$(date): Building source tree
|
2015-10-18 04:01:32 +03:00
|
|
|
endif
|
2018-10-20 03:07:31 +03:00
|
|
|
go install $(VT_GO_PARALLEL) -ldflags "$(shell tools/build_version_flags.sh)" ./go/...
|
2013-12-25 02:28:19 +04:00
|
|
|
|
2017-03-31 20:53:29 +03:00
|
|
|
parser:
|
2017-03-31 21:11:25 +03:00
|
|
|
make -C go/vt/sqlparser
|
2017-03-31 20:53:29 +03:00
|
|
|
|
2015-08-24 23:44:52 +03:00
|
|
|
# To pass extra flags, run test.go manually.
|
|
|
|
# For example: go run test.go -docker=false -- --extra-flag
|
|
|
|
# For more info see: go run test.go -help
|
2015-08-24 05:51:42 +03:00
|
|
|
test:
|
|
|
|
go run test.go -docker=false
|
|
|
|
|
2014-09-11 01:56:25 +04:00
|
|
|
site_test: unit_test site_integration_test
|
2014-05-17 01:45:16 +04:00
|
|
|
|
2013-12-25 02:28:19 +04:00
|
|
|
clean:
|
|
|
|
go clean -i ./go/...
|
2015-07-29 00:10:59 +03:00
|
|
|
rm -rf third_party/acolyte
|
2016-06-28 22:17:36 +03:00
|
|
|
rm -rf go/vt/.proto.tmp
|
2012-11-01 02:29:41 +04:00
|
|
|
|
2015-07-31 23:40:44 +03:00
|
|
|
# This will remove object files for all Go projects in the same GOPATH.
|
|
|
|
# This is necessary, for example, to make sure dependencies are rebuilt
|
|
|
|
# when switching between different versions of Go.
|
|
|
|
clean_pkg:
|
|
|
|
rm -rf ../../../../pkg Godeps/_workspace/pkg
|
|
|
|
|
2017-11-24 10:02:04 +03:00
|
|
|
# Remove everything including stuff pulled down by bootstrap.sh
|
|
|
|
cleanall:
|
|
|
|
# symlinks
|
|
|
|
for f in config data py-vtdb; do test -L ../../../../$$f && rm ../../../../$$f; done
|
|
|
|
# directories created by bootstrap.sh
|
|
|
|
# - exclude vtdataroot and vthook as they may have data we want
|
|
|
|
rm -rf ../../../../bin ../../../../dist ../../../../lib ../../../../pkg
|
|
|
|
# keep the vendor.json file but nothing else under the vendor directory as it's not actually part of the Vitess repo
|
|
|
|
rm -rf vendor/cloud.google.com vendor/github.com vendor/golang.org vendor/google.golang.org vendor/gopkg.in
|
|
|
|
# other stuff in the go hierarchy that is not under vendor/
|
|
|
|
rm -rf ../../../golang.org ../../../honnef.co
|
|
|
|
rm -rf ../../../github.com/golang ../../../github.com/kardianos ../../../github.com/kisielk
|
|
|
|
# Remind people to run bootstrap.sh again
|
2017-11-24 10:09:01 +03:00
|
|
|
echo "Please run bootstrap.sh again to setup your environment"
|
2017-11-24 10:02:04 +03:00
|
|
|
|
2015-09-22 19:40:39 +03:00
|
|
|
unit_test: build
|
|
|
|
echo $$(date): Running unit tests
|
2016-04-07 00:52:31 +03:00
|
|
|
go test $(VT_GO_PARALLEL) ./go/...
|
2012-11-01 02:29:41 +04:00
|
|
|
|
2014-05-01 00:43:22 +04:00
|
|
|
# Run the code coverage tools, compute aggregate.
|
|
|
|
# If you want to improve in a directory, run:
|
|
|
|
# go test -coverprofile=coverage.out && go tool cover -html=coverage.out
|
2015-09-22 19:40:39 +03:00
|
|
|
unit_test_cover: build
|
2016-04-07 00:52:31 +03:00
|
|
|
go test $(VT_GO_PARALLEL) -cover ./go/... | misc/parse_cover.py
|
2014-05-01 00:13:59 +04:00
|
|
|
|
2015-09-22 19:40:39 +03:00
|
|
|
unit_test_race: build
|
2015-11-23 04:35:22 +03:00
|
|
|
tools/unit_test_race.sh
|
2013-10-29 15:40:01 +04:00
|
|
|
|
2014-04-14 05:38:00 +04:00
|
|
|
.ONESHELL:
|
|
|
|
SHELL = /bin/bash
|
2014-10-01 05:59:51 +04:00
|
|
|
|
2015-08-24 05:51:42 +03:00
|
|
|
# Run the following tests after making worker changes.
|
|
|
|
worker_test:
|
2016-04-07 00:52:31 +03:00
|
|
|
go test ./go/vt/worker/
|
2015-10-29 23:27:23 +03:00
|
|
|
go run test.go -docker=false -tag=worker_test
|
2015-01-13 07:08:44 +03:00
|
|
|
|
2015-08-24 05:51:42 +03:00
|
|
|
site_integration_test:
|
2015-10-29 23:27:23 +03:00
|
|
|
go run test.go -docker=false -tag=site_test
|
2014-09-11 01:56:25 +04:00
|
|
|
|
2015-08-23 05:21:26 +03:00
|
|
|
java_test:
|
2016-05-27 06:36:52 +03:00
|
|
|
go install ./go/cmd/vtgateclienttest ./go/cmd/vtcombo
|
2015-07-29 00:10:59 +03:00
|
|
|
mvn -f java/pom.xml clean verify
|
2014-10-01 05:59:51 +04:00
|
|
|
|
2016-04-21 00:17:00 +03:00
|
|
|
# TODO(mberlin): Remove the manual copy once govendor supports a way to
|
|
|
|
# install vendor'd programs: https://github.com/kardianos/govendor/issues/117
|
2016-04-22 01:18:13 +03:00
|
|
|
install_protoc-gen-go:
|
2016-04-21 00:17:00 +03:00
|
|
|
mkdir -p $${GOPATH}/src/github.com/golang/
|
2016-07-20 08:16:30 +03:00
|
|
|
cp -a vendor/github.com/golang/protobuf $${GOPATH}/src/github.com/golang/
|
2016-04-21 00:17:00 +03:00
|
|
|
go install github.com/golang/protobuf/protoc-gen-go
|
|
|
|
|
2018-04-08 05:41:16 +03:00
|
|
|
# Find protoc compiler.
|
|
|
|
# NOTE: We are *not* using the "protoc" binary (as suggested by the grpc Go
|
|
|
|
# quickstart for example). Instead, we run "protoc" via the Python
|
|
|
|
# wrapper script which is provided by the "grpcio-tools" PyPi package.
|
|
|
|
# (The package includes the compiler as library, but not as binary.
|
|
|
|
# Therefore, we have to use the wrapper script they provide.)
|
|
|
|
ifneq ($(wildcard $(VTROOT)/dist/grpc/usr/local/lib/python2.7/site-packages/grpc_tools/protoc.py),)
|
|
|
|
# IMPORTANT: The next line must not be indented.
|
|
|
|
PROTOC_COMMAND := python -m grpc_tools.protoc
|
2016-06-28 22:17:36 +03:00
|
|
|
endif
|
|
|
|
|
|
|
|
PROTO_SRCS = $(wildcard proto/*.proto)
|
|
|
|
PROTO_SRC_NAMES = $(basename $(notdir $(PROTO_SRCS)))
|
|
|
|
PROTO_PY_OUTS = $(foreach name, $(PROTO_SRC_NAMES), py/vtproto/$(name)_pb2.py)
|
|
|
|
PROTO_GO_OUTS = $(foreach name, $(PROTO_SRC_NAMES), go/vt/proto/$(name)/$(name).pb.go)
|
|
|
|
|
|
|
|
# This rule rebuilds all the go and python files from the proto definitions for gRPC.
|
|
|
|
proto: proto_banner $(PROTO_GO_OUTS) $(PROTO_PY_OUTS)
|
|
|
|
|
|
|
|
proto_banner:
|
2018-04-08 05:41:16 +03:00
|
|
|
ifeq (,$(PROTOC_COMMAND))
|
|
|
|
$(error "Cannot find protoc compiler. Did bootstrap.sh succeed, and did you execute 'source dev.env'?")
|
2017-11-13 21:11:14 +03:00
|
|
|
endif
|
|
|
|
|
2016-06-28 22:17:36 +03:00
|
|
|
ifndef NOBANNER
|
|
|
|
echo $$(date): Compiling proto definitions
|
|
|
|
endif
|
|
|
|
|
|
|
|
$(PROTO_PY_OUTS): py/vtproto/%_pb2.py: proto/%.proto
|
2018-04-08 05:41:16 +03:00
|
|
|
$(PROTOC_COMMAND) -Iproto $< --python_out=py/vtproto --grpc_python_out=py/vtproto
|
2016-06-28 22:17:36 +03:00
|
|
|
|
2018-06-08 06:00:15 +03:00
|
|
|
$(PROTO_GO_OUTS): install_protoc-gen-go proto/*.proto
|
2016-06-28 22:17:36 +03:00
|
|
|
for name in $(PROTO_SRC_NAMES); do \
|
2018-06-08 06:00:15 +03:00
|
|
|
cd $(VTROOT)/src && PATH=$(VTROOT)/bin:$(PATH) $(VTROOT)/bin/protoc --go_out=plugins=grpc:. -Ivitess.io/vitess/proto vitess.io/vitess/proto/$${name}.proto; \
|
2016-06-28 22:17:36 +03:00
|
|
|
done
|
|
|
|
|
2017-04-13 03:49:34 +03:00
|
|
|
# Helper targets for building Docker images.
|
|
|
|
# Please read docker/README.md to understand the different available images.
|
|
|
|
|
2015-06-27 03:12:04 +03:00
|
|
|
# This rule builds the bootstrap images for all flavors.
|
2019-03-05 21:29:23 +03:00
|
|
|
DOCKER_IMAGES_FOR_TEST = mariadb mariadb103 mysql56 mysql57 mysql80 percona percona57 percona80
|
2016-05-26 09:01:51 +03:00
|
|
|
DOCKER_IMAGES = common $(DOCKER_IMAGES_FOR_TEST)
|
2015-04-21 01:09:26 +03:00
|
|
|
docker_bootstrap:
|
2016-11-02 03:45:50 +03:00
|
|
|
for i in $(DOCKER_IMAGES); do echo "building bootstrap image: $$i"; docker/bootstrap/build.sh $$i || exit 1; done
|
2016-05-26 09:01:51 +03:00
|
|
|
|
|
|
|
docker_bootstrap_test:
|
2018-04-11 03:11:27 +03:00
|
|
|
flavors='$(DOCKER_IMAGES_FOR_TEST)' && ./test.go -pull=false -parallel=2 -flavor=$${flavors// /,}
|
2016-05-26 09:01:51 +03:00
|
|
|
|
|
|
|
docker_bootstrap_push:
|
2016-11-02 03:45:50 +03:00
|
|
|
for i in $(DOCKER_IMAGES); do echo "pushing boostrap image: $$i"; docker push vitess/bootstrap:$$i || exit 1; done
|
|
|
|
|
|
|
|
# Use this target to update the local copy of your images with the one on Dockerhub.
|
|
|
|
docker_bootstrap_pull:
|
|
|
|
for i in $(DOCKER_IMAGES); do echo "pulling bootstrap image: $$i"; docker pull vitess/bootstrap:$$i || exit 1; done
|
2015-04-21 02:03:01 +03:00
|
|
|
|
2015-08-26 00:12:57 +03:00
|
|
|
docker_base:
|
|
|
|
# Fix permissions before copying files, to avoid AUFS bug.
|
|
|
|
chmod -R o=g *
|
2017-04-13 03:49:34 +03:00
|
|
|
docker build -f docker/base/Dockerfile -t vitess/base .
|
2015-08-26 00:12:57 +03:00
|
|
|
|
2016-05-19 22:50:28 +03:00
|
|
|
docker_base_mysql56:
|
|
|
|
chmod -R o=g *
|
2017-04-13 03:49:34 +03:00
|
|
|
docker build -f docker/base/Dockerfile.mysql56 -t vitess/base:mysql56 .
|
2016-05-19 22:50:28 +03:00
|
|
|
|
2019-03-05 21:29:23 +03:00
|
|
|
docker_base_mysql80:
|
|
|
|
chmod -R o=g *
|
2019-04-25 21:03:33 +03:00
|
|
|
docker build -f docker/base/Dockerfile.mysql80 -t vitess/base:mysql80 .
|
2019-03-05 21:29:23 +03:00
|
|
|
|
2016-11-02 03:44:18 +03:00
|
|
|
docker_base_mariadb:
|
|
|
|
chmod -R o=g *
|
2017-04-13 03:49:34 +03:00
|
|
|
docker build -f docker/base/Dockerfile.mariadb -t vitess/base:mariadb .
|
2016-11-02 03:44:18 +03:00
|
|
|
|
2019-03-05 21:29:23 +03:00
|
|
|
docker_base_mariadb103:
|
|
|
|
chmod -R o=g *
|
|
|
|
docker build -f docker/base/Dockerfile.mariadb -t vitess/base:mariadb103 .
|
|
|
|
|
2016-03-05 02:48:34 +03:00
|
|
|
docker_base_percona:
|
|
|
|
chmod -R o=g *
|
2017-04-13 03:49:34 +03:00
|
|
|
docker build -f docker/base/Dockerfile.percona -t vitess/base:percona .
|
2016-03-05 02:48:34 +03:00
|
|
|
|
2016-08-12 18:39:33 +03:00
|
|
|
docker_base_percona57:
|
|
|
|
chmod -R o=g *
|
2017-04-13 03:49:34 +03:00
|
|
|
docker build -f docker/base/Dockerfile.percona57 -t vitess/base:percona57 .
|
2016-08-12 18:39:33 +03:00
|
|
|
|
2019-03-05 21:29:23 +03:00
|
|
|
docker_base_percona80:
|
|
|
|
chmod -R o=g *
|
|
|
|
docker build -f docker/base/Dockerfile.percona57 -t vitess/base:percona80 .
|
|
|
|
|
2017-04-13 02:54:13 +03:00
|
|
|
# Run "make docker_lite PROMPT_NOTICE=false" to avoid that the script
|
|
|
|
# prompts you to press ENTER and confirm that the vitess/base image is not
|
|
|
|
# rebuild by this target as well.
|
|
|
|
docker_lite:
|
|
|
|
cd docker/lite && ./build.sh --prompt=$(PROMPT_NOTICE)
|
2015-08-26 00:12:57 +03:00
|
|
|
|
2017-04-15 00:53:02 +03:00
|
|
|
docker_lite_mysql56:
|
|
|
|
cd docker/lite && ./build.sh --prompt=$(PROMPT_NOTICE) mysql56
|
2016-05-19 22:50:28 +03:00
|
|
|
|
2019-03-05 21:29:23 +03:00
|
|
|
docker_lite_mysql57:
|
|
|
|
cd docker/lite && ./build.sh --prompt=$(PROMPT_NOTICE) mysql57
|
|
|
|
|
|
|
|
docker_lite_mysql80:
|
|
|
|
cd docker/lite && ./build.sh --prompt=$(PROMPT_NOTICE) mysql80
|
|
|
|
|
2017-04-15 00:53:02 +03:00
|
|
|
docker_lite_mariadb:
|
|
|
|
cd docker/lite && ./build.sh --prompt=$(PROMPT_NOTICE) mariadb
|
2016-03-05 02:48:34 +03:00
|
|
|
|
2019-03-05 21:29:23 +03:00
|
|
|
docker_lite_mariadb103:
|
|
|
|
cd docker/lite && ./build.sh --prompt=$(PROMPT_NOTICE) mariadb103
|
|
|
|
|
2017-04-15 00:53:02 +03:00
|
|
|
docker_lite_percona:
|
|
|
|
cd docker/lite && ./build.sh --prompt=$(PROMPT_NOTICE) percona
|
2016-03-05 02:48:34 +03:00
|
|
|
|
2017-04-15 00:53:02 +03:00
|
|
|
docker_lite_percona57:
|
|
|
|
cd docker/lite && ./build.sh --prompt=$(PROMPT_NOTICE) percona57
|
2016-08-12 18:39:33 +03:00
|
|
|
|
2019-03-05 21:29:23 +03:00
|
|
|
docker_lite_percona80:
|
|
|
|
cd docker/lite && ./build.sh --prompt=$(PROMPT_NOTICE) percona80
|
|
|
|
|
2018-10-19 22:01:43 +03:00
|
|
|
docker_lite_alpine:
|
|
|
|
cd docker/lite && ./build.sh --prompt=$(PROMPT_NOTICE) alpine
|
|
|
|
|
2015-08-26 00:12:57 +03:00
|
|
|
docker_guestbook:
|
|
|
|
cd examples/kubernetes/guestbook && ./build.sh
|
|
|
|
|
2016-04-06 02:11:53 +03:00
|
|
|
docker_publish_site:
|
|
|
|
docker build -f docker/publish-site/Dockerfile -t vitess/publish-site .
|
|
|
|
|
2015-04-21 02:03:01 +03:00
|
|
|
# This rule loads the working copy of the code into a bootstrap image,
|
|
|
|
# and then runs the tests inside Docker.
|
|
|
|
# Example: $ make docker_test flavor=mariadb
|
|
|
|
docker_test:
|
2015-06-27 03:12:04 +03:00
|
|
|
go run test.go -flavor $(flavor)
|
2015-04-22 06:12:20 +03:00
|
|
|
|
|
|
|
docker_unit_test:
|
2015-06-27 03:12:04 +03:00
|
|
|
go run test.go -flavor $(flavor) unit
|
2015-08-24 05:51:42 +03:00
|
|
|
|
2015-08-24 07:56:06 +03:00
|
|
|
# This can be used to rebalance the total average runtime of each group of
|
|
|
|
# tests in Travis. The results are saved in test/config.json, which you can
|
|
|
|
# then commit and push.
|
|
|
|
rebalance_tests:
|
2018-09-19 22:18:09 +03:00
|
|
|
go run test.go -rebalance 5
|
2018-03-09 21:56:01 +03:00
|
|
|
|
2018-03-13 22:19:58 +03:00
|
|
|
# Release a version.
|
|
|
|
# This will generate a tar.gz file into the releases folder with the current source
|
|
|
|
# as well as the vendored libs.
|
|
|
|
release: docker_base
|
|
|
|
@if [ -z "$VERSION" ]; then \
|
|
|
|
echo "Set the env var VERSION with the release version"; exit 1;\
|
|
|
|
fi
|
2018-03-09 21:56:01 +03:00
|
|
|
mkdir -p releases
|
|
|
|
docker build -f docker/Dockerfile.release -t vitess/release .
|
|
|
|
docker run -v ${PWD}/releases:/vt/releases --env VERSION=$(VERSION) vitess/release
|
|
|
|
git tag -m Version\ $(VERSION) v$(VERSION)
|
|
|
|
echo "A git tag was created, you can push it with:"
|
|
|
|
echo "git push origin v$(VERSION)"
|
|
|
|
echo "Also, don't forget the upload releases/v$(VERSION).tar.gz file to GitHub releases"
|