aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorMáximo Cuadros <mcuadros@gmail.com>2016-01-27 12:19:34 +0100
committerMáximo Cuadros <mcuadros@gmail.com>2016-01-27 12:19:34 +0100
commit5e0030a4375550360d1ab703741a4477e99e8534 (patch)
tree79296fb61621e4c4cb20eace7fafe2077e0c8710 /Makefile
parent35ee4d749be21691b78a7465361ad47179fe2eff (diff)
downloadgo-git-5e0030a4375550360d1ab703741a4477e99e8534.tar.gz
ci
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile33
1 files changed, 33 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..272425f
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,33 @@
+# General
+WORKDIR = $(PWD)
+
+# Go parameters
+GOCMD = go
+GOTEST = $(GOCMD) test -v
+
+# Coverage
+COVERAGE_REPORT = coverage.txt
+COVERAGE_PROFILE = profile.out
+COVERAGE_MODE = atomic
+
+ifneq ($(origin CI), undefined)
+ WORKDIR := $(TRAVIS_BUILD_DIR)
+endif
+
+
+test:
+ $(GOTEST) ./...
+
+test-coverage:
+ cd $(WORKDIR); \
+ echo "" > $(COVERAGE_REPORT); \
+ for dir in `find . -name "*.go" | grep -o '.*/' | sort | uniq`; do \
+ $(GOTEST) $$dir -coverprofile=$(COVERAGE_PROFILE) -covermode=$(COVERAGE_MODE); \
+ if (($$? != 0)); then \
+ exit 2; \
+ fi; \
+ if [ -f $(COVERAGE_PROFILE) ]; then \
+ cat $(COVERAGE_PROFILE) >> $(COVERAGE_REPORT); \
+ rm $(COVERAGE_PROFILE); \
+ fi; \
+ done; \