We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 19a45d0 commit 0a075c4Copy full SHA for 0a075c4
.github/workflows/dolfin-tests.yml
@@ -73,12 +73,15 @@ jobs:
73
repository: FEniCS/dolfinx
74
ref: ${{ github.event.inputs.dolfinx_ref }}
75
76
- - name: Install DOLFINx
+ - name: Install DOLFINx (C++)
77
run: |
78
cmake -G Ninja -DCMAKE_BUILD_TYPE=Developer -B build -S dolfinx/cpp/
79
cmake --build build
80
cmake --install build
81
- pip3 -v install --global-option build --global-option --debug dolfinx/python/
+ - name: Install DOLFINx (Python)
82
+ run: |
83
+ python3 -m pip install -r dolfinx/python/build-requirements.txt # TO REMOVE
84
+ python3 -m pip -v install --check-build-dependencies --no-build-isolation dolfinx/python/
85
86
- name: Build DOLFINx C++ unit tests
87
0 commit comments