1414 description : " ANSYS version"
1515 required : false
1616 type : string
17- default : " 252 "
17+ default : vars.ANSYS_VERSION_DEFAULT
1818 standalone_branch_suffix :
1919 description : ' Suffix of the branch on standalone'
2020 required : false
@@ -105,7 +105,7 @@ jobs:
105105 uses : ./.github/workflows/tests.yml
106106 needs : pick_server_suffix
107107 with :
108- ANSYS_VERSION : ${{ github.event.inputs.ansys_version || '252' }}
108+ ANSYS_VERSION : ${{ github.event.inputs.ansys_version || vars.ANSYS_VERSION_DEFAULT }}
109109 python_versions : ' ["3.10"]'
110110 wheel : true
111111 wheelhouse : false
@@ -116,7 +116,7 @@ jobs:
116116 uses : ./.github/workflows/tests.yml
117117 needs : pick_server_suffix
118118 with :
119- ANSYS_VERSION : ${{ github.event.inputs.ansys_version || '252' }}
119+ ANSYS_VERSION : ${{ github.event.inputs.ansys_version || vars.ANSYS_VERSION_DEFAULT }}
120120 python_versions : ' ["3.10"]'
121121 wheel : true
122122 wheelhouse : false
@@ -129,7 +129,7 @@ jobs:
129129 uses : ./.github/workflows/test_docker.yml
130130 needs : pick_server_suffix
131131 with :
132- ANSYS_VERSION : ${{ github.event.inputs.ansys_version || '252' }}
132+ ANSYS_VERSION : ${{ github.event.inputs.ansys_version || vars.ANSYS_VERSION_DEFAULT }}
133133 standalone_suffix : ${{needs.pick_server_suffix.outputs.suffix}}
134134 secrets : inherit
135135
@@ -138,7 +138,7 @@ jobs:
138138 uses : ./.github/workflows/examples_docker.yml
139139 needs : pick_server_suffix
140140 with :
141- ANSYS_VERSION : ${{ github.event.inputs.ansys_version || '252' }}
141+ ANSYS_VERSION : ${{ github.event.inputs.ansys_version || vars.ANSYS_VERSION_DEFAULT }}
142142 python_versions : ' ["3.10"]'
143143 standalone_suffix : ${{needs.pick_server_suffix.outputs.suffix}}
144144 secrets : inherit
@@ -148,7 +148,7 @@ jobs:
148148 uses : ./.github/workflows/docs.yml
149149 needs : pick_server_suffix
150150 with :
151- ANSYS_VERSION : ${{ github.event.inputs.ansys_version || '252' }}
151+ ANSYS_VERSION : ${{ github.event.inputs.ansys_version || vars.ANSYS_VERSION_DEFAULT }}
152152 standalone_suffix : ${{needs.pick_server_suffix.outputs.suffix}}
153153 event_name : ${{ github.event_name }}
154154 python_version : " 3.11"
@@ -174,11 +174,34 @@ jobs:
174174 uses : ./.github/workflows/examples.yml
175175 needs : pick_server_suffix
176176 with :
177- ANSYS_VERSION : ${{ github.event.inputs.ansys_version || '252' }}
177+ ANSYS_VERSION : ${{ github.event.inputs.ansys_version || vars.ANSYS_VERSION_DEFAULT }}
178178 python_versions : ' ["3.10"]'
179179 standalone_suffix : ${{needs.pick_server_suffix.outputs.suffix}}
180180 secrets : inherit
181181
182+ pydpf-post :
183+ name : " PyDPF-Post"
184+ if : startsWith(github.head_ref, 'master') || github.event.action == 'ready_for_review' || !github.event.pull_request.draft
185+ uses : ./.github/workflows/pydpf-post.yml
186+ needs : pick_server_suffix
187+ with :
188+ ANSYS_VERSION : ${{ github.event.inputs.ansys_version || vars.ANSYS_VERSION_DEFAULT }}
189+ post_branch : " master"
190+ standalone_suffix : ${{needs.pick_server_suffix.outputs.suffix}}
191+ test_docstrings : " true"
192+ secrets : inherit
193+
194+ retro_252 :
195+ name : " retro 252"
196+ if : startsWith(github.head_ref, 'master') || github.event.action == 'ready_for_review' || !github.event.pull_request.draft
197+ uses : ./.github/workflows/tests.yml
198+ with :
199+ ANSYS_VERSION : " 252"
200+ python_versions : ' ["3.10"]'
201+ DOCSTRING : false
202+ standalone_suffix : ' '
203+ secrets : inherit
204+
182205 retro_251 :
183206 name : " retro 251"
184207 if : startsWith(github.head_ref, 'master') || github.event.action == 'ready_for_review' || !github.event.pull_request.draft
@@ -242,15 +265,3 @@ jobs:
242265 python_versions : ' ["3.10"]'
243266 DOCSTRING : false
244267 secrets : inherit
245-
246- pydpf-post :
247- name : " PyDPF-Post"
248- if : startsWith(github.head_ref, 'master') || github.event.action == 'ready_for_review' || !github.event.pull_request.draft
249- uses : ./.github/workflows/pydpf-post.yml
250- needs : pick_server_suffix
251- with :
252- ANSYS_VERSION : ${{ github.event.inputs.ansys_version || '252' }}
253- post_branch : " master"
254- standalone_suffix : ${{needs.pick_server_suffix.outputs.suffix}}
255- test_docstrings : " true"
256- secrets : inherit
0 commit comments