Skip to content
Snippets Groups Projects
Commit 6eeb9aa5 authored by André Anjos's avatar André Anjos :speech_balloon:
Browse files

[conda] Try to get rid of project_dir conda template variable

parent 5f30768d
No related branches found
No related tags found
No related merge requests found
Pipeline #26136 failed
{% set name = 'bob.devtools' %}
{% set project_dir = environ.get('RECIPE_DIR') + '/..' %}
package:
name: {{ name }}
......@@ -12,7 +11,7 @@ build:
run_exports:
- {{ pin_subpackage(name) }}
script:
- cd {{ project_dir }}
- cd {{ environ.get('RECIPE_DIR') + '/..' }}
{% if environ.get('BUILD_EGG') %}
- python setup.py sdist --formats=zip
{% endif %}
......@@ -68,7 +67,7 @@ test:
- bdt ci build --help
- bdt ci deploy --help
- bdt ci pypi --help
- sphinx-build -aEW ${PREFIX}/share/doc/{{ name }}/doc {{ project_dir }}/sphinx
- sphinx-build -aEW ${PREFIX}/share/doc/{{ name }}/doc sphinx
about:
home: https://www.idiap.ch/software/bob/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment