mirror of
https://github.com/go-sylixos/elvish.git
synced 2024-12-05 03:17:50 +08:00
29 lines
624 B
Makefile
29 lines
624 B
Makefile
PKGS := $(filter-out main,$(shell go list -f '{{.Name}}' ./...))
|
|
PKG_COVERS := $(addprefix cover/,$(PKGS))
|
|
|
|
all: get test
|
|
|
|
get:
|
|
go get .
|
|
cc ./elvish-stub/main.c -o $(GOPATH)/bin/elvish-stub
|
|
|
|
test:
|
|
go test ./...
|
|
./elvish-stub/test.sh
|
|
|
|
cover/%: %
|
|
mkdir -p cover
|
|
go test -coverprofile=$@ ./$<
|
|
|
|
cover: $(PKG_COVERS)
|
|
|
|
generate:
|
|
go generate ./...
|
|
|
|
# The target to run on Travis-CI.
|
|
travis: get test
|
|
tar cfJ elvish.tar.xz -C $(GOPATH)/bin elvish elvish-stub
|
|
curl http://dl.elvish.io:6060/ -F name=elvish-$(TRAVIS_OS_NAME).tar.xz -F token=$$UPLOAD_TOKEN -F file=@./elvish.tar.xz
|
|
|
|
.PHONY: all get test cover generate travis
|