File tree Expand file tree Collapse file tree 3 files changed +9
-13
lines changed Expand file tree Collapse file tree 3 files changed +9
-13
lines changed Original file line number Diff line number Diff line change 1919 GEO_CONT_NAME : ans_geo
2020 RESET_IMAGE_CACHE : 5
2121 IS_WORKFLOW_RUNNING : True
22- ARTIFACTORY_VERSION : v252
22+ ARTIFACTORY_VERSION : v261
2323
2424concurrency :
2525 group : ${{ github.workflow }}-${{ github.ref }}
Original file line number Diff line number Diff line change 1+ Using proper artifactory location
Original file line number Diff line number Diff line change 6969# Get the path to the Ansys installation
7070ANSYS_PATH = Path (awp_root [ANSYS_VER ])
7171
72- # Starting on 2025R2, the user can select between DMS and Core Services
73- if ANSYS_VER > 252 :
74- print ("Select between DMS and Core Services" )
75- print ("1: DMS" )
76- print ("2: Core Services" )
77- backend_selection = input ("Selection [default - 1]: " )
78- backend_selection = 1 if backend_selection == "" else int (backend_selection )
79- if backend_selection not in [1 , 2 ]:
80- print ("XXXXXXX Invalid selection XXXXXXX" )
81- exit (0 )
72+ # Starting on 2025R2, only Core Service is available
73+ # Before that, only DMS is available
74+ if ANSYS_VER >= 252 :
75+ print (">>> Using Core Service" )
76+ backend_selection = 2 # Core Service
8277else :
83- # Default to DMS for older versions
84- backend_selection = 1
78+ print ( ">>> Using DMS Service" )
79+ backend_selection = 1 # DMS Service
8580
8681# Verify that the Geometry Service is installed
8782if not Path .exists (ANSYS_PATH / "GeometryService" ):
You can’t perform that action at this time.
0 commit comments