Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 4 additions & 7 deletions .github/workflows/doc-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,7 @@ jobs:
ON_DOCUMENTATION: TRUE
PYANSYS_OFF_SCREEN: True
BUILD_CHEATSHEET: '${{ inputs.build_cheatsheet }}'
MAPDL_IMAGE_VERSION_DOCS_BUILD: v24.2-ubuntu-student
DPF_DOCKER_IMAGE: ghcr.io/ansys/mapdl:v25.2-rocky-dpf-standalone
MAPDL_IMAGE_VERSION_DOCS_BUILD: v25.2-ubuntu-cicd
MAPDL_PACKAGE: ghcr.io/ansys/mapdl
PYMAPDL_START_INSTANCE: FALSE
PYMAPDL_PORT: 21000 # default won't work on GitHub runners
Expand Down Expand Up @@ -101,18 +100,16 @@ jobs:
MAPDL_VERSION: ${{ env.MAPDL_IMAGE_VERSION_DOCS_BUILD }}
MAPDL_PACKAGE: ${{ env.MAPDL_PACKAGE }}
DISTRIBUTED_MODE: "dmp"
DPF_PORT: ${{ env.DPF_PORT }}
DPF_PORT_INTERNAL: 50055
shell: bash
run: |
export INSTANCE_NAME=MAPDL_0
export RUN_DPF_SERVER=true
.ci/start_mapdl.sh &> mapdl_launch.log & export DOCKER_PID=$!
echo "Launching MAPDL service at PID: $DOCKER_PID"
echo "DOCKER_PID=$(echo $DOCKER_PID)" >> $GITHUB_OUTPUT

- name: "DPF server activation"
shell: bash
run: |
$(docker pull $DPF_DOCKER_IMAGE && docker run -d --name dpfserver --env ANSYS_DPF_ACCEPT_LA=Y --env ANSYSLMD_LICENSE_FILE="1055@${{ secrets.license-server }}" -p ${{ env.DPF_PORT }}:50052 $DPF_DOCKER_IMAGE && echo "DPF Server active on port ${{ env.DPF_PORT }}.") &

- name: "Getting files change filters"
uses: dorny/paths-filter@v3
id: changes
Expand Down
1 change: 1 addition & 0 deletions doc/changelog.d/4118.fixed.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Fix: update mapdl image version and remove dpf server activation step in documentation build workflow
Loading