Skip to content

Commit

Permalink
Remove installation of build requirements from workflows, since they …
Browse files Browse the repository at this point in the history
…are already installed in the underlying docker images
  • Loading branch information
francesco-ballarin committed Nov 2, 2023
1 parent 3b8de9a commit 8c35d4c
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 7 deletions.
4 changes: 0 additions & 4 deletions .github/workflows/ccpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,6 @@ jobs:
python3 -m isort --check .
- name: mypy checks
run: |
python3 -m pip install mypy types-setuptools --upgrade # TO REMOVE
cd python/
mypy dolfinx
mypy demo
Expand Down Expand Up @@ -118,7 +117,6 @@ jobs:
- name: Build C++ interface documentation
run: |
python3 -m pip install breathe # TO REMOVE
export DOLFINX_VERSION=`cmake -L build | grep DOXYGEN_DOLFINX_VERSION | cut -f2 -d "="`
echo $DOLFINX_VERSION
cd cpp/doc
Expand Down Expand Up @@ -147,11 +145,9 @@ jobs:
- name: Build Python interface
run: |
python3 -m pip install -r python/build-requirements.txt # TO REMOVE
python3 -m pip -v install --check-build-dependencies --no-build-isolation python/
- name: Build Python interface documentation
run: |
python3 -m pip install sphinx==5.0.2 # TO REMOVE
cd python/doc
make html
Expand Down
2 changes: 0 additions & 2 deletions .github/workflows/oneapi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,6 @@ jobs:
- name: Build DOLFINx Python interface
run: |
. /opt/intel/oneapi/setvars.sh
pip -v install -r python/build-requirements.txt # TO REMOVE
pip -v install --check-build-dependencies --no-build-isolation python/
- name: Set default DOLFINx JIT options
run: |
Expand All @@ -96,7 +95,6 @@ jobs:
- name: Run DOLFINx demos (Python, serial)
run: |
. /opt/intel/oneapi/setvars.sh
pip install matplotlib # TO REMOVE
pytest -v -n=2 -m serial --durations=10 python/demo/test.py
- name: Run DOLFINx demos (Python, MPI (np=2))
run: |
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/redhat.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,6 @@ jobs:
- name: Build Python interface
run: |
python3 -m pip -v install -r python/build-requirements.txt # TO REMOVE
python3 -m pip -v install --check-build-dependencies --no-build-isolation --config-settings=cmake.build-type=Debug python/
- name: Set default DOLFINx JIT options
Expand Down

0 comments on commit 8c35d4c

Please sign in to comment.