Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

Commit

Permalink
Add license check to dev_menu, docs build with docker (#14166)
Browse files Browse the repository at this point in the history
  • Loading branch information
larroy authored and marcoabreu committed Feb 14, 2019
1 parent 518cd40 commit a13f8d9
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions dev_menu.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,10 +118,13 @@ def create_virtualenv_default():
('[Local] Python Unit tests',
"./py3_venv/bin/nosetests -v tests/python/unittest/"
),
('[Website and docs build] Will build to docs/_build/html/',
"ci/docker/runtime_functions.sh deploy_docs"),
('[Docker] sanity_check. Check for linting and code formatting.',
"ci/build.py --platform ubuntu_cpu /work/runtime_functions.sh sanity_check"),
('[Docker] Website and docs build outputs to "docs/_build/html/"',
"ci/build.py --platform ubuntu_cpu /work/runtime_functions.sh deploy_docs"),
('[Docker] sanity_check. Check for linting and code formatting and licenses.',
[
"ci/build.py --platform ubuntu_cpu /work/runtime_functions.sh sanity_check",
"ci/build.py --platform ubuntu_cpu /work/runtime_functions.sh nightly_test_rat_check",
]),
('[Docker] Python3 CPU unittests',
[
"ci/build.py --platform ubuntu_cpu /work/runtime_functions.sh build_ubuntu_cpu_openblas",
Expand Down

0 comments on commit a13f8d9

Please sign in to comment.