Installing pyminder only when beeminder is turned on

This commit is contained in:
Filip Gralinski 2022-05-30 21:15:38 +02:00
parent 90882c353f
commit d0acd0c8d4

View File

@ -13,7 +13,9 @@ pipeline {
steps {
withEnv(["HOME=${env.WORKSPACE}"]) {
sh """
{% if cookiecutter.beeminder_support == 'yes' %}
pip3 install pyyaml pyminder
{% endif %}
make clean
make
"""