elvish/Makefile

52 lines
1.6 KiB
Makefile
Raw Normal View History

2017-06-12 06:16:34 +08:00
PKG_BASE := github.com/elves/elvish
PKGS := $(shell go list ./... | sed 's|^$(PKG_BASE)|.|' | grep -v '^./vendor')
PKG_COVERS := $(shell go list ./... | sed 's|^$(PKG_BASE)|.|' | grep -v '^\./vendor' | grep -v '^\.$$' | sed 's/^\./cover/' | sed 's/$$/.cover/')
COVER_MODE := set
VERSION := $(shell git describe --tags --always)
2013-09-18 16:58:51 +08:00
FIRST_GOPATH=$(shell go env GOPATH | cut -d: -f1)
2016-02-22 02:34:40 +08:00
default: test get
2015-02-27 09:29:40 +08:00
get:
go get -ldflags "-X github.com/elves/elvish/build.Version=$(VERSION) -X github.com/elves/elvish/build.Builder=$(shell id -un)@$(shell hostname)" .
2013-09-18 16:58:51 +08:00
generate:
go generate ./...
2016-10-26 17:36:26 +08:00
test:
go test $(PKGS)
testmain:
go test .
2017-02-12 11:15:37 +08:00
cover/%.cover: %
mkdir -p $(dir $@)
go test -coverprofile=$@ -covermode=$(COVER_MODE) ./$<
cover/all: $(PKG_COVERS)
echo mode: $(COVER_MODE) > $@
for f in $(PKG_COVERS); do test -f $$f && sed 1d $$f >> $@ || true; done
2017-12-16 21:47:07 +08:00
# Disable coverage reports for pull requests. The general testability of the
# code is pretty bad and it is premature to require contributors to maintain
# code coverage.
2017-12-16 12:30:33 +08:00
codecov: cover/all
test "$(TRAVIS_PULL_REQUEST)" = false \
2017-12-16 12:36:04 +08:00
&& curl -s https://codecov.io/bash -o codecov.bash \
&& bash codecov.bash -f cover/all \
2017-12-16 12:30:33 +08:00
|| echo "not sending to codecov.io"
upload:
test "$(TRAVIS_OS_NAME)" = linux \
&& echo "$(TRAVIS_GO_VERSION)" | grep -q '^1.9' \
&& test "$(TRAVIS_PULL_REQUEST)" = false \
2016-10-13 16:32:00 +08:00
&& test -n "$(TRAVIS_TAG)" -o "$(TRAVIS_BRANCH)" = master \
&& go build -o ./elvish \
&& ./elvish build-and-upload.elv \
|| echo "not build-and-uploading"
2017-12-16 21:47:07 +08:00
travis: codecov testmain upload
2016-02-10 06:10:26 +08:00
2016-10-26 17:36:26 +08:00
.PHONY: default get generate test goveralls upload travis