graphql-engine/cli/Makefile

69 lines
1.5 KiB
Makefile
Raw Normal View History

PWD := $(shell pwd)
PARENT_DIR := $(shell dirname $(PWD))
VERSION := $(shell build/get-version.sh)
OUTPUT_DIR := _output
# compile assets
2018-06-29 16:09:21 +03:00
.PHONY: assets
assets:
go-bindata --pkg assets -o assets/assets.go assets/console.html
2018-06-29 16:09:21 +03:00
HAS_GOX := $(shell command -v gox;)
HAS_DEP := $(shell command -v dep;)
HAS_BINDATA := $(shell command -v go-bindata;)
.PHONY: deps
# get dependencies
deps:
2018-06-29 16:09:21 +03:00
ifndef HAS_DEP
go get -u github.com/golang/dep/cmd/dep
endif
ifndef HAS_GOX
go get github.com/mitchellh/gox
2018-06-29 16:09:21 +03:00
endif
ifndef HAS_BINDATA
go get github.com/hasura/go-bindata/go-bindata
2018-06-29 16:09:21 +03:00
endif
if [ ! -d "vendor" ]; then dep ensure -v -vendor-only; fi
# build cli locally, for all given platform/arch
2018-06-29 16:09:21 +03:00
.PHONY: build
build:
2018-06-29 16:09:21 +03:00
gox -ldflags "-X github.com/hasura/graphql-engine/cli.version=$(VERSION)" -ldflags "-s -w" \
-os="linux darwin windows" \
-arch="amd64" \
-output="$(OUTPUT_DIR)/$(VERSION)/hasura-{{.OS}}-{{.Arch}}" \
./cmd/hasura/
2018-06-29 16:09:21 +03:00
# compress
.PHONY: compress
compress:
ls $(OUTPUT_DIR)/$(VERSION)/hasura-* | xargs upx
# run tests
2018-06-29 16:09:21 +03:00
.PHONY: test
test:
go test ./...
# generate docs
2018-06-29 16:09:21 +03:00
.PHONY: docs
docs:
rm -fr docs
go run cmd/hasura/hasura.go docs --type md --directory docs
# clean the output directory
2018-06-29 16:09:21 +03:00
.PHONY: clean
clean:
rm -rf "$(OUTPUT_DIR)"
2018-06-29 16:09:21 +03:00
.PHONY: all
all: deps assets test build
# build cli inside a docker container
all-in-docker:
docker build -t hasura-graphql-cli-builder -f build/builder.dockerfile build
docker run --rm -it \
-v $(PARENT_DIR):/go/src/github.com/hasura/graphql-engine \
hasura-graphql-cli-builder \
make all