Skip to content

Commit

Permalink
release note and release script updates
Browse files Browse the repository at this point in the history
  • Loading branch information
tardyp committed Mar 15, 2017
1 parent 09d6f44 commit e8a9978
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Makefile
Expand Up @@ -31,7 +31,7 @@ flake8:
frontend:
$(PIP) install -e pkg
$(PIP) install mock
for i in base codeparameter console_view waterfall_view nestedexample; do $(PIP) install -e www/$$i || exit 1; done
for i in base wsgi_dashboards codeparameter console_view waterfall_view nestedexample; do $(PIP) install -e www/$$i || exit 1; done

# do installation tests. Test front-end can build and install for all install methods
frontend_install_tests:
Expand Down
2 changes: 1 addition & 1 deletion common/maketarballs.sh
Expand Up @@ -4,7 +4,7 @@ rm -rf dist
mkdir dist
pip install mock wheel
set -e
for pkg in pkg master worker www/base www/console_view www/waterfall_view
for pkg in pkg master worker www/base www/console_view www/waterfall_view www/wsgi_dashboards
do
pip install -e ${pkg}
(
Expand Down
2 changes: 1 addition & 1 deletion common/validate.sh
Expand Up @@ -143,7 +143,7 @@ echo "${MAGENTA}Validating the following commits:${NORM}"
git log "$REVRANGE" --pretty=oneline || exit 1

if ! $quick && ! $no_js; then
for module in www/base www/console_view www/waterfall_view www/codeparameter;
for module in www/base www/console_view www/waterfall_view www/codeparameter www/wsgi_dashboards;
do
status "running 'setup.py develop' for $module"
if ! (cd $module; python setup.py develop >/dev/null ); then
Expand Down
1 change: 1 addition & 0 deletions master/buildbot/newsfragments/wsgi_dashboard.feature
@@ -0,0 +1 @@
New :ref:`buildbot_wsgi_dashboards` plugin, which allows to write custom dashboard with traditional server side web frameworks.
2 changes: 2 additions & 0 deletions master/docs/manual/customization.rst
Expand Up @@ -932,6 +932,8 @@ For more information on the available commands, see :doc:`../developer/master-wo
Step Progress
BuildStepFailed

.. _buildbot_wsgi_dashboards:

Writing Dashboards with Flask_ or Bottle_
-----------------------------------------

Expand Down

0 comments on commit e8a9978

Please sign in to comment.