Skip to content

Commit

Permalink
CI: add step to install ci deps
Browse files Browse the repository at this point in the history
  • Loading branch information
SMoraisAnsys committed Feb 19, 2024
1 parent 03bb2fd commit 8f4958b
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions .github/workflows/ci_cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,12 +57,17 @@ jobs:
python -m pip install wheel setuptools -U
python -c "import sys; print(sys.executable)"
- name: Install project and documentation dependencies
- name: Install project and documentation dependencies
run: |
.venv\Scripts\Activate.ps1
pip install .
pip install .[doc]
# Copy-Item -Path "C:\actions-runner\opengl32.dll" -Destination ".venv\Lib\site-packages\vtkmodules" -Force
pip install -r requirements\requirements.txt
pip install -r requirements\requirements_doc.txt
- name: Uninstall packages and install CI dependencies
run: |
.venv\Scripts\Activate.ps1
pip uninstall vtk -y
pip install --extra-index-url https://wheels.vtk.org -r requirements\requirements_doc_ci.txt
- name: Create HTML documentation
run: |
Expand Down

0 comments on commit 8f4958b

Please sign in to comment.