hybridgroup.gobot/Makefile

45 lines
1.1 KiB
Makefile
Raw Normal View History

.PHONY: test race cover robeaux examples test_with_coverage fmt_check
2014-07-11 02:13:32 +08:00
excluding_vendor := $(shell go list ./... | grep -v /vendor/)
# Run tests on all non-vendor directories
2014-06-12 11:10:46 +08:00
test:
go test -v $(excluding_vendor)
# Run tests with race detection on all non-vendor directories
race:
go test -race $(excluding_vendor)
# Check for code well-formedness
fmt_check:
./ci/format.sh
# Test and generate coverage
test_with_coverage:
./ci/test.sh
2014-07-02 14:10:12 +08:00
robeaux:
ifeq (,$(shell which go-bindata))
$(error robeaux not built! https://github.com/jteeuwen/go-bindata is required to build robeaux assets )
endif
cd api ; \
npm install robeaux ; \
cp -r node_modules/robeaux robeaux-tmp ; \
2014-07-11 02:35:00 +08:00
cd robeaux-tmp ; \
rm Makefile package.json README.markdown ; \
2014-07-11 02:13:32 +08:00
touch css/fonts.css ; \
echo "Updating robeaux..." ; \
2014-07-11 02:35:00 +08:00
go-bindata -pkg="robeaux" -o robeaux.go -ignore=\\.git ./... ; \
mv robeaux.go ../robeaux ; \
2014-07-02 14:10:12 +08:00
cd .. ; \
2014-07-11 02:35:00 +08:00
rm -rf robeaux-tmp/ ; \
rm -rf node_modules/ ; \
2014-07-11 02:35:00 +08:00
go fmt ./robeaux/robeaux.go ; \
EXAMPLES := $(shell ls examples/*.go | sed -e 's/examples\///')
examples:
for example in $(EXAMPLES) ; do \
go build -o /tmp/$$example examples/$$example ; \
done ; \