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 19
19
GEO_CONT_NAME : ans_geo
20
20
RESET_IMAGE_CACHE : 5
21
21
IS_WORKFLOW_RUNNING : True
22
- ARTIFACTORY_VERSION : v252
22
+ ARTIFACTORY_VERSION : v261
23
23
24
24
concurrency :
25
25
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 69
69
# Get the path to the Ansys installation
70
70
ANSYS_PATH = Path (awp_root [ANSYS_VER ])
71
71
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
82
77
else :
83
- # Default to DMS for older versions
84
- backend_selection = 1
78
+ print ( ">>> Using DMS Service" )
79
+ backend_selection = 1 # DMS Service
85
80
86
81
# Verify that the Geometry Service is installed
87
82
if not Path .exists (ANSYS_PATH / "GeometryService" ):
You can’t perform that action at this time.
0 commit comments