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
2 changes: 1 addition & 1 deletion .github/workflows/ci_cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ env:
GEO_CONT_NAME: ans_geo
RESET_IMAGE_CACHE: 5
IS_WORKFLOW_RUNNING: True
ARTIFACTORY_VERSION: v252
ARTIFACTORY_VERSION: v261

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
Expand Down
1 change: 1 addition & 0 deletions doc/changelog.d/2114.maintenance.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Using proper artifactory location
19 changes: 7 additions & 12 deletions docker/build_docker_windows.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,19 +69,14 @@
# Get the path to the Ansys installation
ANSYS_PATH = Path(awp_root[ANSYS_VER])

# Starting on 2025R2, the user can select between DMS and Core Services
if ANSYS_VER > 252:
print("Select between DMS and Core Services")
print("1: DMS")
print("2: Core Services")
backend_selection = input("Selection [default - 1]: ")
backend_selection = 1 if backend_selection == "" else int(backend_selection)
if backend_selection not in [1, 2]:
print("XXXXXXX Invalid selection XXXXXXX")
exit(0)
# Starting on 2025R2, only Core Service is available
# Before that, only DMS is available
if ANSYS_VER >= 252:
print(">>> Using Core Service")
backend_selection = 2 # Core Service
else:
# Default to DMS for older versions
backend_selection = 1
print(">>> Using DMS Service")
backend_selection = 1 # DMS Service

# Verify that the Geometry Service is installed
if not Path.exists(ANSYS_PATH / "GeometryService"):
Expand Down
Loading