Skip to content
This repository was archived by the owner on Nov 28, 2022. It is now read-only.

Commit

Permalink
Fix superlu_dist version and build
Browse files Browse the repository at this point in the history
  • Loading branch information
IvanYashchuk committed Nov 20, 2021
1 parent a71320b commit 704bb1f
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/ci-fenics.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,22 +18,25 @@ jobs:

- name: Setup Miniconda
uses: conda-incubator/setup-miniconda@v2
with:
with:
auto-update-conda: true
python-version: 3.8
mamba-version: "*"
channels: conda-forge,defaults
channel-priority: true

- name: Conda info
shell: bash -l {0}
run: |
conda info
which python
- name: Conda install FEniCS
- name: Mamba install FEniCS
shell: bash -l {0}
run: |
conda config --set always_yes yes
conda config --add channels conda-forge
conda create -n fenicsproject -c conda-forge fenics
mamba create -n fenicsproject -c conda-forge fenics superlu_dist=6.2.0=h050a5a1_4
conda activate fenicsproject
which python
python -c "from dolfin import *"
Expand Down

0 comments on commit 704bb1f

Please sign in to comment.