-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
15 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -86,20 +86,6 @@ jobs: | |
cache: 'pip' | ||
cache-dependency-path: 'requirements/requirements_doc.txt' | ||
|
||
- name: "Install OS packages" | ||
run: | | ||
sudo apt-get update | ||
sudo apt install zip pandoc libgl1-mesa-glx xvfb texlive-latex-extra latexmk graphviz texlive-xetex libgomp1 | ||
- name: "Install Python requirements" | ||
run: | | ||
pip uninstall ansys-mapdl-core | ||
pip install -r requirements/requirements_doc.txt | ||
- name: "Test virtual framebuffer" | ||
run: | | ||
xvfb-run python .ci/display_test.py | ||
- name: "Login in Github Container registry" | ||
uses: docker/[email protected] | ||
with: | ||
|
@@ -120,7 +106,7 @@ jobs: | |
echo "DOCKER_PID=$(echo $DOCKER_PID)" >> $GITHUB_OUTPUT | ||
- name: "test" | ||
run: | ||
run: | | ||
sleep 5 | ||
docker container ls -a | ||
|
@@ -151,6 +137,20 @@ jobs: | |
run: | | ||
$(docker pull ghcr.io/ansys/dpf-core:22.2dev && docker run -d --name dpfserver -p ${{ env.DPF_PORT }}:50052 ghcr.io/ansys/dpf-core:22.2dev && echo "DPF Server active on port ${{ env.DPF_PORT }}.") & | ||
- name: "Install OS packages" | ||
run: | | ||
sudo apt-get update | ||
sudo apt install zip pandoc libgl1-mesa-glx xvfb texlive-latex-extra latexmk graphviz texlive-xetex libgomp1 | ||
- name: "Install Python requirements" | ||
run: | | ||
pip uninstall ansys-mapdl-core | ||
pip install -r requirements/requirements_doc.txt | ||
- name: "Test virtual framebuffer" | ||
run: | | ||
xvfb-run python .ci/display_test.py | ||
- name: "Retrieve PyMAPDL version" | ||
id: version | ||
run: | | ||
|