Mentions légales du service

Skip to content
Snippets Groups Projects
Commit fe621530 authored by LEGRAND Jonathan's avatar LEGRAND Jonathan
Browse files

Try to fix 'pages' CI job.

Update 'pages' CI recipe and `env.yaml`.
parent 27c7e378
No related branches found
No related tags found
No related merge requests found
Pipeline #946613 passed
...@@ -100,12 +100,13 @@ pages: ...@@ -100,12 +100,13 @@ pages:
# - conda install -y -n base -c conda-forge conda-libmamba-solver # - conda install -y -n base -c conda-forge conda-libmamba-solver
# - conda config --set solver libmamba # - conda config --set solver libmamba
# Create 'bvpy' conda environment & activate it: # Create 'bvpy' conda environment & activate it:
- conda env create --file conda/env.yaml - conda env create -f conda/env.yaml -n bvpy
- source activate bvpy - source activate bvpy
# Install `bvpy` package (from sources): # Install `bvpy` package (from sources):
- python -m pip install -e .[doc] - python -m pip install -e .[doc]
# Build the documentation: # Build the documentation:
- cd doc && make clean && make html - cd doc
- make clean && make html
# Publish the documentation: # Publish the documentation:
- mv build/html ../public - mv build/html ../public
retry: retry:
......
#{% set pyproject = load_file_data('../pyproject.toml', 'toml', from_recipe_dir=True) %}
#{% set project = pyproject.get('project', {}) %}
#{% set deps = project.get('dependencies', {}) %}
#name: {{ project.get('name') }}
name: bvpy name: bvpy
channels: channels:
- conda-forge - conda-forge
- defaults - defaults
dependencies: dependencies:
# - python {{ project.get('requires-python') }}
- python=3.9 - python=3.9
- python-gmsh=4.11.1 - python-gmsh=4.11.1
- fenics=2019.1.0 - fenics=2019.1.0
- make \ No newline at end of file
# {% for dep in deps %}
# - {{ dep }}
# {% endfor %}
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