File tree Expand file tree Collapse file tree 4 files changed +15
-6
lines changed Expand file tree Collapse file tree 4 files changed +15
-6
lines changed Original file line number Diff line number Diff line change @@ -184,6 +184,13 @@ jobs:
184184 xvfb-run mechanical-env python geometry-mechanical-dpf/wf_gmd_02_mechanical.py > pymechlogs${{ matrix.ansys-release }}.txt 2>&1 || true
185185 cat pymechlogs${{ matrix.ansys-release }}.txt
186186
187+ - name : List all files including hidden ones
188+ run : |
189+ echo "Listing all files (including hidden) under geometry-mechanical-dpf/outputs"
190+ find geometry-mechanical-dpf/outputs -print
191+ echo "Detailed file listing:"
192+ find geometry-mechanical-dpf/outputs -type f -exec ls -lah {} +
193+
187194 - name : Store the outputs
188195 uses : actions/upload-artifact@v4
189196 with :
@@ -241,8 +248,8 @@ jobs:
241248
242249 - name : Update dependencies
243250 run : |
244- apt update
245- apt install -y xvfb git curl make
251+ sudo apt update
252+ sudo apt install -y xvfb git curl make
246253
247254 - name : Checkout code
248255@@ -257,7 +264,7 @@ jobs:
257264 python-version : ${{ env.MAIN_PYTHON_VERSION }}
258265
259266 - name : " Install requirements"
260- run : install -r geometry-mechanical-dpf/requirements_${{ matrix.ansys-release }}.txt
267+ run : pip install -r geometry-mechanical-dpf/requirements_${{ matrix.ansys-release }}.txt
261268
262269 - name : Check out the mechanical outputs
263270 uses : actions/download-artifact@v5
Original file line number Diff line number Diff line change 11ansys-geometry-core[all]==0.7.6
2- ansys-mechanical-core==0.11.7
3- ansys-dpf-core[plotting]==0.12 .2
2+ ansys-mechanical-core==0.11.34
3+ ansys-dpf-core[plotting]==0.14 .2
Original file line number Diff line number Diff line change 11ansys-geometry-core[all]==0.7.6
22ansys-mechanical-core==0.11.34
3- ansys-dpf-core[plotting]==0.12.2
3+ ansys-dpf-core[plotting]==0.14.2
4+
Original file line number Diff line number Diff line change @@ -224,4 +224,5 @@ def display_image(image_name):
224224# Mechanical file (mechdb) contains results for each analysis
225225#
226226app .save (os .path .join (OUTPUT_DIR , "pcb.mechdb" ))
227+ print (f"Mechanical file saved to: { OUTPUT_DIR / 'pcb.mechdb' } " )
227228app .close ()
You can’t perform that action at this time.
0 commit comments