From faabd8634a9799407b847154b07aa5fe094bf5c7 Mon Sep 17 00:00:00 2001 From: German <28149841+germa89@users.noreply.github.com> Date: Wed, 30 Apr 2025 20:02:20 +0200 Subject: [PATCH 01/18] ci: use own DPF standalone Docker image reference in workflows --- .github/workflows/doc-build.yml | 3 ++- .github/workflows/test-remote.yml | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/doc-build.yml b/.github/workflows/doc-build.yml index ddbe9c2715f..c65aad1f343 100644 --- a/.github/workflows/doc-build.yml +++ b/.github/workflows/doc-build.yml @@ -72,6 +72,7 @@ jobs: 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-ubuntu-dpf-standalone MAPDL_PACKAGE: ghcr.io/ansys/mapdl PYMAPDL_START_INSTANCE: FALSE PYMAPDL_PORT: 21000 # default won't work on GitHub runners @@ -110,7 +111,7 @@ jobs: - name: "DPF server activation" shell: bash 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 }}.") & + $(docker pull $DPF_DOCKER_IMAGE && docker run -d --name dpfserver -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 diff --git a/.github/workflows/test-remote.yml b/.github/workflows/test-remote.yml index 58da5ee39a6..ae53aa86e58 100644 --- a/.github/workflows/test-remote.yml +++ b/.github/workflows/test-remote.yml @@ -54,6 +54,7 @@ jobs: PYMAPDL_PORT2: 21001 # for the pool testing and default won't work on GitHub runners PYMAPDL_DB_PORT: 21002 # default won't work on GitHub runners PYMAPDL_DB_PORT2: 21003 # default won't work on GitHub runners + DPF_DOCKER_IMAGE: ghcr.io/ansys/mapdl:v25.2-ubuntu-dpf-standalone DPF_PORT: 21004 DPF_START_SERVER: False PYTEST_ARGUMENTS: '-vvv -rxXsa --color=yes --durations=30 --random-order --random-order-bucket=class --maxfail=10 --reruns 3 --reruns-delay 4 --cov=ansys.mapdl.core --cov-report=html --timeout=180 --profile-svg --profile' @@ -134,7 +135,7 @@ jobs: - name: "DPF server activation" shell: bash 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 }}.") & + $(docker pull $DPF_DOCKER_IMAGE && docker run -d --name dpfserver -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 From 0dfcf8b58ecdbc22141e52ae64e44c2d776603fb Mon Sep 17 00:00:00 2001 From: pyansys-ci-bot <92810346+pyansys-ci-bot@users.noreply.github.com> Date: Wed, 30 Apr 2025 18:04:41 +0000 Subject: [PATCH 02/18] chore: adding changelog file 3882.maintenance.md [dependabot-skip] --- doc/changelog.d/3882.maintenance.md | 1 + 1 file changed, 1 insertion(+) create mode 100644 doc/changelog.d/3882.maintenance.md diff --git a/doc/changelog.d/3882.maintenance.md b/doc/changelog.d/3882.maintenance.md new file mode 100644 index 00000000000..95c3e2fe066 --- /dev/null +++ b/doc/changelog.d/3882.maintenance.md @@ -0,0 +1 @@ +ci: use own DPF standalone Docker image reference in workflows \ No newline at end of file From 62039f86474d98f5ec36bb133f886be42a35f07c Mon Sep 17 00:00:00 2001 From: German <28149841+germa89@users.noreply.github.com> Date: Wed, 30 Apr 2025 20:53:29 +0200 Subject: [PATCH 03/18] fix: enable DPF support in test workflow --- .github/workflows/test-remote.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/test-remote.yml b/.github/workflows/test-remote.yml index ae53aa86e58..a27dff0f0fe 100644 --- a/.github/workflows/test-remote.yml +++ b/.github/workflows/test-remote.yml @@ -57,6 +57,7 @@ jobs: DPF_DOCKER_IMAGE: ghcr.io/ansys/mapdl:v25.2-ubuntu-dpf-standalone DPF_PORT: 21004 DPF_START_SERVER: False + HAS_DPF: True PYTEST_ARGUMENTS: '-vvv -rxXsa --color=yes --durations=30 --random-order --random-order-bucket=class --maxfail=10 --reruns 3 --reruns-delay 4 --cov=ansys.mapdl.core --cov-report=html --timeout=180 --profile-svg --profile' MAIN_PYTHON_VERSION: '3.12' MAPDL_PACKAGE: ghcr.io/ansys/mapdl From 1068dceb79f177260ab195b8b733e0bd5a8be192 Mon Sep 17 00:00:00 2001 From: German <28149841+germa89@users.noreply.github.com> Date: Wed, 30 Apr 2025 22:48:52 +0200 Subject: [PATCH 04/18] feat: add DPF log collection to remote log script and update DPF server activation logging --- .ci/collect_mapdl_logs_remote.sh | 1 + .github/workflows/test-remote.yml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.ci/collect_mapdl_logs_remote.sh b/.ci/collect_mapdl_logs_remote.sh index eaaa0acceae..e75f0ee23fb 100755 --- a/.ci/collect_mapdl_logs_remote.sh +++ b/.ci/collect_mapdl_logs_remote.sh @@ -30,6 +30,7 @@ echo "Collecting local build logs..." echo "Collecting docker run log..." cp log.txt ./"$LOG_NAMES"/log.txt || echo "MAPDL run docker log not found." +cp log_dpf.txt ./"$LOG_NAMES"/log_dpf.txt || echo "DPF run docker log not found." echo "Copying docker launch log..." cp mapdl_launch_0.log ./"$LOG_NAMES"/mapdl_launch_0.log || echo "MAPDL launch docker log not found." diff --git a/.github/workflows/test-remote.yml b/.github/workflows/test-remote.yml index a27dff0f0fe..6637241cd64 100644 --- a/.github/workflows/test-remote.yml +++ b/.github/workflows/test-remote.yml @@ -136,7 +136,7 @@ jobs: - name: "DPF server activation" shell: bash run: | - $(docker pull $DPF_DOCKER_IMAGE && docker run -d --name dpfserver -p ${{ env.DPF_PORT }}:50052 $DPF_DOCKER_IMAGE && echo "DPF Server active on port ${{ env.DPF_PORT }}.") & + docker pull $DPF_DOCKER_IMAGE && docker run -d --name dpfserver -p ${{ env.DPF_PORT }}:50052 $DPF_DOCKER_IMAGE && echo "DPF Server active on port ${{ env.DPF_PORT }}." > log_dpf.txt & - name: "Getting files change filters" uses: dorny/paths-filter@v3 From 1ce29cfea798a1d6572c88fd90faef5f6b9e7e30 Mon Sep 17 00:00:00 2001 From: German <28149841+germa89@users.noreply.github.com> Date: Mon, 5 May 2025 13:14:38 +0200 Subject: [PATCH 05/18] fix: update vtk dependency version to 9.4.2 in tests and documentation --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 985aa391331..25d30994227 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -81,7 +81,7 @@ tests = [ "pytest-timeout==2.3.1", "pytest==8.3.5", "scipy==1.15.2", - "vtk==9.3.1", + "vtk==9.4.2", ] doc = [ @@ -114,7 +114,7 @@ doc = [ "sphinx==8.2.3", "sphinxcontrib-websupport==2.0.0", "sphinxemoji==0.3.1", - "vtk==9.3.1", + "vtk==9.4.2", ] [tool.flit.module] From d59e27067a5a77c8173b54156ee93a7472cd6f09 Mon Sep 17 00:00:00 2001 From: German <28149841+germa89@users.noreply.github.com> Date: Mon, 5 May 2025 13:14:52 +0200 Subject: [PATCH 06/18] fix: correct DPF_PORT type and update file upload method in test_dpf.py --- tests/test_dpf.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/test_dpf.py b/tests/test_dpf.py index 4233b136927..d8a5c141114 100644 --- a/tests/test_dpf.py +++ b/tests/test_dpf.py @@ -32,7 +32,7 @@ from ansys.dpf import core as dpf from ansys.dpf.core.server_types import DPF_DEFAULT_PORT - DPF_PORT = os.environ.get("DPF_PORT", DPF_DEFAULT_PORT) # Set in ci.yaml + DPF_PORT = int(os.environ.get("DPF_PORT", DPF_DEFAULT_PORT)) # Set in ci.yaml @pytest.fixture() @@ -46,7 +46,7 @@ def dpf_server(): # Start the DPF server if ON_LOCAL: # If running locally, start the server - dpf_server = dpf.start_local_server(port=int(DPF_PORT)) + dpf_server = dpf.start_local_server(port=DPF_PORT) assert not dpf_server.info["server_ip"] else: @@ -64,7 +64,7 @@ def model(dpf_server, mapdl, solved_box, tmpdir): # Upload RST if not dpf_server.local_server: - rst_path = dpf.upload_file_in_tmp_folder(rst_path) + rst_path = dpf.upload_file_in_tmp_folder(rst_path, server=dpf_server) model = dpf.Model(rst_path) assert model.results is not None From 5d0e3dbfea31ed668f570c85cd4737e3333cdf89 Mon Sep 17 00:00:00 2001 From: pyansys-ci-bot <92810346+pyansys-ci-bot@users.noreply.github.com> Date: Mon, 5 May 2025 11:16:05 +0000 Subject: [PATCH 07/18] chore: adding changelog file 3882.dependencies.md [dependabot-skip] --- doc/changelog.d/{3882.maintenance.md => 3882.dependencies.md} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename doc/changelog.d/{3882.maintenance.md => 3882.dependencies.md} (100%) diff --git a/doc/changelog.d/3882.maintenance.md b/doc/changelog.d/3882.dependencies.md similarity index 100% rename from doc/changelog.d/3882.maintenance.md rename to doc/changelog.d/3882.dependencies.md From ec1bd641fbf9bc099ac89455a6effb2df5bdf4ec Mon Sep 17 00:00:00 2001 From: German <28149841+germa89@users.noreply.github.com> Date: Mon, 5 May 2025 13:17:32 +0200 Subject: [PATCH 08/18] fix: update ansys-dpf-core dependency to include graphics support in tests and documentation --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 25d30994227..a0c31deff34 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -64,7 +64,7 @@ all = [ ] tests = [ - "ansys-dpf-core==0.13.6", + "ansys-dpf-core[graphics]==0.13.6", "ansys-tools-visualization-interface==0.9.1", "autopep8==2.3.2", "matplotlib==3.10.1", @@ -85,7 +85,7 @@ tests = [ ] doc = [ - "ansys-dpf-core==0.13.6", + "ansys-dpf-core[graphics]==0.13.6", "ansys-mapdl-reader==0.54.2", "ansys-sphinx-theme==1.4.2", "ansys-tools-visualization-interface==0.9.1", From 1ba894b4287435d83f3d5a90cf70c0599aab9089 Mon Sep 17 00:00:00 2001 From: German <28149841+germa89@users.noreply.github.com> Date: Mon, 12 May 2025 16:42:14 +0200 Subject: [PATCH 09/18] fix: specify platform as linux/amd64 for all services in docker-compose --- docker/docker-compose.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docker/docker-compose.yml b/docker/docker-compose.yml index ca373d90eb6..32d59b4da6a 100644 --- a/docker/docker-compose.yml +++ b/docker/docker-compose.yml @@ -97,6 +97,7 @@ services: - '50052:50052' - '50055:50055' image: ${DOCKER_IMAGE} + platform: linux/amd64 entrypoint: "/bin/bash ansys -grpc" dpf: @@ -105,6 +106,7 @@ services: - mapdl-dpf - local-dpf image: ${DPF_DOCKER_IMAGE} + platform: linux/amd64 ports: - '50056:50052' restart: always @@ -128,6 +130,7 @@ services: ports: - '50052:50052' - '50055:50055' + platform: linux/amd64 image: ${DOCKER_IMAGE} # Mount the current directory to /home/${DOCKER_USER:-mapdl}/pymapdl # This allows you to run the container and have access to the current directory From 426ae9cbf2586d93986d89b7261464ce55738b21 Mon Sep 17 00:00:00 2001 From: German <28149841+germa89@users.noreply.github.com> Date: Tue, 13 May 2025 13:06:18 +0200 Subject: [PATCH 10/18] fix: update DPF Docker image tag to remove platform specification and use rocky version --- .github/workflows/test-remote.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test-remote.yml b/.github/workflows/test-remote.yml index 37475fa0943..3f0a71b62be 100644 --- a/.github/workflows/test-remote.yml +++ b/.github/workflows/test-remote.yml @@ -61,7 +61,7 @@ jobs: PYMAPDL_PORT2: 21001 # for the pool testing and default won't work on GitHub runners PYMAPDL_DB_PORT: 21002 # default won't work on GitHub runners PYMAPDL_DB_PORT2: 21003 # default won't work on GitHub runners - DPF_DOCKER_IMAGE: ghcr.io/ansys/mapdl:v25.2-ubuntu-dpf-standalone + DPF_DOCKER_IMAGE: ghcr.io/ansys/mapdl:v25.2-dpf-standalone DPF_PORT: 21004 DPF_START_SERVER: False HAS_DPF: True From 4f2248344bc48576607275bfabf3210f01339012 Mon Sep 17 00:00:00 2001 From: German <28149841+germa89@users.noreply.github.com> Date: Tue, 13 May 2025 15:03:06 +0200 Subject: [PATCH 11/18] fix: add environment variable to accept DPF license agreement during server activation --- .github/workflows/test-remote.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/test-remote.yml b/.github/workflows/test-remote.yml index 3f0a71b62be..8a32bd9642c 100644 --- a/.github/workflows/test-remote.yml +++ b/.github/workflows/test-remote.yml @@ -150,6 +150,8 @@ jobs: - name: "DPF server activation" shell: bash + env: + ANSYS_DPF_ACCEPT_LA: Y run: | docker pull $DPF_DOCKER_IMAGE && docker run -d --name dpfserver -p ${{ env.DPF_PORT }}:50052 $DPF_DOCKER_IMAGE && echo "DPF Server active on port ${{ env.DPF_PORT }}." > log_dpf.txt & From 4cf8f767d90fe6860dcbedbc6473fb44d4a53a7c Mon Sep 17 00:00:00 2001 From: German <28149841+germa89@users.noreply.github.com> Date: Tue, 13 May 2025 15:19:07 +0200 Subject: [PATCH 12/18] fix: comment out DPF port waiting logic in waiting_services.sh --- .ci/waiting_services.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.ci/waiting_services.sh b/.ci/waiting_services.sh index b2050ef89df..62a740d3078 100755 --- a/.ci/waiting_services.sh +++ b/.ci/waiting_services.sh @@ -11,9 +11,9 @@ done echo "::endgroup::" echo "MAPDL service is up!" -echo "::group:: Waiting for the DPF port to be open..." -while ! nc -z localhost "$DPF_PORT"; do - sleep 0.1 -done +# echo "::group:: Waiting for the DPF port to be open..." +# while ! nc -z localhost "$DPF_PORT"; do +# sleep 0.1 +# done echo "::endgroup::" echo "DPF service is up!" \ No newline at end of file From dde14ce5544f39f68ff1b8e778a1e25efa289b0e Mon Sep 17 00:00:00 2001 From: German <28149841+germa89@users.noreply.github.com> Date: Tue, 13 May 2025 16:38:42 +0200 Subject: [PATCH 13/18] fix: correct PID logging for MAPDL service launch and add environment variable for DPF server --- .github/workflows/test-remote.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test-remote.yml b/.github/workflows/test-remote.yml index 8a32bd9642c..b8563d04434 100644 --- a/.github/workflows/test-remote.yml +++ b/.github/workflows/test-remote.yml @@ -144,7 +144,7 @@ jobs: export INSTANCE_NAME=MAPDL_1 .ci/start_mapdl.sh &> mapdl_launch_1.log & export DOCKER_PID_1=$! echo "Launching MAPDL service 0 at PID: $DOCKER_PID_0" - echo "Launching MAPDL service 1 at PID: $DOCKER_PID_2" + echo "Launching MAPDL service 1 at PID: $DOCKER_PID_1" echo "DOCKER_PID_0=$(echo $DOCKER_PID_0)" >> $GITHUB_OUTPUT echo "DOCKER_PID_1=$(echo $DOCKER_PID_1)" >> $GITHUB_OUTPUT @@ -153,7 +153,7 @@ jobs: env: ANSYS_DPF_ACCEPT_LA: Y run: | - docker pull $DPF_DOCKER_IMAGE && docker run -d --name dpfserver -p ${{ env.DPF_PORT }}:50052 $DPF_DOCKER_IMAGE && echo "DPF Server active on port ${{ env.DPF_PORT }}." > log_dpf.txt & + docker pull $DPF_DOCKER_IMAGE && docker run -d --name dpfserver --env ANSYS_DPF_ACCEPT_LA=Y -p ${{ env.DPF_PORT }}:50052 $DPF_DOCKER_IMAGE && echo "DPF Server active on port ${{ env.DPF_PORT }}." > log_dpf.txt & - name: "Getting files change filters" uses: dorny/paths-filter@v3 From 1b3229b4795a6eff4c492e13c5729cb0f07136d0 Mon Sep 17 00:00:00 2001 From: German <28149841+germa89@users.noreply.github.com> Date: Tue, 13 May 2025 16:39:07 +0200 Subject: [PATCH 14/18] fix: uncomment DPF port waiting logic in waiting_services.sh --- .ci/waiting_services.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.ci/waiting_services.sh b/.ci/waiting_services.sh index 62a740d3078..b2050ef89df 100755 --- a/.ci/waiting_services.sh +++ b/.ci/waiting_services.sh @@ -11,9 +11,9 @@ done echo "::endgroup::" echo "MAPDL service is up!" -# echo "::group:: Waiting for the DPF port to be open..." -# while ! nc -z localhost "$DPF_PORT"; do -# sleep 0.1 -# done +echo "::group:: Waiting for the DPF port to be open..." +while ! nc -z localhost "$DPF_PORT"; do + sleep 0.1 +done echo "::endgroup::" echo "DPF service is up!" \ No newline at end of file From 72a873c2697995d4f78fa3176ca8cd64af1675b4 Mon Sep 17 00:00:00 2001 From: German <28149841+germa89@users.noreply.github.com> Date: Tue, 13 May 2025 17:23:08 +0200 Subject: [PATCH 15/18] fix: correct DPF Docker image tag in documentation build workflow --- .github/workflows/doc-build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/doc-build.yml b/.github/workflows/doc-build.yml index 17f1b8c1075..2efb55770bd 100644 --- a/.github/workflows/doc-build.yml +++ b/.github/workflows/doc-build.yml @@ -72,7 +72,7 @@ jobs: 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-ubuntu-dpf-standalone + DPF_DOCKER_IMAGE: ghcr.io/ansys/mapdl:v25.2-dpf-standalone MAPDL_PACKAGE: ghcr.io/ansys/mapdl PYMAPDL_START_INSTANCE: FALSE PYMAPDL_PORT: 21000 # default won't work on GitHub runners From 0283d697269de0e4e8541577f71e340a4aa017c6 Mon Sep 17 00:00:00 2001 From: German <28149841+germa89@users.noreply.github.com> Date: Tue, 13 May 2025 17:47:54 +0200 Subject: [PATCH 16/18] fix: missing env var --- .github/workflows/doc-build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/doc-build.yml b/.github/workflows/doc-build.yml index 2efb55770bd..af30838f405 100644 --- a/.github/workflows/doc-build.yml +++ b/.github/workflows/doc-build.yml @@ -111,7 +111,7 @@ jobs: - name: "DPF server activation" shell: bash run: | - $(docker pull $DPF_DOCKER_IMAGE && docker run -d --name dpfserver -p ${{ env.DPF_PORT }}:50052 $DPF_DOCKER_IMAGE && echo "DPF Server active on port ${{ env.DPF_PORT }}.") & + $(docker pull $DPF_DOCKER_IMAGE && docker run -d --name dpfserver --env ANSYS_DPF_ACCEPT_LA=Y -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 From 0ece28ab60f204bce2e9f73cc43bf1543b5d82ff Mon Sep 17 00:00:00 2001 From: German <28149841+germa89@users.noreply.github.com> Date: Wed, 14 May 2025 12:02:51 +0200 Subject: [PATCH 17/18] cicd: empty commit to retrigger cicd From 2ce1b917e4679d54642a470b88b4007062f8072b Mon Sep 17 00:00:00 2001 From: German <28149841+germa89@users.noreply.github.com> Date: Wed, 14 May 2025 12:40:18 +0200 Subject: [PATCH 18/18] fix: update DPF Docker image tag to use rocky variant in workflows --- .github/workflows/doc-build.yml | 2 +- .github/workflows/test-remote.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/doc-build.yml b/.github/workflows/doc-build.yml index af30838f405..7d8973c365f 100644 --- a/.github/workflows/doc-build.yml +++ b/.github/workflows/doc-build.yml @@ -72,7 +72,7 @@ jobs: 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-dpf-standalone + DPF_DOCKER_IMAGE: ghcr.io/ansys/mapdl:v25.2-rocky-dpf-standalone MAPDL_PACKAGE: ghcr.io/ansys/mapdl PYMAPDL_START_INSTANCE: FALSE PYMAPDL_PORT: 21000 # default won't work on GitHub runners diff --git a/.github/workflows/test-remote.yml b/.github/workflows/test-remote.yml index 397ed7c66ef..499847e690e 100644 --- a/.github/workflows/test-remote.yml +++ b/.github/workflows/test-remote.yml @@ -61,7 +61,7 @@ jobs: PYMAPDL_PORT2: 21001 # for the pool testing and default won't work on GitHub runners PYMAPDL_DB_PORT: 21002 # default won't work on GitHub runners PYMAPDL_DB_PORT2: 21003 # default won't work on GitHub runners - DPF_DOCKER_IMAGE: ghcr.io/ansys/mapdl:v25.2-dpf-standalone + DPF_DOCKER_IMAGE: ghcr.io/ansys/mapdl:v25.2-rocky-dpf-standalone DPF_PORT: 21004 DPF_START_SERVER: False HAS_DPF: True