
Use the new tools/test-setup.sh for bootstrapping our dev/test environment Change-Id: Ic5c9d89d4a6d89f8a4b138fc9c814452fc6ff104
91 lines
1.7 KiB
Makefile
91 lines
1.7 KiB
Makefile
# golang-client Makefile
|
|
# Follows the interface defined in the Golang CTI proposed
|
|
# in https://review.openstack.org/410355
|
|
|
|
#REPO_VERSION?=$(shell git describe --tags)
|
|
|
|
GIT_HOST = git.openstack.org
|
|
|
|
PWD := $(shell pwd)
|
|
BASE_DIR := $(shell basename $(PWD))
|
|
# Keep an existing GOPATH, make a private one if it is undefined
|
|
GOPATH_DEFAULT := $(PWD)/.go
|
|
export GOPATH ?= $(GOPATH_DEFAULT)
|
|
DEST := $(GOPATH)/src/$(GIT_HOST)/openstack/$(BASE_DIR).git
|
|
|
|
# CTI targets
|
|
|
|
depend: work
|
|
cd $(DEST) && glide install
|
|
|
|
test: depend
|
|
cd $(DEST) && go test -tags=unit ./...
|
|
|
|
functional:
|
|
@echo "$@ not yet implemented"
|
|
|
|
fmt: work
|
|
cd $(DEST) && go fmt ./...
|
|
|
|
lint:
|
|
@echo "$@ not yet implemented"
|
|
|
|
cover:
|
|
@echo "$@ not yet implemented"
|
|
|
|
docs:
|
|
@echo "$@ not yet implemented"
|
|
|
|
relnotes:
|
|
@echo "Reno not yet implemented for this repo"
|
|
|
|
translation:
|
|
@echo "$@ not yet implemented"
|
|
|
|
# Do the work here
|
|
|
|
# Set up the development environment
|
|
env:
|
|
@echo "PWD: $(PWD)"
|
|
@echo "BASE_DIR: $(BASE_DIR)"
|
|
@echo "GOPATH: $(GOPATH)"
|
|
@echo "DEST: $(DEST)"
|
|
|
|
# Get our dev/test dependencies in place
|
|
bootstrap:
|
|
tools/test-setup.sh
|
|
|
|
work: $(GOPATH) $(DEST)
|
|
|
|
$(GOPATH):
|
|
mkdir -p $(GOPATH)
|
|
|
|
$(DEST): $(GOPATH)
|
|
mkdir -p $(shell dirname $(DEST))
|
|
ln -s $(PWD) $(DEST)
|
|
|
|
.bindep:
|
|
virtualenv .bindep
|
|
.bindep/bin/pip install bindep
|
|
|
|
bindep: .bindep
|
|
@.bindep/bin/bindep -b -f bindep.txt || true
|
|
|
|
install-distro-packages:
|
|
tools/install-distro-packages.sh
|
|
|
|
clean:
|
|
rm -rf .bindep
|
|
|
|
realclean: clean
|
|
rm -rf vendor
|
|
if [ "$(GOPATH)" = "$(GOPATH_DEFAULT)" ]; then \
|
|
rm -rf $(GOPATH); \
|
|
fi
|
|
|
|
shell: work
|
|
cd $(DEST) && $(SHELL) -i
|
|
|
|
.PHONY: bindep clean cover depend docs fmt functional lint realclean \
|
|
relnotes test translation
|