redash/Makefile

20 lines
586 B
Makefile
Raw Normal View History

2014-01-25 19:24:31 +00:00
NAME=redash
2014-02-05 09:01:06 +00:00
VERSION=0.3
FULL_VERSION=$(VERSION).$(CIRCLE_BUILD_NUM)
FILENAME=$(CIRCLE_ARTIFACTS)/$(NAME).$(FULL_VERSION).tar.gz
2014-01-25 19:24:31 +00:00
deps:
cd rd_ui && npm install
cd rd_ui && npm install grunt-cli bower
cd rd_ui && bower install
cd rd_ui && grunt build
pack:
tar -zcv -f $(FILENAME) --exclude=".git*" --exclude="*.pyc" --exclude="*.pyo" --exclude="venv" --exclude="rd_ui/node_modules" --exclude="rd_ui/dist/bower_components" --exclude="rd_ui/app" *
upload:
python bin/upload_version.py $(FULL_VERSION) $(FILENAME)
2014-01-31 17:59:01 +00:00
test:
nosetests --with-coverage --cover-package=redash tests/*.py